  /* ═══ Реестр ГСИ + НЦА + офлайн (datacore) ═══ */
  .dc-filters-year { grid-template-columns: 220px 1fr; align-items: end; }
  .dc-filters-labs { grid-template-columns: 1fr 1fr; }
  .dc-hint { font-size: 12.5px; line-height: 1.55; color: var(--muted); padding-bottom: 4px; }
  .dc-check-row { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
  .dc-check-row label { cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 13px; color: var(--muted); margin: 0; }
  .dc-offline {
    max-width: 900px; margin: 0 auto 18px; padding: 14px 18px;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    border: 1px solid var(--border); border-radius: 14px; background: var(--surface);
    box-shadow: var(--shadow-soft, none);
  }
  .dc-offline.ready { border-color: color-mix(in srgb, var(--success) 45%, var(--border)); }
  .dc-offline.offline { border-color: color-mix(in srgb, var(--warning) 55%, var(--border)); }
  .dc-offline-title { font-weight: 700; font-size: 13.5px; color: var(--text); margin-bottom: 3px; }
  .dc-offline-text { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
  .dc-offline-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .dc-progress { height: 4px; margin-top: 8px; border-radius: 4px; background: var(--border); overflow: hidden; }
  .dc-progress div { height: 100%; width: 0; background: var(--accent); transition: width .25s; }
  .dc-pill {
    display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 600; white-space: nowrap; flex-shrink: 0;
  }
  .dc-pill.ok { background: color-mix(in srgb, var(--success) 15%, transparent); color: var(--success); }
  .dc-pill.warn { background: color-mix(in srgb, var(--warning) 15%, transparent); color: var(--warning); }
  .dc-pill.bad { background: color-mix(in srgb, var(--danger) 13%, transparent); color: var(--danger); }
  .dc-pill.muted { background: color-mix(in srgb, var(--muted) 15%, transparent); color: var(--muted); }
  .dc-source { font-size: 11.5px; color: var(--muted); margin: 14px 2px 4px; line-height: 1.5; }
  .dc-suggest { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 4px; }
  .dc-suggest button {
    border: 1px solid var(--border); background: var(--surface2); color: var(--text);
    border-radius: 999px; padding: 6px 12px; font-size: 12px; cursor: pointer;
  }
  .dc-suggest button:hover { border-color: var(--accent); }
  .dc-note {
    margin-top: 10px; padding: 9px 12px; border-radius: 10px; font-size: 12px; line-height: 1.5;
    background: color-mix(in srgb, var(--warning) 9%, var(--surface));
    border: 1px dashed color-mix(in srgb, var(--warning) 40%, var(--border)); color: var(--muted);
  }
  .dc-section { font-weight: 700; font-size: 13px; color: var(--text); margin: 18px 2px 10px; }
  .dc-section span { color: var(--muted); font-weight: 500; margin-left: 4px; }
  .dc-card-title { font-size: 14px; font-weight: 600; line-height: 1.4; flex: 1; color: var(--text); }
  .dc-card-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; font-weight: 400; }
  .result-card .card-info .dc-wide { grid-column: 1 / -1; }
  .cf-cta-box a.cf-cta-btn { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
  @media (max-width: 760px) {
    .dc-filters-year, .dc-filters-labs { grid-template-columns: 1fr; }
    .dc-offline { flex-direction: column; align-items: stretch; margin: 0 14px 16px; }
    .dc-offline-actions { justify-content: stretch; }
    .dc-offline-actions .btn-export { flex: 1; }
  }
