/* ── Specifications table ─────────────────── */

.specs__header {
    margin-bottom: var(--space-10);
}

.specs__layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-12);
    align-items: start;
}

.specs__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.specs__table thead th {
    text-align: left;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    padding: var(--space-3) var(--space-4);
    border-bottom: 2px solid var(--color-border);
}

.specs__table tbody tr {
    border-bottom: 1px solid var(--color-border);
}

.specs__table tbody tr:last-child {
    border-bottom: none;
}

.specs__table tbody td {
    padding: var(--space-4);
    vertical-align: top;
    line-height: 1.5;
}

.specs__table tbody td:first-child {
    font-weight: 600;
    color: var(--color-ink);
    width: 42%;
}

.specs__table tbody td:last-child {
    color: var(--color-muted);
}

/* Aside */

.specs__aside {
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    color: var(--color-white);
    position: sticky;
    top: calc(72px + var(--space-6));
}

.specs__aside-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.specs__aside-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

@media (max-width: 960px) {
    .specs__layout {
        grid-template-columns: 1fr;
    }

    .specs__aside {
        position: static;
    }
}
