@charset "UTF-8";


.landing-page-video-section {
    --wwe-deep: #0f2e2f;
    --wwe-ink: #0c1f21;
    --wwe-muted: #596a6b;
    --wwe-line: #d7ddda;
    --wwe-sand: #f4f2ee;
    --wwe-mist: #e4ebe8;
    --wwe-accent: #d77b2c;
    padding: 80px 0;
    background: #fff;
    color: var(--wwe-ink);
    padding: 3.5rem 0;
}

.landing-page-video-section__container {
    max-width: 1140px;
    margin: 0 auto;
}

.landing-page-video-section__eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wwe-muted);
    margin: 0 0 16px;
    text-align: center;
}

.landing-page-video-section__videos {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.landing-page-video-section__video {
    display: flex;
    flex-direction: column;
}

/* Single video: centred layout with a large heading, as in the "one video" reference */
.landing-page-video-section--single .landing-page-video-section__video {
    align-items: center;
    text-align: center;
}

.landing-page-video-section--single .landing-page-video-section__heading {
    max-width: 700px;
    font-size: 28px;
}

.landing-page-video-section--single .landing-page-video-section__thumb {
    width: 100%;
    max-width: 820px;
}

/* Two videos: centred column headings, side by side on larger screens */
.landing-page-video-section--double .landing-page-video-section__video {
    align-items: center;
    text-align: center;
}

.landing-page-video-section--double .landing-page-video-section__heading {
    font-size: 20px;
}

.landing-page-video-section__heading {
    margin: 0 0 1.25rem;
    color: #053d42;
    font-family: "Suisse Intl", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.landing-page-video-section__thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background-color: #0b2124;
}

.landing-page-video-section__thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page-video-section__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 36px;
    border-radius: 8px;
    background-color: #ff0000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.landing-page-video-section__thumb:hover .landing-page-video-section__play {
    transform: translate(-50%, -50%) scale(1.08);
}

/* md: 768px */
@media only screen and (min-width: 768px) {
    .landing-page-video-section {
        padding: 4.5rem 0;
    }

    .landing-page-video-section--single .landing-page-video-section__heading {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .landing-page-video-section--double .landing-page-video-section__videos {
        flex-direction: row;
        gap: 32px;
    }

    .landing-page-video-section--double .landing-page-video-section__video {
        flex: 1 1 50%;
        min-width: 0;
    }
}

/* lg: 1024px */
@media only screen and (min-width: 1024px) {
    .landing-page-video-section--single .landing-page-video-section__heading {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
}