#home .hero.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: center;
    gap: clamp(28px, 5vw, 56px);
}

#home .home-hero-copy {
    min-width: 0;
}

#home .home-hero-copy h1,
#home .home-hero-copy p {
    max-width: 100%;
}

#home .home-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

#home .home-hero-visual img {
    display: block;
    width: min(100%, 520px);
    height: auto;
}

@media (max-width: 820px) {
    #home .hero.home-hero {
        grid-template-columns: 1fr;
    }

    #home .home-hero-visual {
        order: 2;
    }

    #home .home-hero-visual img {
        width: min(100%, 460px);
    }
}
