:root {
  --text: #202124;
  --muted: #5f6368;
  --blue: #2f6fb5;
  --line: #dde3ea;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.masthead {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
}

h1 {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.nav {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.95rem;
}

.content {
  padding-top: 26px;
}

.content section {
  margin: 0 0 28px;
}

h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.48rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 12px;
  line-height: 1.72;
  font-size: 0.98rem;
}

.topic-list,
.bullets,
.dates,
.committee {
  margin: 10px 0 0;
}

.topic-list,
.bullets {
  padding-left: 22px;
}

.topic-list li,
.bullets li,
.committee li {
  margin: 0 0 12px;
  line-height: 1.6;
}

.topic-list strong {
  display: block;
  margin-bottom: 2px;
}

.dates {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dates li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.dates li:last-child {
  border-bottom: 0;
}

.dates span {
  color: var(--muted);
  font-weight: 600;
}

.dates strong {
  font-weight: 600;
}

.committee {
  list-style: none;
  padding-left: 0;
}

.committee li {
  padding-bottom: 8px;
  border-bottom: 1px dashed #edf0f4;
}

section#organizers p,
section#venue p,
section#q-and-a p {
  max-width: 72ch;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 940px);
    padding-top: 26px;
  }

  .dates li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
