.features-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
    margin-top: 64px;
    margin-bottom: 64px;
    box-sizing: border-box;
}

.features-section__title {
    font-size: calc(1.375rem + 1.5vw);
    color: #000;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
}


.features-section__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}


.feature-section__item-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.feature-section__item-title {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
}

.feature-section__item-description {
    font-size: 20px;
    color: #000;
    font-weight: 300;
    line-height: 1.2;
}

.feature-section__image-wrapper {
    display: flex;
    justify-content: center;
    border-radius: 32px;
    background-color: #fff;
    padding: 16px;
    box-sizing: border-box;
}

.feature-section__image {
    width: 300px;
    height: 300px;
    object-fit: contain;
}


.feature-section__factoring-tochka-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.feature-section__factoring-tochka {
    border-radius: 32px;
    max-height: 155px;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
    height: auto;
}


@media (min-width: 1024px) {
    
    .features-section {
        gap: 32px;
        padding: 0;
        margin-top: 128px;
    }
    
    .features-section__item {
        flex-direction: row;
        justify-content: space-between;
        gap: 32px;
        align-items: start;
    }
    
    .features-section__item--reversed {
        flex-direction: row-reverse;
    }
    
    .feature-section__item-info {
        align-items: start;
        text-align: left;
    }
    
    .feature-section__factoring-tochka-wrapper {
        flex: 0 0 auto;
        width: auto;
        justify-content: start;
    }

}

