/*
 * Documentary Page Custom Styles
 */

.documentary-main-container {
    background: var(--homepage-bg-dark);
    color: var(--homepage-text-primary);
    min-height: 100vh;
}

.documentary-feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--homepage-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Urbanist, sans-serif;
}

.documentary-page-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #000000 !important;
}

.documentary-feature {
    max-width: 1120px;
    margin: 2.5rem auto 0;
}

.documentary-feature-player {
    background: var(--homepage-bg-light);
    border: 2px solid var(--homepage-border);
    border-radius: var(--homepage-radius-large);
    overflow: hidden;
    box-shadow: var(--homepage-shadow-card);
}

.documentary-embed-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.documentary-embed-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.documentary-feature-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 0;
    text-align: center;
}

.documentary-feature-description {
    margin: 0;
    color: var(--homepage-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .documentary-main-container {
        min-height: unset;
    }
    .documentary-page-section {
        padding-top: 5rem;
        padding-bottom: 1rem;
    }

    .documentary-page-section .homepage-container {
        width: 100%;
    }

    .documentary-feature {
        max-width: none;
        width: calc(100% + 2rem);
        margin: 2rem -1rem 0;
    }

    .documentary-feature-content {
        padding-top: 20px;
    }

    .documentary-feature-title {
        font-size: 19px;
    }

    .documentary-feature-description {
        font-size: 0.98rem;
    }

    .documentary-embed-frame {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 479px) {
    .documentary-page-section {
        padding-top: 5rem;
        padding-bottom: 0.75rem;
    }

    .documentary-feature-title {
        font-size: 19px;
    }

    .documentary-feature {
        width: calc(100% + 1.5rem);
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

    .documentary-embed-frame {
        aspect-ratio: 16 / 9;
    }
}
