.hero-proof {
    display: grid;
    margin: 0;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding: 3.5rem max(7vw, 24px);
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-proof-media {
    overflow: hidden;
    border-radius: 1rem;
    background: var(--ink);
    box-shadow: 0 18px 44px rgba(16, 34, 27, .14);
}

.hero-proof video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    background: #0b0f0d;
}

.hero-proof figcaption {
    max-width: 34rem;
}

.hero-proof h2 {
    margin-bottom: .5em;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.hero-proof p {
    margin-bottom: .75rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-proof small {
    display: block;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 760px) {
    .hero-proof {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
