.emotional {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100svh;
    padding: 0 24px;

    border-radius: 0 0 0 0;
    background-color: var(--dark-navy);
    transition: border-radius 0.3s ease;
}

.emotional__image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
}

.emotional__content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: calc(100svh - 88px - 16px);
    gap: 32px;
}

.emotional__text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emotional__text {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 160%;
}

.emotional__text-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
}

@media (min-width: 700px) {
    .emotional {
        padding: 0 48px;
    }

    .emotional__content {
        height: calc(100svh - 122px - 32px);
    }

    .emotional__text-wrapper {
        gap: 16px;
    }

    .emotional__text {
        font-size: 22px;
    }

    .emotional__text-title {
        font-size: 42px;
    }
}

@media (min-width: 1200px) {
    .emotional {
        padding: 0 72px;
    }

    .emotional__content {
        width: 50%;
    }

    .emotional__image {
        object-position: center center;
    }
}