/* Public portal slice — extends sovereign-console styles */

.live-banner {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  padding: 0.75rem 1.25rem;
  background: #3d2a12;
  color: #f6e7c8;
  border-bottom: 1px solid rgba(212, 161, 90, 0.45);
  font-size: 0.95rem;
}

.live-banner strong {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.live-banner--live {
  background: var(--moss-deep);
  color: var(--fog);
  border-bottom-color: rgba(198, 226, 108, 0.35);
}

.hero--portal {
  min-height: 88vh;
  min-height: 88dvh;
}

.hero--portal .brand {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
}

.portal-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.portal-panel .portal-dl {
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: minmax(6rem, 38%) 1fr;
  gap: 0.35rem 0.75rem;
  font-size: 0.92rem;
}

.portal-panel .portal-dl dt {
  color: var(--ink-soft);
  opacity: 0.85;
}

.portal-panel .portal-dl dd {
  margin: 0;
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}

.portal .footer a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 640px) {
  .live-banner {
    flex-direction: column;
    gap: 0.25rem;
  }
}
