/* P10K static archive — shared design tokens + light global defaults */

:root {
  --museum-bg: #000000;
  --museum-surface: #000000;
  --museum-text: #e8eaed;
  --museum-muted: #9aa0a6;
  --museum-accent: #c9a227;
  --museum-border: #3d4450;
}

body {
  margin: 0;
  font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Legacy pages often use tables for layout; keep them usable on small screens */
img,
video {
  max-width: 100%;
  height: auto;
}

table {
  max-width: 100%;
}

@media (min-width: 769px) {
  /* PADDING TOP UNIVERSAL — iframe legacy pages only; shell uses body.museum-archive-shell (see BaseLayout.astro) */
  body:not(.museum-archive-shell) {
    padding-top: 80px !important;
  }

  body > table {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  body {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
