.about-hero.about-hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
    padding: clamp(8rem, 18vh, 13rem) clamp(1.5rem, 8vw, 8rem) clamp(4rem, 9vh, 7rem);
    overflow: hidden;
    isolation: isolate;
    background: #13291f;
}

.about-hero-visual .about-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-visual .about-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(6, 20, 14, .88) 0%, rgba(6, 20, 14, .54) 52%, rgba(6, 20, 14, .18) 100%), linear-gradient(0deg, rgba(6, 20, 14, .62), transparent 55%);
}

.about-hero-visual .about-hero-content {
    display: grid;
    grid-template-columns: minmax(8rem, .5fr) minmax(18rem, 1.5fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    width: 100%;
    margin: 0;
}

.about-hero-visual .about-hero-content h1 {
    max-width: 13ch;
    text-wrap: balance;
}

.about-hero-visual .about-hero-content > p:last-child {
    align-self: end;
    max-width: 36rem;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
}

@media (max-width: 800px) {
    .about-hero.about-hero-visual { min-height: 88svh; }
    .about-hero-visual .about-hero-content { grid-template-columns: 1fr; }
    .about-hero-visual .about-hero-content h1 { font-size: clamp(3rem, 15vw, 5.6rem); }
    .about-hero-visual .about-hero-shade { background: linear-gradient(0deg, rgba(6, 20, 14, .9), rgba(6, 20, 14, .28)); }
}
