.hero {
    --hero-title-size: 64px;
    --hero-subtitle-size: 24px;

    padding: 0 var(--space-3);
}

.hero__image {
    margin: 0 auto;
    max-width: 500px;
}

.hero_image-fallback {
    width: 100%;
}

.hero__title {
    color: #000;
    text-align: center;
    font-size: var(--hero-title-size);
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -3.84px;
}

.hero__subtitle {
    color: #001219;
    text-align: center;
    font-size: var(--hero-subtitle-size);
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.72px;
}

.hero__content-wrapper {

}

.hero__content {

}

@media (min-width: 800px) {
    .hero__title {
        margin-top: 83px;
        margin-bottom: var(--space-2);
        font-size: 230px;
        line-height: 190px; /* 82.609% */
    }

    .hero__subtitle {
        font-size: 32px;
        line-height: normal;
    }

    .hero__content-wrapper {
        align-items: end;
        margin-top: -185px;
    }
}