/* Base styles for FCA Custom Video Player block */
.fca-custom-video-player {
    position: relative;
    margin-bottom: var(--fcom-block-spacing, 20px);
    width: 100%;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.fca-custom-video-player .fca-video-container {
    position: relative;
    width: 100%;
    background-color: #000;
}

/* Aspect Ratio Styles */
.fca-custom-video-player[data-aspect-ratio="16:9"] .fca-video-container {
    padding-bottom: 56.25%; /* 16:9 */
}

.fca-custom-video-player[data-aspect-ratio="4:3"] .fca-video-container {
    padding-bottom: 75%; /* 4:3 */
}

.fca-custom-video-player[data-aspect-ratio="1:1"] .fca-video-container {
    padding-bottom: 100%; /* 1:1 */
}

.fca-custom-video-player[data-aspect-ratio="21:9"] .fca-video-container {
    padding-bottom: 42.857%; /* 21:9 */
}

/* Video iframes and video elements */
.fca-custom-video-player .fca-video-container iframe,
.fca-custom-video-player .fca-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.fca-custom-video-player .fca-video-container video {
    object-fit: contain;
}

/* Video Caption */
.fca-custom-video-player .video-caption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--fcom-primary-text, #19283a);
    text-align: center;
    font-style: italic;
    opacity: 0.8;
}

/* Alignment Support */
.fca-custom-video-player.alignwide {
    max-width: var(--wp--style--global--wide-size, 1000px);
    margin-left: auto;
    margin-right: auto;
}

.fca-custom-video-player.alignfull {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .fca-custom-video-player .video-caption {
        font-size: 13px;
    }
}

