.hero {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    left: 50%;
    width: 100vw;
    min-height: 23.04rem;
    aspect-ratio: 375 / 213;
    background-image: url('../../assets/images/hero-bg-sm.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    transform: translateX(-50%);
}
.hero:first-child {
    margin-top: 0;
}
@media (min-width: 960px) {
    .hero:first-child {
        margin-top: 7.68rem;
    }
}
@media (min-width: 1280px) {
    .hero:first-child {
        margin-top: 1.28rem;
    }
}

@media (min-width: 960px) {
    .hero {
        left: 0;
        width: 100%;
        aspect-ratio: 606 / 230;
        background-image: none;
        transform: translateX(0%);
    }
}

@media (min-width: 960px) and (max-width: 1279px) {
    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        width: 102.5%;
        height: 102.5%;
        background-image: url('../../assets/images/hero-bg-md.svg');
        background-repeat: no-repeat;
        background-position: right top;
        background-size: contain;
    }
}

@media (min-width: 1280px) {
    .hero {
        left: 50%;
        width: 100vw;
        aspect-ratio: 1080 / 402;
        background-image: url('../../assets/images/hero-bg-lg.svg');
        transform: translateX(-50%);
    }
}

.hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    padding: 0 3% 9%;
    font-size: var(--wp--preset--font-size--xs);
    text-align: left;
    color: #fff;
}
@media (min-width: 960px) {
    .hero__text {
        width: 45%;
        padding: 0 7% 9%;
        font-size: var(--wp--preset--font-size--base);
    }
}
@media (min-width: 1280px) {
    .hero__text {
        font-size: var(--font-size-l);
    }
}

.hero__buttons-wrapper {
    margin-top: 0.64rem;
    margin-bottom: 0;
    text-shadow: none;
}
@media (min-width: 960px) {
    .hero__buttons-wrapper {
        margin-top: 1.6rem;
    }
}

.hero__buttons-wrapper .btn {
    padding: 11px 20px 9px;
    font-size: var(--wp--preset--font-size--sm);
}
@media (min-width: 960px) {
    .hero__buttons-wrapper .btn {
        padding: 12px 22px 11px;
        font-size: var(--wp--preset--font-size--base);
    }
}
@media (min-width: 1280px) {
    .hero__buttons-wrapper .btn {
        padding: 15px 25px;
    }
}
