:root {
  --ink: #241f25;
  --muted: #6d666d;
  --paper: #fbfaf8;
  --panel: #f0eff0;
  --line: #d8d3d6;
  --plum: #4d2d57;
  --plum-dark: #302035;
  --plum-soft: #e9e1eb;
  --copper: #a55f3a;
  --copper-light: #d9b39d;
  --green: #53674f;
  --white: #ffffff;
  --font: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: 0;
}

body.search-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.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: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--white);
  transform: translateY(-160%);
}

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

.utility {
  color: #efe8f0;
  background: var(--plum-dark);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1;
}

.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}

.masthead {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--plum-dark);
  font-size: 35px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
}

.brand strong {
  font-weight: 700;
}

.brand-mark {
  position: relative;
  width: 9px;
  height: 44px;
  border: 2px solid var(--copper);
  border-radius: 7px 7px 6px 6px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 2px;
  height: 12px;
  border-radius: 4px;
  background: var(--copper);
}

.search-button,
.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 6px 0 6px 14px;
  color: var(--plum);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

.menu-button {
  display: none;
  justify-self: start;
}

.main-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.nav-inner a {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 0 25px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-inner a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  height: 14px;
  border-left: 1px solid var(--line);
}

.nav-inner a:hover,
.nav-inner a:focus-visible {
  color: var(--copper);
}

.search-drawer {
  position: fixed;
  z-index: 80;
  inset: 0;
  overflow-y: auto;
  color: var(--white);
  background: rgba(48, 32, 53, 0.98);
}

.search-shell {
  padding-top: 76px;
  padding-bottom: 80px;
}

.search-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.search-heading h2 {
  max-width: 720px;
  margin: 8px 0 28px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.search-heading .icon-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 900px;
  border-bottom: 1px solid var(--copper-light);
}

.search-form input {
  min-width: 0;
  height: 64px;
  padding: 8px 6px;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 21px;
}

.search-form input::placeholder {
  color: #c9becb;
  opacity: 1;
}

.search-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 112px;
  justify-content: center;
  color: var(--white);
  border: 0;
  background: var(--copper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.search-results {
  max-width: 900px;
  margin-top: 36px;
}

.search-status {
  margin: 0 0 16px;
  color: #d8ced9;
  font-family: var(--sans);
  font-size: 14px;
}

.search-result {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.search-result img {
  height: 82px;
  object-fit: cover;
}

.search-result strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.search-result small {
  display: block;
  margin-top: 4px;
  color: #cbbfcd;
  font-family: var(--sans);
  font-size: 12px;
}

.edition-line {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
}

.edition-line span {
  color: var(--copper);
  font-weight: 700;
  text-transform: uppercase;
}

.edition-line p {
  margin: 0;
}

.edition-line time {
  color: var(--muted);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
  min-height: 540px;
  padding-top: 30px;
  padding-bottom: 34px;
}

.lead-photo {
  min-height: 0;
  overflow: hidden;
  background: var(--panel);
}

.lead-photo img {
  height: 100%;
  object-fit: cover;
}

.lead-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 0 36px 42px;
}

.lead-copy::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 0;
  width: 4px;
  background: var(--copper);
}

.tag,
.eyebrow {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.lead-copy h1 {
  margin: 14px 0 18px;
  color: var(--plum-dark);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.lead-copy h1 a {
  text-decoration: none;
}

.lead-copy > p {
  margin: 0 0 18px;
  color: #504950;
  font-size: 19px;
  line-height: 1.55;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
}

.story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.story-meta svg {
  width: 14px;
  height: 14px;
}

.read-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--plum);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.read-link {
  align-self: flex-start;
  margin-top: 26px;
}

.read-link svg,
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.read-link:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.ticker {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 10px;
  color: #eee8ef;
  background: var(--plum);
  font-family: var(--sans);
  font-size: 12px;
}

.ticker::before,
.ticker::after {
  content: "";
  position: fixed;
}

.ticker strong {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 18px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.25);
  text-transform: uppercase;
}

.ticker span {
  position: relative;
}

.ticker span + span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -16px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--copper-light);
}

.latest {
  padding-top: 72px;
  padding-bottom: 74px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 19px;
  border-bottom: 2px solid var(--plum-dark);
}

.section-heading h2 {
  margin: 6px 0 0;
  color: var(--plum-dark);
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 28px;
}

.story {
  min-width: 0;
}

.story-image {
  display: block;
  overflow: hidden;
  background: var(--panel);
}

.story-image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 300ms ease;
}

.story-image:hover img {
  transform: scale(1.025);
}

.story-copy {
  padding-top: 17px;
}

.story-copy h3 {
  margin: 8px 0 10px;
  color: var(--plum-dark);
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: 0;
}

.story-copy h3 a {
  text-decoration: none;
}

.story-copy p {
  margin: 0 0 15px;
  color: #5b545b;
  font-size: 16px;
  line-height: 1.55;
}

.feature-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
  gap: 24px;
  align-items: center;
}

.feature-card .story-copy {
  padding-top: 0;
}

.feature-card .story-copy h3 {
  font-size: 32px;
}

.split-rule {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 590px) 1fr;
  gap: 28px;
  align-items: center;
}

.split-rule::before,
.split-rule::after {
  content: "";
  border-top: 1px solid var(--copper-light);
}

.split-rule p {
  margin: 0;
  color: var(--plum);
  font-size: 25px;
  line-height: 1.38;
  text-align: center;
}

.category-stack {
  padding-top: 75px;
  padding-bottom: 82px;
}

.category-band + .category-band {
  margin-top: 58px;
}

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

.band-list a {
  min-width: 0;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 24px 15px 0;
  text-decoration: none;
}

.band-list a + a {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.band-list span {
  color: var(--plum-dark);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.band-list small {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
}

.editorial-note {
  color: #f3edf4;
  background: var(--plum-dark);
}

.note-inner {
  min-height: 260px;
  display: grid;
  grid-template-columns: 90px minmax(280px, .85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.note-number {
  align-self: stretch;
  display: grid;
  place-items: center;
  color: var(--copper-light);
  border-right: 1px solid rgba(255,255,255,.2);
  font-family: var(--sans);
  font-size: 12px;
}

.note-inner h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 32px;
  line-height: 1.22;
  letter-spacing: 0;
}

.note-inner > p {
  color: #d6cdd8;
  font-size: 17px;
}

.site-footer {
  padding-top: 55px;
  color: #393238;
  background: #e7e5e5;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 70px;
  padding-bottom: 44px;
}

.brand-footer {
  font-size: 25px;
}

.brand-footer .brand-mark {
  width: 7px;
  height: 32px;
}

.footer-main p {
  max-width: 380px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.footer-main h2 {
  margin: 0 0 12px;
  color: var(--plum-dark);
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-main > div > a:not(.brand) {
  display: block;
  margin: 7px 0;
  font-size: 15px;
}

.footer-bottom {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #cac5c8;
  font-family: var(--sans);
  font-size: 11px;
}

.article-header {
  padding-top: 68px;
  padding-bottom: 38px;
}

.article-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.article-heading h1 {
  margin: 16px auto 20px;
  color: var(--plum-dark);
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: 0;
}

.dek {
  max-width: 760px;
  margin: 0 auto;
  color: #5b535a;
  font-size: 21px;
  line-height: 1.5;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
}

.byline span + time,
.byline time + span {
  position: relative;
}

.byline span + time::before,
.byline time + span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--copper);
}

.article-hero {
  margin-bottom: 0;
}

.article-hero img {
  max-height: 690px;
  object-fit: cover;
}

.article-hero figcaption {
  padding-top: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
}

.article-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px) 150px;
  gap: 55px;
  justify-content: center;
  align-items: start;
  padding-top: 58px;
  padding-bottom: 84px;
}

.article-aside,
.article-share {
  position: sticky;
  top: 24px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
}

.aside-rule {
  display: block;
  width: 42px;
  margin-bottom: 17px;
  border-top: 3px solid var(--copper);
}

.article-aside strong,
.article-share strong {
  display: block;
  color: var(--plum-dark);
  text-transform: uppercase;
}

.article-aside p {
  margin: 8px 0 0;
}

.article-share {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.article-body {
  min-width: 0;
  font-size: 19px;
  line-height: 1.72;
}

.article-body p {
  margin: 0 0 1.35em;
}

.article-body .lead {
  color: var(--plum-dark);
  font-size: 23px;
  line-height: 1.58;
}

.article-body h2 {
  margin: 2.1em 0 .6em;
  color: var(--plum-dark);
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: 0;
}

.article-body h2::before {
  content: "";
  display: block;
  width: 44px;
  margin-bottom: 15px;
  border-top: 3px solid var(--copper);
}

.article-body h3 {
  margin: 1.8em 0 .55em;
  color: var(--plum);
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0;
}

.article-body h4 {
  margin: 1.6em 0 .45em;
  color: var(--green);
  font-family: var(--sans);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.5em;
  padding-left: 1.35em;
}

.article-body li {
  margin: .45em 0;
  padding-left: .25em;
}

.article-body li::marker {
  color: var(--copper);
  font-weight: 700;
}

.article-body table {
  width: 100%;
  margin: 1.6em 0;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
}

.article-body th,
.article-body td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  color: var(--white);
  background: var(--plum);
}

.article-body tbody tr:nth-child(even) {
  background: #f0edef;
}

.article-body a {
  color: var(--plum);
}

.source-note {
  margin-top: 45px;
  padding: 22px 24px;
  color: #494048;
  border-left: 4px solid var(--copper);
  background: var(--plum-soft);
  font-size: 15px;
  line-height: 1.6;
}

.related {
  padding-top: 68px;
  padding-bottom: 80px;
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 28px;
}

.compact-card .story-copy h3 {
  font-size: 21px;
}

.compact-card .story-copy p {
  display: none;
}

.category-hero {
  border-bottom: 1px solid var(--line);
  background: #eeebee;
}

.category-hero-inner {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 50px;
  align-items: center;
}

.category-hero h1 {
  margin: 8px 0 0;
  color: var(--plum-dark);
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
}

.category-hero p {
  margin: 0;
  color: #5b545a;
  font-size: 18px;
}

.category-count {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  padding: 12px;
  color: var(--white);
  border-radius: 50%;
  background: var(--copper);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.category-list {
  padding-top: 58px;
  padding-bottom: 70px;
}

.category-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 38px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.category-lead .story-copy {
  padding-top: 0;
}

.category-lead .story-copy h3 {
  font-size: 36px;
}

.category-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  max-width: 850px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.category-row .story-copy {
  padding-top: 0;
}

.also-read {
  padding-bottom: 80px;
}

@media (max-width: 1020px) {
  .lead-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .8fr);
    min-height: 480px;
  }

  .lead-copy {
    padding-left: 30px;
  }

  .lead-copy h1 {
    font-size: 42px;
  }

  .story-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    grid-column: 1 / -1;
  }

  .note-inner {
    grid-template-columns: 70px 1fr 1fr;
    gap: 28px;
  }

  .article-heading h1 {
    font-size: 50px;
  }

  .article-layout {
    grid-template-columns: 150px minmax(0, 680px);
    gap: 40px;
  }

  .article-share {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .utility-inner {
    min-height: 29px;
    justify-content: center;
  }

  .utility-inner span:first-child {
    display: none;
  }

  .masthead {
    min-height: 78px;
  }

  .brand {
    gap: 9px;
    font-size: 25px;
  }

  .brand-mark {
    width: 7px;
    height: 34px;
  }

  .menu-button {
    display: inline-grid;
  }

  .search-button span {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-inner {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 14px;
  }

  .nav-inner a {
    min-height: 44px;
    justify-content: start;
    padding: 0 8px;
  }

  .nav-inner a + a::before {
    top: 0;
    left: 8px;
    width: calc(100% - 16px);
    height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .search-shell {
    padding-top: 30px;
  }

  .search-heading {
    gap: 15px;
  }

  .search-heading h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .search-form input {
    height: 56px;
    font-size: 16px;
  }

  .search-form button {
    min-width: 56px;
  }

  .search-form button span {
    display: none;
  }

  .search-result {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }

  .search-result img {
    height: 64px;
  }

  .search-result strong {
    font-size: 16px;
  }

  .search-result > svg {
    display: none;
  }

  .edition-line {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .edition-line time {
    display: none;
  }

  .lead-grid {
    display: block;
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 25px;
  }

  .lead-photo img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .lead-copy {
    padding: 24px 0 0 18px;
  }

  .lead-copy::before {
    top: 28px;
    bottom: 0;
    width: 3px;
  }

  .lead-copy h1 {
    margin-top: 10px;
    font-size: 37px;
    line-height: 1.06;
  }

  .lead-copy > p {
    font-size: 17px;
  }

  .read-link {
    margin-top: 20px;
  }

  .ticker {
    width: 100%;
    min-height: 48px;
    gap: 18px;
    padding-inline: 16px;
    overflow: hidden;
  }

  .ticker strong {
    padding: 0 12px 0 0;
  }

  .ticker span:nth-of-type(n+2) {
    display: none;
  }

  .latest {
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .section-heading .text-link {
    flex: 0 0 28px;
    width: 28px;
    overflow: hidden;
    white-space: nowrap;
  }

  .story-grid,
  .related-grid {
    display: block;
  }

  .story-grid .story + .story,
  .related-grid .story + .story {
    margin-top: 34px;
  }

  .feature-card {
    display: block;
  }

  .feature-card .story-copy {
    padding-top: 17px;
  }

  .feature-card .story-copy h3 {
    font-size: 27px;
  }

  .story-copy h3 {
    font-size: 24px;
  }

  .split-rule {
    grid-template-columns: 30px 1fr 30px;
    gap: 14px;
  }

  .split-rule p {
    font-size: 20px;
  }

  .category-stack {
    padding-top: 55px;
    padding-bottom: 60px;
  }

  .band-list {
    display: block;
  }

  .band-list a {
    min-height: 74px;
    padding: 13px 0;
  }

  .band-list a + a {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .note-inner {
    min-height: 0;
    display: block;
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .note-number {
    display: none;
  }

  .note-inner h2 {
    font-size: 29px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .article-header {
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .article-heading {
    text-align: left;
  }

  .article-heading h1 {
    margin-top: 12px;
    font-size: 39px;
    line-height: 1.08;
  }

  .dek {
    font-size: 19px;
  }

  .byline {
    justify-content: flex-start;
    gap: 7px 16px;
  }

  .byline span + time::before,
  .byline time + span::before {
    display: none;
  }

  .article-hero {
    width: 100%;
  }

  .article-hero img {
    aspect-ratio: 3 / 2;
  }

  .article-hero figcaption {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .article-layout {
    display: block;
    padding-top: 38px;
    padding-bottom: 62px;
  }

  .article-aside {
    position: static;
    margin-bottom: 35px;
    padding: 16px 18px;
    border-left: 3px solid var(--copper);
    background: #efedef;
  }

  .aside-rule {
    display: none;
  }

  .article-body {
    font-size: 18px;
    line-height: 1.68;
  }

  .article-body .lead {
    font-size: 21px;
  }

  .article-body h2 {
    font-size: 29px;
  }

  .article-body h3 {
    font-size: 23px;
  }

  .article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  .related {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .category-hero-inner {
    min-height: 0;
    display: block;
    position: relative;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .category-hero h1 {
    padding-right: 62px;
    font-size: 40px;
  }

  .category-hero p {
    margin-top: 22px;
    font-size: 17px;
  }

  .category-count {
    position: absolute;
    top: 43px;
    right: 0;
    width: 58px;
    height: 58px;
    padding: 7px;
    font-size: 9px;
  }

  .category-list {
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .category-lead,
  .category-row {
    display: block;
    max-width: none;
    padding-bottom: 32px;
  }

  .category-lead .story-copy,
  .category-row .story-copy {
    padding-top: 17px;
  }

  .category-lead .story-copy h3 {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
