.benefits-section .benefits-list {
    display: flex;
    column-gap: 30px;
    row-gap: 20px;
    flex-wrap: wrap;
    align-items: stretch;
}

.benefits-section .benefits-list .item {
    color: var(--benefits-color);
    background: var(--benefits-background-color);
    border: 1px solid var(--benefits-border-color);
    border-radius: 16px;
    text-align: left;
    padding: 20px;
}

.benefits-section .benefits-list .image {
    border-radius: 16px;
    width: 100%;
    height: 165px;
    overflow: hidden;
    margin-bottom: 10px;
}

.benefits-section .benefits-list .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.benefits-section .benefits-list .item .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--benefits-title-color);
    margin-bottom: 10px;
    line-height: 1.33;
}

.benefits-section .benefits-list .item .sub-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--benefits-sub-title-color);
    margin-bottom: 10px;
    line-height: 1.5;
}

.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);
}

/* Primary */
.section--primary .benefits-section .benefits-list .item {
    color: var(--benefits-color-on-primary);
    background: var(--benefits-background-color-on-primary);
    border: 1px solid var(--benefits-border-color-on-primary);
}

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

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

/* secondary */
.section--secondary .benefits-section .benefits-list .item {
    color: var(--benefits-color-on-secondary);
    background: var(--benefits-background-color-on-secondary);
    border: 1px solid var(--benefits-border-color-on-secondary);
}

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

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

/* tertiary */
.section--tertiary .benefits-section .benefits-list .item {
    color: var(--benefits-color-on-tertiary);
    background: var(--benefits-background-color-on-tertiary);
    border: 1px solid var(--benefits-border-color-on-tertiary);
}

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

.section--tertiary .benefits-section .benefits-list .item .sub-title {
    color: var(--benefits-sub-title-color-on-tertiary);
}


@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 {
        width: 100%;
    }

    .benefits-section .benefits-list .item:nth-child(even) {
        margin-top: 20px;
    }
}

@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;
    }

}