:root {
  --ink: #121718;
  --paper: #f4f1e9;
  --paper-deep: #e8e3d8;
  --white: #fff;
  --signal: #ff5a2f;
  --steel: #667073;
  --rule: rgba(18, 23, 24, 0.22);
  --rule-strong: rgba(18, 23, 24, 0.58);
  --interface: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --editorial: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --technical: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: 91rem;
  --gutter: clamp(1.1rem, 3vw, 3rem);
  --section-space: clamp(4.5rem, 9vw, 9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--interface);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ol,
ul,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.02;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.site-frame {
  min-width: 0;
  overflow: hidden;
}

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  margin-inline: auto;
}

.shell--wide {
  width: min(calc(100% - (2 * var(--gutter))), 101rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--signal);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-180%);
}

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

.overline,
.story-kicker,
.story-meta,
.article-header__code,
.error-page__code {
  font-family: var(--technical);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.overline {
  margin-bottom: 1.4rem;
}

.utility-bar {
  border-bottom: 1px solid var(--rule);
  background: var(--ink);
  color: var(--paper);
}

.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 2.2rem;
  align-items: center;
}

.utility-bar p {
  margin: 0;
  font-family: var(--technical);
  font-size: 0.67rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.masthead {
  display: flex;
  min-height: 8.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.brand__mark {
  width: 4.25rem;
  height: 4.25rem;
}

.brand__type {
  display: grid;
  gap: 0.28rem;
}

.brand__name {
  font-size: clamp(1.45rem, 2.7vw, 2.5rem);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand__descriptor {
  font-family: var(--technical);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.masthead__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.text-link {
  font-size: 0.82rem;
  font-weight: 720;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  padding: 0.55rem 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.icon-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
}

.search-drawer {
  border-top: 1px solid var(--rule);
  padding-block: 1.5rem;
  background: var(--paper-deep);
}

.search-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--technical);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search-form__controls {
  display: flex;
  border-bottom: 2px solid var(--ink);
}

.search-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0.65rem 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.1rem, 3vw, 2rem);
}

.search-form input:focus {
  outline: 0;
}

.search-form button,
.button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-nav {
  border-block: 1px solid var(--rule-strong);
}

.section-nav .menu,
.site-footer .menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-nav .menu {
  justify-content: space-between;
}

.section-nav a {
  display: block;
  padding: 0.9rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-nav a:hover,
.section-nav .current-menu-item > a,
.section-nav .current-category-ancestor > a {
  color: #c23a17;
}

.opening-statement {
  border-bottom: 1px solid var(--rule-strong);
}

.opening-statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.45fr) minmax(17rem, 0.75fr);
  min-height: min(44rem, calc(100vh - 12rem));
}

.opening-statement__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--rule-strong);
  padding: clamp(3.5rem, 8vw, 7.5rem) clamp(2rem, 7vw, 7.5rem) clamp(3.5rem, 7vw, 6rem) 0;
}

.opening-statement h1 {
  max-width: 12ch;
  margin: auto 0 0;
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.opening-statement__deck {
  max-width: 47rem;
  margin: clamp(2.5rem, 7vw, 5rem) 0 0;
  font-family: var(--editorial);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.desk-index {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem) clamp(2rem, 4vw, 4rem);
}

.desk-index ol {
  margin: auto 0 2rem;
  padding: 0;
  list-style: none;
}

.desk-index li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  border-top: 1px solid var(--rule);
  padding-block: 0.85rem;
  font-size: 0.83rem;
  font-weight: 690;
  text-transform: uppercase;
}

.desk-index li span {
  color: #c23a17;
  font-family: var(--technical);
}

.desk-index__note {
  max-width: 24rem;
  margin: 0;
  font-family: var(--editorial);
  font-size: 1.08rem;
  line-height: 1.45;
}

.lead-package,
.coverage-index,
.recent-briefs {
  padding-block: var(--section-space);
}

.lead-package,
.recent-briefs {
  background: var(--white);
}

.section-heading {
  margin-bottom: clamp(2.2rem, 5vw, 4.5rem);
}

.section-heading--ruled {
  display: grid;
  grid-template-columns: minmax(12rem, 0.6fr) 2.4fr;
  align-items: end;
  border-top: 1px solid var(--rule-strong);
  padding-top: 1rem;
}

.section-heading--ruled .overline,
.section-heading--ruled h2 {
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5.5vw, 6rem);
  font-weight: 760;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.6fr minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.section-heading--split h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin: 0;
  font-family: var(--editorial);
  font-size: 1.2rem;
  line-height: 1.45;
}

.lead-package__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(19rem, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.lead-package__rail {
  border-top: 1px solid var(--rule-strong);
}

.story-card {
  min-width: 0;
}

.story-card__media {
  display: block;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.story-card__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 260ms ease;
}

.story-card:hover .story-card__media img {
  transform: scale(1.018);
}

.media-placeholder {
  position: relative;
  display: grid;
  min-height: 12rem;
  aspect-ratio: 3 / 2;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  color: var(--ink);
}

.media-placeholder::before,
.media-placeholder::after {
  position: absolute;
  content: "";
  background: var(--rule-strong);
}

.media-placeholder::before {
  width: 1px;
  height: 100%;
}

.media-placeholder::after {
  width: 100%;
  height: 1px;
}

.media-placeholder span {
  z-index: 1;
  border: 1px solid var(--ink);
  padding: 0.55rem 0.8rem;
  background: var(--paper-deep);
  font-family: var(--technical);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.story-card__body {
  padding-top: 1.2rem;
}

.story-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #b93412;
  text-decoration: none;
}

.story-card__title {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.story-card__title a,
.story-row h2 a {
  text-decoration: none;
}

.story-card__title a:hover,
.story-row h2 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 0.12em;
}

.story-card__excerpt {
  max-width: 48rem;
  color: #384043;
  font-family: var(--editorial);
  font-size: 1.08rem;
  line-height: 1.5;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: var(--steel);
}

.story-card--lead .story-card__title {
  max-width: 17ch;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
}

.story-card--lead .story-card__excerpt {
  max-width: 55rem;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
}

.story-card--compact {
  display: grid;
  grid-template-columns: minmax(7rem, 0.7fr) 1fr;
  gap: 1.25rem;
  border-bottom: 1px solid var(--rule);
  padding-block: 1.4rem;
}

.story-card--compact .story-card__media {
  align-self: start;
}

.story-card--compact .media-placeholder {
  min-height: 7.5rem;
}

.story-card--compact .media-placeholder span {
  font-size: 0;
}

.story-card--compact .media-placeholder span::after {
  content: "TMV";
  font-size: 0.65rem;
}

.story-card--compact .story-card__body {
  padding-top: 0;
}

.story-card--compact .story-card__title {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
}

.launch-state {
  border-bottom: 1px solid var(--rule-strong);
  padding-block: var(--section-space);
  background: var(--ink);
  color: var(--paper);
}

.launch-state__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}

.launch-state h2 {
  max-width: 10ch;
  margin-bottom: 1.8rem;
  font-size: clamp(2.8rem, 6.3vw, 6.6rem);
}

.launch-state__grid > div > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: #c9cdcc;
  font-family: var(--editorial);
  font-size: 1.25rem;
}

.launch-state__checklist {
  margin: 0;
  border-top: 1px solid rgba(244, 241, 233, 0.42);
}

.launch-state__checklist div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(244, 241, 233, 0.24);
  padding-block: 1rem;
}

.launch-state dt,
.launch-state dd {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.launch-state dt {
  color: #aab0ae;
  font-family: var(--technical);
}

.launch-state dd {
  font-weight: 720;
}

.coverage-list {
  border-top: 1px solid var(--rule-strong);
}

.coverage-item {
  display: grid;
  grid-template-columns: 4.5rem minmax(13rem, 0.8fr) minmax(20rem, 1.4fr) 2rem;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  padding-block: 1.5rem;
  text-decoration: none;
}

.coverage-item:hover {
  background: var(--paper-deep);
}

.coverage-item__number {
  font-family: var(--technical);
  font-size: 0.72rem;
}

.coverage-item__name {
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.coverage-item__description {
  max-width: 42rem;
  color: #4f585a;
  font-family: var(--editorial);
  font-size: 1.04rem;
}

.coverage-item__arrow {
  color: #b93412;
  font-size: 1.5rem;
}

.recent-briefs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.briefing-band {
  border-block: 1px solid var(--rule-strong);
  background: var(--signal);
}

.briefing-band__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 9rem;
}

.briefing-band p {
  margin: 0;
}

.briefing-band__pitch {
  max-width: 38rem;
  font-family: var(--editorial);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 650;
  line-height: 1.15;
}

.button--inactive {
  cursor: default;
  opacity: 0.82;
}

.archive-shell {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.archive-header {
  display: grid;
  grid-template-columns: 0.6fr 2.4fr;
  align-items: end;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.archive-header .overline {
  margin-bottom: 0.5rem;
}

.archive-header h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: -0.065em;
}

.archive-header--taxonomy {
  grid-template-columns: 0.55fr 1.45fr 0.7fr;
}

.archive-header__description {
  font-family: var(--editorial);
  font-size: 1.15rem;
}

.archive-header__description p {
  margin: 0;
}

.story-list {
  border-bottom: 1px solid var(--rule-strong);
}

.story-row {
  display: grid;
  grid-template-columns: 0.35fr 1.55fr 0.65fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.story-row:last-child {
  border-bottom: 0;
}

.story-row__index {
  color: var(--steel);
  font-family: var(--technical);
  font-size: 0.67rem;
}

.story-row h2 {
  max-width: 28ch;
  margin-bottom: 0.7rem;
  font-size: clamp(1.65rem, 3.3vw, 3.5rem);
}

.story-row__body > p {
  max-width: 48rem;
  margin-bottom: 0;
  color: #4c5557;
  font-family: var(--editorial);
  font-size: 1.08rem;
}

.story-row__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.story-row__meta .story-meta {
  display: grid;
}

.arrow-link {
  color: #b93412;
  font-size: 1.8rem;
  text-decoration: none;
}

.empty-notice {
  padding-block: 4rem;
  font-family: var(--editorial);
  font-size: 1.35rem;
}

.navigation.pagination {
  margin-top: 3rem;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-links .page-numbers {
  display: grid;
  min-width: 2.7rem;
  min-height: 2.7rem;
  place-items: center;
  border: 1px solid var(--rule-strong);
  text-decoration: none;
}

.nav-links .current {
  background: var(--ink);
  color: var(--paper);
}

.article-header {
  display: grid;
  grid-template-columns: 0.52fr 2fr;
  gap: clamp(2rem, 7vw, 7rem);
  border-bottom: 1px solid var(--rule-strong);
  padding-block: clamp(4rem, 8vw, 8rem);
}

.article-header__rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.article-header__code {
  margin: 2rem 0 0;
  color: var(--steel);
}

.article-header h1 {
  max-width: 18ch;
  margin-bottom: 2rem;
  font-size: clamp(3rem, 7vw, 7.8rem);
  letter-spacing: -0.065em;
}

.article-deck {
  max-width: 52rem;
  margin-bottom: 2rem;
  font-family: var(--editorial);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.42;
}

.article-hero {
  margin-block: clamp(2rem, 6vw, 6rem);
}

.article-hero img {
  width: 100%;
  max-height: 58rem;
  object-fit: cover;
}

.article-hero figcaption {
  border-bottom: 1px solid var(--rule);
  padding-block: 0.75rem;
  color: var(--steel);
  font-family: var(--technical);
  font-size: 0.7rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 0.5fr minmax(0, 1.45fr) 0.45fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(2rem, 5vw, 5rem) clamp(5rem, 10vw, 10rem);
}

.article-aside {
  font-size: 0.75rem;
}

.article-aside a {
  font-weight: 700;
}

.article-content {
  grid-column: 2;
  min-width: 0;
  font-family: var(--editorial);
  font-size: clamp(1.08rem, 1.4vw, 1.26rem);
  line-height: 1.72;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.45em;
}

.entry-content > h2,
.entry-content > h3 {
  margin-top: 2.2em;
  font-family: var(--interface);
}

.entry-content > h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.entry-content > h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.entry-content blockquote {
  margin: 2.5rem 0;
  border-left: 5px solid var(--signal);
  padding-left: 1.5rem;
  font-size: 1.25em;
  line-height: 1.45;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--interface);
  font-size: 0.9rem;
}

.entry-content th,
.entry-content td {
  border-bottom: 1px solid var(--rule);
  padding: 0.7rem;
  text-align: left;
}

.entry-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.entry-content figure {
  max-width: 100%;
  margin: 2rem 0;
}

.entry-content figcaption {
  margin-top: 0.65rem;
  color: var(--steel);
  font-family: var(--technical);
  font-size: 0.72rem;
  line-height: 1.5;
}

.entry-content iframe,
.entry-content video {
  max-width: 100%;
}

.tmv-restored-archive .entry-content .MsoNormal,
.tmv-restored-archive .entry-content .MsoNormal span {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.tmv-restored-archive .entry-content .tmv-archive-image--missing {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--paper-deep);
  object-fit: cover;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule-strong);
  padding-block: 2.5rem 5rem;
}

.post-navigation > div {
  padding-right: 2rem;
}

.post-navigation > div + div {
  border-left: 1px solid var(--rule);
  padding-right: 0;
  padding-left: 2rem;
  text-align: right;
}

.post-navigation span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--steel);
  font-family: var(--technical);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.post-navigation a {
  font-size: 1.15rem;
  font-weight: 720;
}

.page-article {
  display: grid;
  grid-template-columns: 0.7fr minmax(0, 1.5fr) 0.35fr;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(4rem, 9vw, 9rem);
}

.page-header {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 3rem;
}

.page-header h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
}

.page-content {
  grid-column: 2;
  font-family: var(--editorial);
  font-size: 1.16rem;
  line-height: 1.7;
}

.error-page {
  min-height: 65vh;
  padding-block: clamp(5rem, 11vw, 11rem);
}

.error-page__code {
  color: #b93412;
}

.error-page h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 8vw, 8rem);
}

.error-page > p:not(.error-page__code) {
  font-family: var(--editorial);
  font-size: 1.25rem;
}

.error-page__actions {
  display: grid;
  grid-template-columns: auto minmax(18rem, 42rem);
  gap: 3rem;
  align-items: end;
  margin-top: 3rem;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.site-footer__primary {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.7fr;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(4rem, 8vw, 8rem);
}

.site-footer__statement {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4.6rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.footer-heading {
  margin-bottom: 1.3rem;
  color: #aeb4b2;
  font-family: var(--technical);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .menu,
.site-footer__contact {
  display: grid;
  gap: 0.65rem;
}

.site-footer a {
  color: inherit;
  font-size: 0.83rem;
}

.site-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(244, 241, 233, 0.25);
  padding-block: 1.2rem;
}

.site-footer__base p {
  margin: 0;
  color: #aeb4b2;
  font-family: var(--technical);
  font-size: 0.64rem;
  text-transform: uppercase;
}

@media (max-width: 70rem) {
  .masthead__actions .text-link {
    display: none;
  }

  .section-nav .menu {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .section-nav a {
    white-space: nowrap;
  }

  .opening-statement__grid {
    grid-template-columns: minmax(0, 1.8fr) minmax(15rem, 0.7fr);
  }

  .lead-package__grid {
    grid-template-columns: 1.5fr 1fr;
  }

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

  .story-card--compact .story-card__media {
    display: none;
  }

  .coverage-item {
    grid-template-columns: 3rem minmax(11rem, 0.8fr) minmax(16rem, 1.4fr) 2rem;
  }

  .briefing-band__grid {
    grid-template-columns: 0.7fr 1.3fr;
    padding-block: 2rem;
  }

  .briefing-band .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 52rem) {
  :root {
    --section-space: 4.5rem;
  }

  .utility-bar__date {
    display: none;
  }

  .utility-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .masthead {
    min-height: 6.5rem;
  }

  .brand__mark {
    width: 3rem;
    height: 3rem;
  }

  .brand__descriptor,
  .icon-button > span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .has-js .section-nav {
    display: none;
  }

  .has-js .section-nav.is-open {
    display: block;
  }

  .section-nav .menu {
    display: grid;
    overflow: visible;
    padding-block: 0.5rem;
  }

  .section-nav a {
    border-bottom: 1px solid var(--rule);
  }

  .opening-statement__grid,
  .lead-package__grid,
  .launch-state__grid,
  .section-heading--split,
  .recent-briefs__grid,
  .briefing-band__grid,
  .archive-header,
  .archive-header--taxonomy,
  .article-header,
  .article-layout,
  .page-article,
  .site-footer__primary,
  .error-page__actions {
    grid-template-columns: 1fr;
  }

  .opening-statement__grid {
    min-height: auto;
  }

  .opening-statement__copy {
    border-right: 0;
    border-bottom: 1px solid var(--rule-strong);
    padding: 4rem 0;
  }

  .opening-statement h1 {
    font-size: clamp(3.2rem, 16vw, 5.6rem);
  }

  .desk-index {
    padding: 3rem 0 4rem;
  }

  .desk-index ol {
    margin: 1rem 0 2rem;
  }

  .section-heading--ruled {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lead-package__rail {
    margin-top: 1rem;
  }

  .story-card--compact {
    display: block;
  }

  .launch-state__grid {
    align-items: start;
  }

  .coverage-item {
    grid-template-columns: 2.5rem 1fr 2rem;
    gap: 0.75rem;
  }

  .coverage-item__description {
    grid-column: 2 / -1;
  }

  .recent-briefs__grid {
    gap: 3rem;
  }

  .briefing-band .button,
  .briefing-band__pitch {
    grid-column: auto;
  }

  .archive-header,
  .archive-header--taxonomy {
    gap: 1.5rem;
    align-items: start;
  }

  .story-row {
    grid-template-columns: 2.25rem 1fr;
    gap: 1rem;
  }

  .story-row__meta {
    grid-column: 2;
  }

  .article-header__rail {
    gap: 1rem;
  }

  .article-layout {
    gap: 2rem;
  }

  .article-content,
  .page-content {
    grid-column: 1;
  }

  .post-navigation,
  .site-footer__base {
    grid-template-columns: 1fr;
  }

  .post-navigation > div + div {
    border-top: 1px solid var(--rule);
    border-left: 0;
    padding-top: 1.5rem;
    padding-left: 0;
    text-align: left;
  }

  .site-footer__base {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 32rem) {
  .brand__name {
    max-width: 10rem;
    font-size: 1.18rem;
  }

  .masthead__actions {
    gap: 0.5rem;
  }

  .opening-statement h1,
  .article-header h1,
  .archive-header h1,
  .page-header h1,
  .error-page h1 {
    hyphens: auto;
  }

  .story-row__meta {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .utility-bar,
  .masthead__actions,
  .section-nav,
  .site-footer,
  .post-navigation,
  .briefing-band {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .article-header,
  .article-layout {
    display: block;
  }
}
