/* Характеристики товара: метка слева, значение прижато вправо — одна строка на характеристику */
.spec-row {
    padding: 4px 0;
    border-bottom: 1px solid var(--c-light);
    font-size: .875rem;
    line-height: 1.5;
    color: var(--c-muted);
    text-align: right;
    text-align-last: right;
}

.spec-row .spec-lbl {
    float: left;
    margin-right: 6px;
    font-weight: 700;
    color: var(--c-dark);
    text-align: left;
}

.spec-row::after {
    content: "";
    display: block;
    clear: both;
}

/* Характеристики идут в две колонки: последний ряд — это два элемента, а не один.
   Второй из них лежит слева (нечётная позиция), когда последний оказался справа. */
.specs-grid > div:last-child { border-bottom: 0 }

@media (min-width: 640px) {
    .specs-grid > div:nth-last-child(2):nth-child(odd) { border-bottom: 0 }
}
