.benefits-section .benefits-list {
    display: flex;
    column-gap: 40px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.benefits-section .benefits-list .item {
    color: var(--benefits-color);
    background: var(--benefits-background-color);
    line-height: 24px;
    text-align: left;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.benefits-section .benefits-list .item:nth-child(even) {
    margin-top: 40px;
}

.benefits-section .benefits-list .item .title {
    font-size: 25px;
    font-weight: 700;
    color: var(--benefits-title-color);
    margin-bottom: 20px;
}

.benefits-section .benefits-list .image {
    max-width: 60px;
}

.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)*40px);
}

.section__row--4-8 .benefits-section .benefits-list .item {
    width: calc(1/3*100% - (1 - 1/3)*40px);
}

.section__row--2-50 .benefits-section .benefits-list .item,
.section--half-background-image .benefits-section .benefits-list .item {
    width: calc(1/2*100% - (1 - 1/2)*40px);
}

/* Primary */
.section--primary .benefits-section .benefits-list .item,
.section--primary-content-width .benefits-section .benefits-list .item  {
    color: var(--benefits-color-on-primary);
    background: var(--benefits-background-color-on-primary);
}


.section--primary .benefits-section .benefits-list .item .title,
.section--primary-content-width .benefits-section .benefits-list .item .title {
    color: var(--benefits-title-color-on-primary);
}

/* Half background image */
.section--half-background-image .benefits-section .benefits-list .item {
    color: var(--benefits-color-half-background-image);
    background: var(--benefits-background-color-half-background-image);
}


.section--half-background-image .benefits-section .benefits-list .item .title {
    color: var(--benefits-title-color-half-background-image);
}

@media (min-width: 992px) {
    .benefits-section .benefits-list {
        align-items: flex-start;
    }
}

@media (max-width: 1199px) {

    .benefits-section .benefits-list {
        column-gap: 30px;
    }

    .benefits-section .benefits-list .item {
        width: calc(1 / 2 * 100% - (1 - 1 / 2) * 30px);
    }

    .section__row--2-50 .benefits-section .benefits-list .item,
    .section--half-background-image .benefits-section .benefits-list .item {
        width: 100%;
    }

    .benefits-section .benefits-list .item:nth-child(even) {
        margin-top: 20px;
    }

    .section--half-background-image .benefits-section .benefits-list .item:nth-child(even) {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .benefits-section .benefits-list {
        row-gap: 20px;
    }

    .benefits-section .benefits-list .item:nth-child(even) {
        margin-top: 0;
    }

    .benefits-section .benefits-list .item:nth-child(odd) {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {

    .section__row--4-8 .benefits-section .benefits-list .item,
    .benefits-section .benefits-list .item {
        width: 100%;
    }

    .benefits-section .benefits-list .item:nth-child(odd) {
        margin: 0;
    }

}