/* ═════════════════════════════════════════════════════════════════════════
   KEY FACTS / AT-A-GLANCE SPEC BLOCK (W-006)

   Scoped to .hzo-key-facts*. Tokens only. A crawlable <dl> of term/description
   cards in a responsive grid (--hzo-kf-cols); the icon rides inside the <dt>.
   ═════════════════════════════════════════════════════════════════════════ */

.hzo-key-facts { --hzo-kf-cols: 2; display: block; }
.hzo-key-facts__heading { margin: 0 0 var(--space-md); }
.hzo-key-facts .hzo-eyebrow { margin-bottom: var(--space-xs); }

.hzo-key-facts__list {
    display: grid;
    grid-template-columns: repeat(var(--hzo-kf-cols, 2), minmax(0, 1fr));
    gap: var(--space-md);
    margin: 0;
    padding: 0;
}

.hzo-key-facts__item {
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-panel);
}

.hzo-key-facts__label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}
.hzo-key-facts__icon { display: inline-flex; color: var(--accent-text); flex-shrink: 0; }
.hzo-key-facts__icon svg { width: 16px; height: 16px; display: block; }

.hzo-key-facts__value {
    margin: 6px 0 0;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.35;
    color: var(--text-heading);
}

@media (max-width: 900px) {
    .hzo-key-facts__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .hzo-key-facts__list { grid-template-columns: 1fr; }
}

@media (forced-colors: active) {
    .hzo-key-facts__item { border: 1px solid CanvasText; }
}
