.product-benefits {
    width: 100%;
    border-radius: .75rem;
    background-color: var(--color__white);
}

.product-benefits__item {
    border-right: .0625rem solid #d9d9d980;
    margin: 1.375rem 0 1.75rem 0;
    text-decoration: none;
    opacity: 1;
    transition: all .3s ease;
}


.product-benefits__item.--link:hover {
    opacity: .72;
    transition: all .3s ease;
}


.product-benefits__item:last-child {
    border: none;
}

.product-benefits__icon {
    width: 3rem;
    height: 2.5rem;
    background-size: contain;
}

.product-benefits__text {
    margin-top: .62rem;
    color: #13132a8f;
    font-weight: 600;
    line-height: 112%;
}

@media screen and (max-width: 1199px) {
    .product-benefits {
        flex-wrap: nowrap;
    }

    .product-benefits__item {
        border: none;
        flex-shrink: 1;
    }

    .product-benefits__icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media screen and (max-width: 991px) {
    .product-benefits {
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.84rem !important;
    }

    .product-benefits__item {
        margin: 0;
        flex-direction: row;
        align-items: center;
        gap: 1.54rem;
        max-width: fit-content !important;
    }

    .product-benefits__text.--p {
        font-size: 1.07692rem;
        line-height: 1.38rem;
        margin-top: 0 !important;
        font-weight: 600;
    }
}