/* Feature Specs Grid Layout (Table-like alignment) */
.feature-specs {
    display: grid;
    grid-template-columns: minmax(auto, 140px) 1fr;
    gap: 0.75rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    align-items: baseline;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.feature-specs dt {
    font-weight: 600;
    color: var(--color-accent);
    text-align: right;
    position: relative;
    padding-right: 1rem;
}

/* Add a subtle separator between key and value */
.feature-specs dt::after {
    content: "·";
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.2);
}

.feature-specs dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Full width fallback for items that don't match pattern */
.feature-specs dt.full-width {
    grid-column: 1 / -1;
    text-align: left;
    padding-right: 0;
}

.feature-specs dt.full-width::after {
    display: none;
}

/* Mobile: Stack vertically */
@media (max-width: 600px) {
    .feature-specs {
        grid-template-columns: 1fr;
        gap: 0.25rem 0;
    }

    .feature-specs dt {
        text-align: left;
        color: var(--color-accent);
        /* Make labels pop */
        margin-top: 0.75rem;
        padding-right: 0;
    }

    .feature-specs dt::after {
        display: none;
    }

    .feature-specs dd {
        padding-left: 0;
        margin-bottom: 0.25rem;
    }
}