:root {
  --ink: #111518;
  --ink-soft: #343b3f;
  --paper: #f4f2ec;
  --white: #ffffff;
  --line: #c9c7bf;
  --line-dark: #50575b;
  --red: #98263a;
  --red-dark: #76192a;
  --teal: #176c70;
  --green: #2f7457;
  --amber: #a66316;
  --max-width: 1240px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #f1b94f;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid #303639;
  background: rgba(17, 21, 24, 0.97);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 1.3px;
}

.brand-copy small {
  margin-top: 4px;
  color: #bac0c3;
  font-size: 11px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px);
}

.primary-nav a {
  border-bottom: 1px solid transparent;
  color: #e3e5e6;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  border-bottom-color: #e3e5e6;
}

.primary-nav .nav-action {
  padding: 9px 12px;
  border: 1px solid #757c80;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid #61686c;
  border-radius: 0;
  background: transparent;
  color: var(--white);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - 72px));
  max-height: 820px;
  align-items: end;
  overflow: hidden;
  background-color: #1b2225;
  background-image: url("/assets/economy-desk.webp");
  background-position: center 48%;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 16, 0.91) 0%, rgba(10, 14, 16, 0.63) 47%, rgba(10, 14, 16, 0.14) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--max-width)) / 2));
  padding: 96px 0 100px;
}

.eyebrow {
  margin-bottom: 16px;
  color: #f2bd62;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

.hero h1 {
  max-width: 100%;
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: clamp(62px, 9vw, 132px);
  font-weight: 600;
  line-height: 0.9;
}

.hero-tagline {
  margin: 16px 0 18px;
  font-family: var(--serif);
  font-size: clamp(27px, 3.4vw, 48px);
  line-height: 1.05;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #e1e4e5;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.subscribe-form button:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.hero-note {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 24px;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: #d4d8da;
  font-size: 11px;
  text-align: right;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--white);
}

.signal-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 48px);
  border-right: 1px solid #3b4246;
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip span,
.brief-number,
.calendar-number {
  color: #d55d70;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.signal-strip strong {
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section {
  padding: 92px max(20px, calc((100vw - var(--max-width)) / 2));
}

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

.section-heading h2,
.brief-home-heading h2,
.calendar-copy h2,
.subscribe-copy h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.02;
}

.section-intro {
  max-width: 430px;
  margin: 0;
  color: #555d61;
  font-size: 15px;
}

.refresh-note {
  max-width: 360px;
  margin: 0;
  color: #62696d;
  font-size: 12px;
  text-align: right;
}

.refresh-note.light {
  color: #aeb5b8;
}

.brief-section-home {
  background: var(--white);
}

.brief-home-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.brief-home-heading .eyebrow {
  margin-bottom: 8px;
}

.edition-date {
  margin-bottom: 10px;
  color: #61686c;
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.brief-home-dek {
  max-width: 920px;
  margin: 32px 0 46px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 31px);
  line-height: 1.35;
}

.brief-home-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.brief-column {
  min-width: 0;
  padding: 26px 28px 34px 0;
}

.brief-column + .brief-column {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.brief-column h3 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 25px;
}

.brief-number {
  margin-bottom: 12px;
}

.brief-link-list {
  display: grid;
  gap: 16px;
}

.brief-link-list a {
  display: grid;
  gap: 3px;
  text-decoration: none;
}

.brief-link-list a:hover strong {
  color: var(--red);
}

.brief-link-list span {
  color: #6d7478;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-link-list strong {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.28;
}

.brief-point-list,
.brief-next-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-point-list li {
  padding-left: 16px;
  border-left: 3px solid var(--teal);
  color: #384044;
  font-size: 14px;
  line-height: 1.5;
}

.brief-next-list li {
  display: grid;
  gap: 3px;
}

.brief-next-list time {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-next-list span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.data-caveat {
  margin: 24px 0 0;
  color: #676e72;
  font-size: 11px;
  line-height: 1.5;
}

.indicators-section {
  background: var(--paper);
}

.indicator-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.indicator {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.indicator:last-child {
  border-right: 0;
}

.indicator-head {
  display: grid;
  min-height: 52px;
  align-content: start;
}

.indicator-name {
  font-size: 13px;
  font-weight: 800;
}

.indicator-description {
  color: #555d61;
  font-size: 11px;
}

.indicator-value {
  margin: 14px 0 5px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
}

.indicator-meta {
  margin: 8px 0 14px;
  color: #555d61;
  font-size: 10px;
}

.indicator > a {
  margin-top: auto;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.sparkline {
  width: 100%;
  margin: 14px 0 0;
}

.sparkline svg {
  width: 100%;
  height: 64px;
  border-bottom: 1px solid #d6d3ca;
}

.sparkline polyline {
  stroke: var(--teal);
  stroke-width: 2;
}

.sparkline figcaption {
  margin-top: 5px;
  color: #555d61;
  font-size: 9px;
}

.latest-section {
  background: var(--ink);
  color: var(--white);
}

.topic-filter {
  display: flex;
  max-width: 100%;
  gap: 5px;
  margin: -8px 0 34px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.topic-filter button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid #535a5e;
  border-radius: 4px;
  background: transparent;
  color: #d8dcde;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.topic-filter button[aria-pressed="true"] {
  border-color: #e7e9ea;
  background: #e7e9ea;
  color: var(--ink);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #4d5458;
}

.news-card {
  display: flex;
  min-width: 0;
  min-height: 340px;
  flex-direction: column;
  padding: 30px 30px 30px 0;
  border-right: 1px solid #4d5458;
  border-bottom: 1px solid #4d5458;
}

.news-card:nth-child(3n + 2),
.news-card:nth-child(3n + 3) {
  padding-left: 30px;
}

.news-card:nth-child(3n) {
  border-right: 0;
}

.news-card-source {
  margin-bottom: 18px;
  color: #d35e70;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.14;
}

.news-card p {
  color: #b9c0c3;
  font-size: 13px;
  line-height: 1.6;
}

.news-card > a {
  margin-top: auto;
  color: #f1c16f;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.news-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 12px 0 22px;
}

.news-topics span {
  padding: 3px 6px;
  border: 1px solid #51595d;
  border-radius: 3px;
  color: #aeb5b8;
  font-size: 9px;
}

.filter-empty {
  grid-column: 1 / -1;
  padding: 40px 0;
  color: #bbc1c4;
}

.midwest-section {
  background: #edf0ed;
}

.midwest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.midwest-stat {
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.midwest-stat:last-child {
  border-right: 0;
}

.midwest-stat > span {
  display: block;
  min-height: 40px;
  font-size: 13px;
  font-weight: 800;
}

.midwest-stat > strong {
  display: block;
  margin: 6px 0 2px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
}

.midwest-stat > small {
  color: #555d61;
  font-size: 10px;
}

.compact-sparkline svg {
  height: 48px;
}

.midwest-research {
  display: grid;
  max-width: 900px;
  grid-template-columns: 220px 1fr;
  column-gap: 44px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.midwest-research .eyebrow {
  grid-row: 1 / 4;
}

.midwest-research h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.15;
}

.midwest-research p:not(.eyebrow) {
  color: #50585c;
  font-size: 14px;
}

.midwest-research a {
  width: max-content;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.calendar-band {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(50px, 8vw, 120px);
  padding: 92px max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--red);
  color: var(--white);
}

.calendar-copy {
  align-self: start;
}

.calendar-copy h2 {
  margin-bottom: 24px;
}

.calendar-copy > p:last-child {
  max-width: 420px;
  color: #f2d9de;
  font-size: 15px;
  line-height: 1.6;
}

.calendar-event-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  list-style: none;
}

.calendar-event-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 92px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.calendar-event-list time {
  display: block;
  margin-bottom: 4px;
  color: #f5cbd2;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-event-list .calendar-number {
  color: #ffffff;
}

.calendar-event-list a {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
}

.calendar-event-list a:hover {
  text-decoration: underline;
}

.calendar-source {
  display: block;
  margin-top: 3px;
  color: #f0ced4;
  font-size: 10px;
}

.countdown {
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.calendar-source-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.calendar-source-links a {
  color: #f6dde1;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.transparency-section {
  background: var(--white);
}

.source-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.source-status-grid a {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 2px 10px;
  min-height: 86px;
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.source-status-grid a:nth-child(3n + 2),
.source-status-grid a:nth-child(3n + 3) {
  padding-left: 20px;
}

.source-status-grid a:nth-child(3n) {
  border-right: 0;
}

.source-status-grid strong {
  font-size: 13px;
}

.source-status-grid small {
  grid-column: 2;
  color: #687074;
  font-size: 10px;
}

.source-dot {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.source-dot.ok {
  background: var(--green);
}

.methodology-details {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.methodology-details summary {
  padding: 16px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.methodology-details > div {
  max-width: 780px;
  padding-bottom: 20px;
  color: #596165;
  font-size: 13px;
}

.subscribe-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(50px, 9vw, 130px);
  padding: 90px max(20px, calc((100vw - var(--max-width)) / 2));
  background: #184f53;
  color: var(--white);
}

.subscribe-copy .eyebrow {
  color: #f0bd69;
}

.subscribe-copy h2 {
  max-width: 540px;
  margin-bottom: 22px;
}

.subscribe-copy > p:last-child {
  max-width: 520px;
  color: #cee0df;
}

.subscribe-form {
  align-self: center;
}

.subscribe-form > label:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.subscribe-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.subscribe-row input {
  min-width: 0;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #aac5c4;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.subscribe-form button {
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid var(--red);
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.privacy-check {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 14px;
  color: #d2e3e2;
  font-size: 12px;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.privacy-check a {
  color: var(--white);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.source-section {
  background: var(--paper);
}

.source-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.source-shelf a {
  display: grid;
  min-height: 110px;
  align-content: center;
  padding: 18px 22px 18px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.source-shelf a:nth-child(3n + 2),
.source-shelf a:nth-child(3n + 3) {
  padding-left: 22px;
}

.source-shelf a:nth-child(3n) {
  border-right: 0;
}

.source-shelf strong {
  font-family: var(--serif);
  font-size: 25px;
}

.source-shelf span {
  color: #676e72;
  font-size: 11px;
}

.source-shelf a:hover strong {
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto minmax(300px, 0.85fr);
  gap: 40px;
  padding: 54px max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--ink);
  color: var(--white);
}

.site-footer strong {
  letter-spacing: 1.2px;
}

.site-footer p {
  margin: 7px 0 0;
  color: #aeb5b8;
  font-size: 11px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-links a,
.footer-notes a {
  color: #dce0e2;
  font-size: 11px;
}

.footer-links a {
  display: flex;
  min-height: 28px;
  align-items: center;
}

.footer-notes {
  text-align: right;
}

.compact-footer {
  grid-template-columns: 1fr 1fr;
}

.skeleton {
  display: block;
  height: 12px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, rgba(140, 145, 147, 0.16), rgba(180, 185, 187, 0.32), rgba(140, 145, 147, 0.16));
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.skeleton.short {
  width: 45%;
}

.skeleton.value {
  width: 60%;
  height: 44px;
}

.skeleton.long {
  width: 90%;
}

.skeleton.headline {
  width: 92%;
  height: 56px;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

.noscript-note {
  padding: 20px 0;
  color: #c7cccf;
}

/* Daily archive and policy pages */

.article-page {
  background: var(--paper);
}

.brief-page,
.archive-page,
.policy-page {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 100px;
}

.brief-header,
.archive-header,
.policy-page > header {
  max-width: 900px;
  padding-bottom: 46px;
  border-bottom: 2px solid var(--ink);
}

.brief-header h1,
.archive-header h1,
.policy-page h1,
.utility-panel h1 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.97;
}

.brief-dek,
.archive-header > p:last-child,
.policy-page > header > p:last-child,
.utility-panel > p {
  max-width: 760px;
  color: #4e565a;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
}

.brief-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.brief-section-heading {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  margin-bottom: 30px;
}

.brief-section-heading span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.brief-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
}

.brief-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.brief-source {
  display: flex;
  min-width: 0;
  min-height: 280px;
  flex-direction: column;
  padding: 24px 26px 24px 0;
  border-right: 1px solid var(--line);
}

.brief-source + .brief-source {
  padding-left: 26px;
}

.brief-source:last-child {
  border-right: 0;
}

.brief-source-meta {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-source h3 {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.17;
}

.brief-source > p:not(.brief-source-meta) {
  color: #596165;
  font-size: 13px;
}

.brief-source > a {
  margin-top: auto;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.brief-facts {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-facts li {
  padding: 20px;
  border-left: 4px solid var(--teal);
  background: var(--white);
  font-family: var(--serif);
  font-size: 18px;
}

.brief-method,
.brief-disclosure {
  max-width: 820px;
  margin-top: 22px;
  color: #677074;
  font-size: 11px;
}

.release-list {
  max-width: 900px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.release-list li {
  display: grid;
  grid-template-columns: 230px 1fr 100px;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.release-list time,
.release-list span {
  color: #697175;
  font-size: 11px;
}

.release-list a {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.archive-card {
  min-height: 250px;
  padding: 26px 28px 26px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.archive-card:nth-child(3n + 2),
.archive-card:nth-child(3n + 3) {
  padding-left: 28px;
}

.archive-card:nth-child(3n) {
  border-right: 0;
}

.archive-card time {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.archive-card h2 {
  margin: 14px 0;
  font-family: var(--serif);
  font-size: 27px;
}

.archive-card h2 a {
  text-decoration: none;
}

.archive-card p {
  color: #586064;
  font-size: 13px;
}

.archive-card > a {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.policy-page {
  max-width: 940px;
}

.policy-page section {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.policy-page section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
}

.policy-page section p {
  margin: 0;
  color: #51595d;
  line-height: 1.7;
}

/* Confirmation and preference pages */

.utility-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px 20px;
  background: #e9ece8;
}

.utility-panel {
  width: min(680px, 100%);
  padding: clamp(32px, 6vw, 66px);
  border-top: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 21, 24, 0.12);
}

.utility-brand {
  margin-bottom: 54px;
  color: var(--ink);
}

.utility-brand .brand-copy small {
  color: #686f73;
}

.utility-panel h1 {
  font-size: clamp(40px, 6vw, 65px);
}

.utility-panel .button {
  margin-top: 14px;
}

.utility-note {
  margin-top: 32px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--sans) !important;
  font-size: 11px !important;
}

@media (max-width: 1050px) {
  .indicator-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .indicator:nth-child(3) {
    border-right: 0;
  }

  .indicator:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .indicator:nth-child(5) {
    border-right: 0;
  }

  .calendar-band {
    grid-template-columns: 1fr;
  }

  .calendar-source-links {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-notes {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header {
    min-height: 64px;
    padding: 8px 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 23px;
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 18px;
    border-bottom: 1px solid #3e4549;
    background: var(--ink);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a,
  .primary-nav .nav-action {
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid #3b4246;
  }

  .hero {
    min-height: min(680px, calc(100vh - 64px));
    background-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 14, 16, 0.93), rgba(10, 14, 16, 0.52));
  }

  .hero-inner {
    padding: 78px 0 98px;
  }

  .hero-note {
    right: 20px;
    left: 20px;
    text-align: left;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid #3b4246;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading,
  .brief-home-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .refresh-note {
    text-align: left;
  }

  .brief-home-grid {
    grid-template-columns: 1fr;
  }

  .brief-column,
  .brief-column + .brief-column {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .news-grid,
  .source-status-grid,
  .source-shelf,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card,
  .news-card:nth-child(3n + 2),
  .news-card:nth-child(3n + 3) {
    padding: 26px 24px 26px 0;
    border-right: 1px solid #4d5458;
  }

  .news-card:nth-child(even) {
    padding-left: 24px;
    border-right: 0;
  }

  .news-card:nth-child(odd) {
    padding-left: 0;
  }

  .source-status-grid a,
  .source-status-grid a:nth-child(3n + 2),
  .source-status-grid a:nth-child(3n + 3),
  .source-shelf a,
  .source-shelf a:nth-child(3n + 2),
  .source-shelf a:nth-child(3n + 3),
  .archive-card,
  .archive-card:nth-child(3n + 2),
  .archive-card:nth-child(3n + 3) {
    padding-right: 20px;
    padding-left: 0;
    border-right: 1px solid var(--line);
  }

  .source-status-grid a:nth-child(even),
  .source-shelf a:nth-child(even),
  .archive-card:nth-child(even) {
    padding-left: 20px;
    border-right: 0;
  }

  .midwest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .midwest-stat:nth-child(2) {
    border-right: 0;
  }

  .midwest-stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .midwest-research {
    grid-template-columns: 1fr;
  }

  .midwest-research .eyebrow {
    grid-row: auto;
  }

  .subscribe-band {
    grid-template-columns: 1fr;
  }

  .brief-source-grid,
  .brief-facts {
    grid-template-columns: 1fr;
  }

  .brief-source,
  .brief-source + .brief-source {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .release-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .policy-page section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(50px, 17vw, 78px);
  }

  .hero-tagline {
    font-size: 28px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .indicator-grid,
  .news-grid,
  .midwest-grid,
  .source-status-grid,
  .source-shelf,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .indicator,
  .indicator:nth-child(3),
  .indicator:nth-child(5) {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .news-card,
  .news-card:nth-child(even),
  .news-card:nth-child(odd) {
    min-height: 300px;
    padding: 24px 0;
    border-right: 0;
  }

  .midwest-stat,
  .midwest-stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .calendar-band {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .calendar-event-list li {
    grid-template-columns: 34px 1fr;
  }

  .countdown {
    grid-column: 2;
    width: max-content;
  }

  .calendar-event-list a {
    font-size: 18px;
  }

  .source-status-grid a,
  .source-status-grid a:nth-child(even),
  .source-shelf a,
  .source-shelf a:nth-child(even),
  .archive-card,
  .archive-card:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .subscribe-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer,
  .compact-footer {
    grid-template-columns: 1fr;
  }

  .footer-notes {
    grid-column: auto;
  }

  .brief-page,
  .archive-page,
  .policy-page {
    width: calc(100% - 36px);
    padding: 58px 0 76px;
  }

  .brief-section-heading {
    grid-template-columns: 42px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skeleton {
    animation: none;
  }
}
