/**
 * Homepage “Network right now” — visually separate from marketing .stats-section:
 * neutral surface, no hype colors, tabular numbers.
 */

.network-live-section {
  margin-top: 2.75rem;
  padding: 2.25rem 1.35rem 2.5rem;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  color: #0f172a;
  box-shadow: none;
}

.network-live-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.network-live-header {
  margin-bottom: 1.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #94a3b8;
}

.network-live-title {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  font-family: Inter, system-ui, sans-serif;
  color: #0f172a;
}

.network-live-lede {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.62;
  color: #334155;
  font-weight: 400;
}

.network-live-grid {
  margin: 0.35rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.network-live-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.network-live-row:last-of-type {
  border-bottom: none;
}

.network-live-row dt {
  position: relative;
  margin: 0;
  padding-left: 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
}

/* Suptilan marker — struktura bez “ikone” */
.network-live-row dt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94a3b8;
  opacity: 0.75;
}

.network-live-row dd {
  margin: 0;
  text-align: right;
}

.network-live-value {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-family: ui-monospace, 'Cascadia Mono', 'Segoe UI Mono', monospace;
}

.network-live-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.35;
  max-width: 16rem;
  margin-left: auto;
  text-align: right;
}

.network-live-foot {
  margin: 1.65rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
  font-style: normal;
}

.network-live-asof {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.5;
  font-style: normal;
}

.network-live-asof-icon {
  flex-shrink: 0;
  margin-top: 0.06em;
  font-size: 0.9em;
  line-height: 1;
  opacity: 0.72;
}

@media (max-width: 520px) {
  .network-live-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .network-live-row dd {
    text-align: left;
  }

  .network-live-hint {
    margin-left: 0;
    text-align: left;
    max-width: none;
  }

  .network-live-value {
    font-size: 1.25rem;
  }
}
