:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #5f6368;
  --line: #d9dde3;
  --surface: #ffffff;
  --page: #f5f7fa;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --warn: #9a3412;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
}

nav a[aria-current="page"] {
  color: var(--accent-strong);
  font-weight: 650;
}

.shell {
  width: min(1080px, calc(100% - 32px));
  margin: 32px auto;
}

.shell.narrow {
  width: min(720px, calc(100% - 32px));
}

.meeting-panel,
.panel,
.form-panel,
.item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.meeting-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  padding: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.lede {
  color: var(--muted);
  font-size: 18px;
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.meeting-grid div {
  padding: 14px;
  background: #f8fafc;
  border-radius: 8px;
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 4px 0 0;
  font-weight: 650;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.panel {
  padding: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: #334155;
}

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.toolbar {
  display: flex;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.list {
  display: grid;
  gap: 14px;
}

.item {
  padding: 18px;
}

.item h2 {
  margin-bottom: 8px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e7f5f3;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 650;
}

.form-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

fieldset {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

fieldset input {
  width: auto;
  min-height: auto;
}

.status {
  margin: 0;
  color: var(--warn);
}

@media (max-width: 760px) {
  .topbar,
  .page-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .meeting-panel,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .meeting-grid,
  .toolbar,
  fieldset {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
