:where(.home-hero) {
    padding-top: 28rem;
    background-image: url("../images/home-hero-background-img.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: 10rem;
    margin-bottom: 8rem;
    max-width: 100dvw;

    .home-hero-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: 8rem;
        max-width: var(--content-width-normal);
        margin-inline: auto;
    }

    h1 {
        color: var(--color-brand-navy);
    }

    .home-hero-copy {
        font-size: 2.4rem;
        font-weight: 500;
    }



    .ctas {
        display: flex;
        flex-flow: row wrap;
        gap: 1.5rem;
        margin-top: 4rem;
    }



    .thumbs-up-icon {
        background: var(--color-brand-navy);
        color: var(--color-primary-white);
        padding: 2rem;
        position: relative;
        z-index: 1;
        width: fit-content;
        height: fit-content;
        transform: translate(-4.5rem, 4rem);

        & > svg {
            width: 3.3rem;
            height: 3.3rem;
        }

        &::after {
            content: '';
            position: absolute;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--color-brand-navy);
            clip-path: polygon(0 0, 0% 100%, 100% 0);
            bottom: -2rem;
            right: 1.5rem;
        }
    }


    .home-hero-images img {
        border-radius: 2.5rem;
        height: auto;
    }

    .supporting-image {
        transform: translate(-10rem, 17rem);
        position: relative;
        z-index: 1;
    }

    .bottom-text {
        position: absolute;
        width: 100%;
        overflow: hidden;
        z-index: 0;
        justify-self: center;
        align-self: flex-end;
        overflow: hidden;
        transform: translateY(10rem);

        & > svg {
            height: 5rem;
            text {
                fill: rgba(255, 255, 255, 0.7);
                font-weight: 700;
            }
        }
    }
}

@media print {
    :where(.home-hero) {
        background-image: none !important;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;

        .home-hero-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .home-hero-images,
        .thumbs-up-icon,
        .bottom-text {
            display: none !important;
        }
    }
}

@media screen and (max-width: 1024px) {
    :where(.home-hero) {

        padding-bottom: 10rem;
        background-position: right;

        .home-hero-wrapper {
            display: flex;
            flex-flow: column;
            gap: 4rem;
        }

        .home-hero-images img {
            display: none
        }

        .thumbs-up-icon {
            display: none;
        }


    }
}
