.benefits-section .benefits-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefits-section .benefits-list .item {
    color: var(--benefits-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    padding: 0 15px;
}

.benefits-section .benefits-list .image {
    height: 60px;
    margin-bottom: 10px;
}

.benefits-section .benefits-list .image img {
    max-height: 100%;
    width: auto;
    max-width: initial;
    margin: 0 auto;
}

.benefits-section .benefits-list .item {
    width: calc(1/4*100% - (1 - 1/4)*30px);
}

.section__row--4-8 .benefits-section .benefits-list .item {
    width: calc(1/3*100% - (1 - 1/3)*30px);
}

.section__row--2-50 .benefits-section .benefits-list .item {
    width: calc(1/2*100% - (1 - 1/2)*30px);
}

.section--primary .benefits-section .benefits-list .item {
    color: var(--benefits-color-on-primary);
}

.section--secondary .benefits-section .benefits-list .item {
    color: var(--benefits-color-on-secondary);
}

.section--background-image .benefits-section .benefits-list .item {
    color: var(--benefits-color-on-background-image);
}

@media (max-width: 991px) {
    .benefits-section {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .benefits-section .benefits-list {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .section__row--4-8 .benefits-section .benefits-list .item,
    .benefits-section .benefits-list .item {
        width: calc(1 / 2 * 100% - (1 - 1 / 2) * 15px);
    }

    .benefits-section .benefits-list .item {
        font-size: 18px;
    }
}