/* Layout only. Every color is a token from theme.daylight.css. Fonts are served from this site
   (fonts/, SIL Open Font License): the page makes no third-party requests at all. */
@font-face { font-family: 'Barlow'; font-weight: 400; font-display: swap; src: url('fonts/Barlow-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-weight: 600; font-display: swap; src: url('fonts/Barlow-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-weight: 700; font-display: swap; src: url('fonts/BarlowCondensed-700.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 400; font-display: swap; src: url('fonts/JetBrainsMono-400.woff2') format('woff2'); }

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0; color: var(--ink); background: var(--bg);
  font: 17px/1.6 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  padding: 56px 20px 72px;
}
main { max-width: 720px; margin: 0 auto; }

.mark { font: 700 64px/0.95 'Barlow Condensed', 'Arial Narrow', sans-serif; letter-spacing: .01em; margin: 0; }
/* No text-transform: it would print MEDIAGATO and lose the brand's lowercase i. */
.maker { margin: 8px 0 0; color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: .06em; }
.lede { font-size: 24px; line-height: 1.35; font-weight: 600; margin: 28px 0 12px; }
.intro { color: var(--ink); margin: 0 0 8px; }

h2 {
  font: 700 18px/1 'Barlow Condensed', 'Arial Narrow', sans-serif; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin: 44px 0 14px;
}
.card { background: var(--surface); border: 1px solid var(--rule); border-radius: 10px; padding: 6px 22px; }
.card ul { list-style: none; margin: 0; padding: 0; }
.card li { padding: 14px 0; border-bottom: 1px solid var(--rule); }
.card li:last-child { border-bottom: 0; }
.card b { display: block; font-weight: 600; margin-bottom: 2px; }
.card span { color: var(--muted); }

.status { background: var(--due-soft); border-left: 3px solid var(--due); border-radius: 8px; padding: 14px 18px; margin: 0; }
.status b { color: var(--due); }

.soon li { padding: 12px 0; display: flex; gap: 14px; align-items: flex-start; }
.soon li::before { content: ''; flex: 0 0 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 0.62em; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
footer { margin-top: 56px; padding-top: 18px; border-top: 1px solid var(--rule); color: var(--muted); font-size: 14px; }
footer p { margin: 4px 0; }

@media (max-width: 520px) {
  body { padding-top: 36px; }
  .mark { font-size: 48px; }
  .lede { font-size: 20px; }
}
