/* Base reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

:root {
  --container: 880px;
  --accent: #ffd700;
  --green: #008000;
  --red: #ef4444; /* red */
  --yellow: #ffd700;
  --muted: #475569; /* slate-600 */
  --ring: rgba(239, 68, 68, 0.25);
}

/* Center the main page content */
.site-header, .site-footer { width: 100%; }
main.container, .site-header .container, .site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  padding: 3rem 0 1rem;
}

.site-title {
  font-weight: 800;
  font-size: 2.2rem;
  margin: 0 0 .25rem 0;
}

/* Large red short answer block */
.tagline {
  display: inline-block;
  margin: .5rem auto 0;
  padding: .5rem 1rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: .5rem;
  font-weight: 800;
  font-size: 2rem;
}

.lead {
  margin: 1.5rem 0 2rem;
  font-size: 1.125rem;
}

.lead p {
  margin: 0 0 1rem 0;
}

.lead p:last-child {
  margin-bottom: 0;
}

.delay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  padding: .5rem .75rem;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  background: #f8fafc;
}

.delay-label { color: var(--muted); }
.delay-value {
  font-weight: 700;
  color: var(--accent);
}

h2 {
  font-size: 1.25rem;
  margin: 2rem 0 .75rem;
}

/* Expandable date list */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
  width: 100%;
  font-size: 1.125rem;
}

.link-list li {
  text-align: left;
}

.link-list .date-header {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: .75rem .75rem;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  background: white;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
}

.link-list .date-header:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.link-list .sources {
  display: none;
  padding: .5rem .25rem 0 .25rem;
  font-size: 1.125rem;
}

/* Remove custom styling from inner links so they use default anchor styles */
.link-list .sources a { all: unset; }
.link-list .sources a {
  color: #1d4ed8;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1.125rem;
}

.link-list .sources ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: .25rem 0 0;
}

.site-footer {
  margin-top: 3rem;
  padding: 1rem 0 2rem;
  border-top: 1px solid #e2e8f0;
  color: var(--muted);
}

.site-footer a { color: inherit; }

/* Small screens */
@media (max-width: 640px) {
  .site-title { font-size: 1.75rem; }
  .tagline { font-size: 1.6rem; }
} 