.product-specifications {
    margin: 34px 0 40px;
    border: 1px solid #e6e7e9;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 24, 32, .07);
}

.product-specifications-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 22px;
    background: #f5f6f7;
    border-bottom: 1px solid #e2e3e5;
}

.product-specifications-heading h2 {
    margin: 0;
    color: #24272d;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}

.product-specifications-mark {
    display: block;
    width: 5px;
    height: 28px;
    background: #d60f0f;
}

.product-specifications-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin: 0 !important;
    background: #fff;
}

.product-specification-item {
    display: grid !important;
    grid-template-columns: minmax(155px, 42%) minmax(0, 1fr) !important;
    min-width: 0;
    border-bottom: 1px solid #eceef0;
}

.product-specification-item:nth-child(odd) {
    border-right: 1px solid #eceef0;
}

.product-specification-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.product-specification-name,
.product-specification-value {
    box-sizing: border-box;
    min-width: 0;
    padding: 15px 17px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.product-specification-name {
    display: flex;
    align-items: center;
    background: #f7f7f8;
    color: #343840;
    font-weight: 600;
    border-left: 3px solid transparent;
}

.product-specification-value {
    display: flex;
    align-items: center;
    background: #fff;
    color: #555b65;
    border-left: 1px solid #eceef0;
}

.product-specification-item:hover .product-specification-name {
    color: #b80e0e;
    background: #fff0f0;
    border-left-color: #d60f0f;
}

.product-specification-item:hover .product-specification-value {
    color: #20242b;
    background: #fffafa;
}

@media screen and (max-width: 768px) {
    .product-specifications {
        margin: 24px 0 28px;
    }

    .product-specifications-heading {
        padding: 14px 15px;
    }

    .product-specifications-heading h2 {
        font-size: 19px;
    }

    .product-specifications-mark {
        height: 24px;
    }

    .product-specifications-grid {
        grid-template-columns: 1fr !important;
    }

    .product-specification-item,
    .product-specification-item:nth-child(odd) {
        grid-template-columns: minmax(115px, 40%) minmax(0, 1fr) !important;
        border-right: 0;
    }

    .product-specification-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #eceef0;
    }

    .product-specification-item:last-child {
        border-bottom: 0;
    }

    .product-specification-name,
    .product-specification-value {
        padding: 12px 13px;
    }
}
