/* FairwayFinder Videos page */

:root {
    --ff-dark-green: #17351F;
    --ff-logo-green: #8DB600;
    --ff-gold: #C9A227;
    --ff-off-white: #F7F5EE;
    --ff-white: #FFFFFF;
    --ff-text: #4F5B52;
    --ff-border: rgba(23, 53, 31, 0.12);
    --ff-shadow: 0 16px 40px rgba(23, 53, 31, 0.10);
}

.videos-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Page hero - light background to match the rest of the website */
.videos-hero {
    background: var(--ff-off-white);
    padding: 72px 20px 68px;
    text-align: center;
    border-bottom: 1px solid var(--ff-border);
}

.videos-hero .videos-container {
    max-width: 880px;
}

.videos-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--ff-dark-green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.35px;
    line-height: 1.5;
}

.videos-eyebrow .play-word {
    color: var(--ff-logo-green);
}

.videos-hero h1 {
    margin: 0;
    color: var(--ff-dark-green);
    font-size: clamp(2.35rem, 5vw, 4.25rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -1.6px;
}

.videos-hero p {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--ff-text);
    font-size: 1.03rem;
    line-height: 1.75;
}

/* Shared headings */
.section-heading {
    max-width: 800px;
    margin-bottom: 34px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading > span {
    display: block;
    margin-bottom: 10px;
    color: var(--ff-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 12px;
    color: var(--ff-dark-green);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.12;
}

.section-heading p {
    margin: 0;
    color: var(--ff-text);
    line-height: 1.7;
}

/* Featured video */
.featured-video-section {
    background: var(--ff-off-white);
    padding: 78px 0 88px;
}

.featured-video-card {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    overflow: hidden;
    background: var(--ff-white);
    border: 1px solid var(--ff-border);
    border-radius: 20px;
    box-shadow: var(--ff-shadow);
}

.video-frame {
    position: relative;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-frame-featured {
    min-height: 100%;
}

.featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 38px;
}

.video-label {
    margin-bottom: 12px;
    color: var(--ff-gold);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 1.15px;
}

.featured-copy h3,
.video-card-copy h3 {
    color: var(--ff-dark-green);
}

.featured-copy h3 {
    margin: 0 0 16px;
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    line-height: 1.15;
}

.featured-copy p {
    margin: 0;
    color: var(--ff-text);
    line-height: 1.7;
}

/* Video library */
.video-library-section {
    background: var(--ff-white);
    padding: 88px 0 96px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.video-card {
    overflow: hidden;
    background: var(--ff-white);
    border: 1px solid var(--ff-border);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(23, 53, 31, 0.08);
}

.video-card-copy {
    padding: 24px 24px 28px;
}

.video-card-copy > span {
    display: block;
    margin-bottom: 9px;
    color: var(--ff-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.video-card-copy h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.video-card-copy p {
    margin: 0;
    color: var(--ff-text);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* CTA */
.videos-cta {
    padding: 72px 20px;
    text-align: center;
    background: var(--ff-dark-green);
}

.videos-cta .videos-container {
    max-width: 760px;
}

.videos-cta h2 {
    margin: 0 0 12px;
    color: var(--ff-white);
    font-size: clamp(2rem, 4vw, 3rem);
}

.videos-cta p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.videos-cta .download-btn {
    display: inline-block;
}

/* Current page nav highlight */
.navbar .links a[aria-current="page"] {
    color: var(--ff-gold);
}

/* Responsive */
@media (max-width: 980px) {
    .featured-video-card {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-copy {
        padding: 34px 30px 38px;
    }
}

@media (max-width: 700px) {
    .videos-container {
        width: min(100% - 28px, 1180px);
    }

    .videos-hero {
        padding: 52px 14px 48px;
    }

    .videos-hero h1 {
        font-size: clamp(2.1rem, 12vw, 3rem);
        letter-spacing: -0.8px;
    }

    .videos-hero p {
        font-size: 0.96rem;
    }

    .featured-video-section,
    .video-library-section {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .featured-video-card,
    .video-card {
        border-radius: 14px;
    }

    .featured-copy {
        padding: 28px 22px 32px;
    }

    .video-card-copy {
        padding: 22px;
    }

    .videos-cta {
        padding: 58px 16px;
    }
}
