.video-page {
    min-height: 100vh;
    color: #fff;
    background:
        radial-gradient(circle at left top, rgba(170, 25, 12, .34), transparent 34%),
        radial-gradient(circle at right center, rgba(120, 10, 10, .22), transparent 38%),
        linear-gradient(110deg, #430806 0%, #170707 38%, #090909 70%, #050505 100%);
}

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

.video-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45), rgba(0,0,0,.78)),
        url("/images/accueil/champion.jpg") center top/cover;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 45%, rgba(226, 56, 45, .22), transparent 28%),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.9));
}

.video-hero .video-container {
    position: relative;
    z-index: 2;
}

.video-kicker {
    color: #e2382d;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .13em;
    font-weight: 900;
}

.video-hero h1 {
    margin: 16px 0 22px;
    font-size: clamp(54px, 7vw, 100px);
    line-height: .88;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: -.05em;
}

.video-hero h1 span {
    display: block;
    color: #e2382d;
}

.video-hero p {
    max-width: 560px;
    color: #e5e5e5;
    font-size: 19px;
    line-height: 1.55;
}

.video-section {
    padding: 72px 0 90px;
}

.video-section .video-container {
    width: min(1380px, calc(100% - 48px));
}

.video-header {
    margin-bottom: 34px;
}

.video-header h2 {
    margin: 0 0 8px;
    font-size: 34px;
    font-weight: 1000;
    text-transform: uppercase;
}

.video-header h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    background: #e2382d;
    margin-top: 14px;
}

.video-header p {
    margin-top: 18px;
    color: #cfcfcf;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1320px;
    margin: 0 auto;
    gap: 32px;
    align-items: start;
}

.video-card {
    position: relative;
    background: rgba(18, 18, 18, .88);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0,0,0,.35);
    transition: .3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 65px rgba(0,0,0,.45),
        0 0 28px rgba(226,56,45,.22);
}

.video-card-media {
    position: relative;
    overflow: hidden;
    background: #080808;
}

.video-card-media > i {
    position: absolute;
    z-index: 3;
    top: 20px;
    right: 20px;
    color: #e2382d;
    font-size: 25px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .5));
}

.video-card-copy {
    position: relative;
    min-height: 112px;
    padding: 24px 24px 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background:
        linear-gradient(135deg, rgba(226, 56, 45, .08), transparent 52%),
        #111;
}

.video-card-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 42px;
    height: 2px;
    background: #e2382d;
}

.video-card-copy p {
    margin: 0;
    color: #f3f3f3;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
}

.video-card-copy--compact p {
    font-size: 14px;
    line-height: 1.55;
}

.instagram-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #080808;
}

.video-card--reel .instagram-wrapper {
    height: auto;
    aspect-ratio: 4 / 5;
}

.video-card--photo .instagram-wrapper {
    height: auto;
    aspect-ratio: 1 / 1;
}

.instagram-embed {
    position: absolute;
    top: -58px;
    left: -1px;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 190px);
    border: 0;
    background: #080808;
}

/*
 * L’interface Instagram vit dans une iframe externe : on ne peut pas la
 * styler directement. Le conteneur masque donc son en-tête et ses actions.
 */
.video-card--photo .instagram-embed {
    height: calc(100% + 190px);
}

@media (max-width: 1100px) {
    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 700px) {
    .video-container {
        width: calc(100% - 28px);
    }

    .video-section .video-container {
        width: calc(100% - 28px);
    }

    .video-hero {
        min-height: 340px;
    }

    .video-hero h1 {
        font-size: 52px;
    }

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

    .video-section {
        padding: 52px 0 70px;
    }

    .instagram-embed {
        height: calc(100% + 190px);
    }
}
