.hero--container {
    border-radius: 16px;
    background: #FBD8C8;
    display: flex;
    flex-direction: column;
    padding: 48px 0 0;
}

.hero--container:has(.hero--tile) {
    padding: 48px 0 24px;
}

@media screen and (min-width: 992px) {
    .hero--container:has(.hero--tile) {
        padding: 48px 0 0;
    }
}

.home .hero--container {
    padding: 120px 0 0;
    gap: 24px;
}

@media screen and (min-width: 992px) {
    .hero--container {
        background: linear-gradient(0deg, #FBD8C8 0%, #FBD8C8 100%), linear-gradient(178deg, #FBD8C8 41.26%, #FBC1CB 112.42%);
        border-radius: 30px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }

    .home .hero--container {
        padding-top: 120px;
        gap: 0;
    }
}

.hero--container.variant-0 {
    background: linear-gradient(180deg, #FBD8C8 41.26%, #FBC1CB 112.42%);
}

.hero--container.variant-1 {
    background: radial-gradient(circle, rgb(255, 230, 234) 0%, rgb(251, 193, 203) 100%);
}

.hero--container.variant-2 {
    background: radial-gradient(circle, rgb(248, 253, 255) 0%, rgb(208, 233, 255) 100%);
}

.hero--container.variant-3 {
    background: linear-gradient(178deg, #FFE6EB 41.26%, #FBD8C8 112.42%);
}

.hero--container.variant-4 {
    background: radial-gradient(506.06% 76.8% at 76.78% 43.24%, #E0E4FF 0%, #E5F3FF 100%), linear-gradient(178deg, #FFE6EB 41.26%, #FBD8C8 112.42%);
}

.hero--media {
    position: relative;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    .hero--media {
        max-width: 50%;
        margin-right: -1px;
    }

    .home .hero--media {
        max-width: 55%;
    }
}

.hero--media img {
    width: 100%;
    height: 100%;
}

.hero--content {
    padding-inline: 24px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .hero--content {
        text-align: left;
        padding-inline: 0;
        padding-left: clamp(16px, 4.16vw, 60px);
        flex: 1;
    }
}

.hero--content .uptitle {
    margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .hero--content .uptitle {
        margin-bottom: 8px;
    }
}

@media screen and (min-width: 992px) {
    .hero--content p {
        max-width: 520px;
    }
}

.hero--content h1 {
    margin-bottom: 16px;
    text-wrap: balance;
}

@media screen and (min-width: 992px) {
    .hero--content h1 {
        margin-bottom: 32px;
    }
}

.hero--buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    justify-content: center;
}

@media screen and (min-width: 992px) {
    .hero--buttons {
        margin-top: 32px;
        justify-content: flex-start;
    }
}

.hero--tile {
    padding: 0 20px 0 40px;
}

@media screen and (min-width: 768px) {
    .hero--tile {
        max-width: 450px;
        position: absolute;
        bottom: 54px;
        left: 32px;
        padding: 0;
    }
}

.hero--tile .wrapper {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: rgba(255, 212, 180, 0.8);
    border-radius: 10px;
    border: 1px solid white;
    padding: 12px;
    padding-left: 48px;
    position: relative;
}

.hero--tile .wrapper.variant-1 {
    background: rgba(152, 163, 226, 0.8);
}

.hero--tile .wrapper img {
    width: 66px;
    height: 66px;
    position: absolute;
    bottom: 22px;
    left: -30px;
}

@media screen and (min-width: 992px) {
    .hero--tile .wrapper img {
        left: -28px;
        bottom: -28px;
    }
}

.hero--tile .wrapper p {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.hero--tile .wrapper .title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 26px;
}

/*# sourceMappingURL=style.css.map */