.videos-hero {
    background: var(--ink);
    color: white;
    padding: 90px max(28px, calc((100vw - var(--max)) / 2));
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.videos-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(115deg, transparent 0 70px, #ffffff08 70px 73px);
    z-index: -1;
}

.videos-hero::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: var(--red);
    right: max(-110px, calc((100vw - var(--max)) / 2 - 110px));
    top: -145px;
    box-shadow: 0 0 0 15px #fff, 0 0 0 29px var(--red);
    z-index: -1;
}

.videos-hero-inner {
    max-width: 760px;
}

.videos-eyebrow,
.videos-heading span,
.video-label {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .13em;
    color: var(--yellow);
}

.videos-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -.05em;
}

.videos-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #ddd;
    font-size: 1.15rem;
    line-height: 1.6;
}

.videos-wrap {
    max-width: var(--max);
    margin: auto;
    padding: 80px 28px 95px;
}

.videos-heading {
    text-align: center;
    margin-bottom: 38px;
}

.videos-heading span {
    color: var(--red);
}

.videos-heading h2 {
    margin: 7px 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-transform: uppercase;
}

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

.video-card {
    background: white;
    border: 3px solid var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
    overflow: hidden;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-bottom: 3px solid var(--ink);
}

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

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

.video-label {
    color: var(--red);
    font-size: .75rem;
}

.video-card h3 {
    margin: 8px 0 8px;
    font-size: 1.65rem;
    text-transform: uppercase;
}

.video-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.videos-bottom {
    text-align: center;
    background: var(--yellow);
    padding: 45px 25px;
    border-top: 3px solid var(--ink);
}

.videos-bottom p {
    margin: 0 0 14px;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.videos-bottom a {
    display: inline-block;
    padding: 11px 18px;
    background: var(--ink);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .06em;
}

.videos-bottom a:hover {
    background: var(--red);
}

@media (max-width: 800px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .videos-hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 650px) {
    .videos-wrap {
        padding: 60px 20px 75px;
    }

    .videos-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .videos-hero h1 {
        font-size: 3.5rem;
    }

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