/* Logan's Martial Arts - Commercial Page
   Styled to match the Academy News cinematic hero treatment. */

.commercial-cinematic-hero {
    padding: 1.85rem 0 1.55rem;
}

.commercial-hero-panel {
    max-width: 760px;
    padding: .8rem .9rem;
    border-left-width: 2px;
}

.commercial-hero-panel .eyebrow {
    margin: 0 0 .3rem;
    font-size: .50rem;
    letter-spacing: .14em;
}

.commercial-hero-panel h1 {
    margin: .05rem 0 .34rem;
    font-size: clamp(.9rem, 1.7vw, 1.62rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
}

.commercial-hero-panel .lead {
    max-width: 42rem;
    margin-bottom: 0;
    font-size: clamp(.78rem, 1.05vw, .88rem);
    line-height: 1.22;
}

.commercial-video-section {
    position: relative;
}

.commercial-video-layout {
    max-width: 1060px;
    display: grid;
    gap: 1.1rem;
}

.commercial-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.commercial-video-card {
    overflow: hidden;
    padding: .8rem;
    border-color: rgba(202, 162, 75, .28);
    background:
        linear-gradient(145deg, rgba(41, 8, 6, .44), rgba(5, 5, 6, .94) 52%, rgba(5, 5, 6, .9)),
        rgba(5, 5, 6, .92);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
}

.commercial-video-card--centered {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 1rem) / 2);
    max-width: 525px;
}

.commercial-video-card-header {
    margin-bottom: .65rem;
}

.commercial-video-card-header .eyebrow {
    margin: 0 0 .18rem;
    font-size: .54rem;
    letter-spacing: .14em;
}

.commercial-video-card-header h2 {
    margin: 0;
    color: var(--gold);
    font-size: clamp(.95rem, 1.45vw, 1.22rem);
    line-height: 1.1;
}

.commercial-video-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(202, 162, 75, .26);
    border-radius: 12px;
    background:
        radial-gradient(circle at center, rgba(202, 162, 75, .12), transparent 35%),
        #070707;
}

.commercial-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.commercial-support-card {
    border-left: 3px solid var(--gold);
}

.commercial-support-card h2 {
    margin-top: .25rem;
    margin-bottom: .6rem;
    color: var(--gold);
}

.commercial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.1rem;
    margin-bottom: 0;
}

.commercial-actions .button.ghost {
    background: transparent;
    border: 1px solid rgba(202, 162, 75, .55);
    color: var(--gold);
}

@media (max-width: 880px) {
    .commercial-video-layout {
        max-width: 720px;
    }

    .commercial-video-grid {
        grid-template-columns: 1fr;
    }

    .commercial-video-card--centered {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
        max-width: none;
    }

    .commercial-video-frame {
        max-width: 560px;
    }
}

@media (max-width: 780px) {
    .commercial-cinematic-hero {
        padding: 1.1rem 0;
    }

    .commercial-hero-panel {
        max-width: none;
        padding: .6rem .7rem;
        border-left-width: 2px;
    }

    .commercial-hero-panel h1 {
        font-size: clamp(.95rem, 4.2vw, 1.4rem);
    }

    .commercial-hero-panel .lead {
        font-size: .8rem;
        line-height: 1.22;
    }

    .commercial-video-card {
        padding: .65rem;
    }

    .commercial-actions {
        flex-direction: column;
    }

    .commercial-actions .button {
        width: 100%;
        text-align: center;
    }
}
