.small-image-text {
    display: flex;
    flex-direction: row;
    gap: 41px;
}

.small-image-text .img-wrapper {
    width: 100%;
    max-width: 559px;
    height: 336px;
    overflow: hidden;
    border-radius: 32px;
    display: flex;
    flex-shrink: 0;
}

.small-image-text .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-image-text__desc {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: -4%;
    color: #4F4F4F;
}

@media screen and (max-width:1024px) {
    .small-image-text {
        flex-direction: column;
        gap: 16px;
    }

    .small-image-text .img-wrapper {
        width: 100%;
        max-width:100%;
        height: 206px;
        flex-shrink: 0;
    }


    .small-image-text__desc {
        font-size: 14px;
        line-height: 22px;
    }
}