/* Wrapper */
.wdt-product-specifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 50px;
    padding: clamp(1.5625rem, 1.3125rem + 1.25vw, 2.8125rem) clamp(1.25rem, 0.9375rem + 1.5625vw, 2.8125rem); /* 45 - 25 */ /* 45 - 20 */ 
    border: 1px solid var(--wdtBorderColor);
}


/* Section */
.wdt-product-spec-section:not(:last-child) {
    padding-right: 50px;
    border-right: 1px solid var(--wdtBorderColor);
}

/* Title */
.wdt-spec-title {
    font-family: var(--wdtFontTypo_H4);
    font-size: var(--wdtFontSize_H4);
    font-weight: var(--wdtFontWeight_H4);
    color: var(--wdtHeadAltColor);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* List */
.wdt-product-spec-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Item */
.wdt-product-spec-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px 30px;
    padding: 0;
    transition: var(--wdtBaseTransition);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Label */
.wdt-spec-label {
    color: rgba(var(--wdtBodyTxtColorRgb), 0.8);
    background-color: var(--wdtBodyBGColor);
    padding-right: 15px;
    position: relative;
}

.wdt-spec-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100vw;
    height: 0;
    border-bottom: 1px dashed var(--wdtBorderColor);
    z-index: -1;
}

/* Value */
.wdt-spec-value {
    font-weight: var(--wdtFontWeight_Ext);
    color: var(--wdtHeadAltColor);
    background-color: var(--wdtBodyBGColor);
    padding-left: 15px;
}

/* Responsive */

@media (max-width: 1024px) {

    .wdt-product-spec-section:not(:last-child) {
        padding-right: 0px;
        border-right: 0;
        padding-bottom: 25px;
        border-bottom: 1px solid var(--wdtBorderColor);
    }
}


@media (max-width: 479px) {

    .wdt-spec-title {
        font-size: var(--wdtFontSize_H5);
        margin-bottom: 15px;
    }
}