:root {
  --ink: #111111;
  --muted: #686868;
  --paper: #f5f1e9;
  --white: #ffffff;
  --line: #d8d2c7;
  --red: #e21c2a;
  --red-dark: #b30f1b;
  --navy: #0c1d32;
  --green: #0c713b;
  --yellow: #f2c94c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.has-dialog {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
}

.utility-bar {
  background: #101010;
  color: #d5d5d5;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.utility-center {
  color: #ffffff;
  font-weight: 700;
}

.utility-button {
  justify-self: end;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  padding: 7px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-bar {
  background: var(--red);
  color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.brand-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.brand strong {
  color: #111111;
  font-style: italic;
  font-size: 0.68em;
  letter-spacing: -0.06em;
}

.menu-button,
.edition-button {
  width: max-content;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-button span:first-child {
  font-size: 24px;
  line-height: 1;
}

.edition-button {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.68);
  padding: 11px 15px;
}

.edition-button:hover {
  background: #ffffff;
  color: var(--red);
}

.main-nav {
  background: #ffffff;
  border-bottom: 1px solid #cfcfcf;
}

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

.nav-inner a {
  display: grid;
  place-items: center;
  padding: 0 19px;
  border-left: 1px solid #e7e7e7;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-inner a:last-child {
  border-right: 1px solid #e7e7e7;
}

.nav-inner a:hover {
  background: #111111;
  color: #ffffff;
}

.breaking-strip {
  background: var(--navy);
  color: #ffffff;
}

.breaking-inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.breaking-inner p {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.live-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3344;
  box-shadow: 0 0 0 5px rgba(255, 51, 68, 0.14);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(255, 51, 68, 0);
  }
}

.lead-section {
  padding: 34px 0 48px;
}

.section-kicker {
  margin-bottom: 14px;
  padding-bottom: 10px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 4px solid var(--ink);
}

.section-kicker span,
.overline {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(310px, 0.8fr);
  gap: 22px;
}

.lead-story,
.side-story,
.news-card {
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(26, 20, 12, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.lead-story:hover,
.side-story:hover,
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(26, 20, 12, 0.12);
}

.story-hitbox {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.lead-visual {
  position: relative;
  aspect-ratio: 1.9;
  overflow: hidden;
  background: #0b1930;
}

.lead-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.photo-credit {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-copy {
  padding: 24px 28px 27px;
}

.category {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-copy h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.047em;
}

.lead-copy > p {
  max-width: 760px;
  margin: 16px 0 20px;
  color: #4e4e4e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.45;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #777777;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-meta strong {
  margin-left: auto;
  color: var(--ink);
}

.lead-side {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 22px;
}

.side-story .story-hitbox {
  display: grid;
  grid-template-columns: 128px 1fr;
}

.side-visual,
.card-visual,
.article-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.side-visual::before,
.card-visual::before,
.article-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 35%, rgba(255, 255, 255, 0.15)),
    repeating-linear-gradient(
      -45deg,
      transparent 0 16px,
      rgba(255, 255, 255, 0.06) 16px 17px
    );
}

.side-visual span,
.card-visual span,
.article-visual > span {
  color: #ffffff;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 950;
  letter-spacing: -0.08em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

.side-visual small,
.card-visual small,
.article-visual small {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.theme-check,
.theme-check .side-visual,
.theme-check.card-visual,
.theme-check.article-visual {
  background: linear-gradient(145deg, #e11c2a, #730812);
}

.theme-tri,
.theme-tri .side-visual,
.theme-tri.card-visual,
.theme-tri.article-visual {
  background: linear-gradient(145deg, #088044, #063d25);
}

.theme-star,
.theme-star.card-visual,
.theme-star.article-visual {
  background: linear-gradient(145deg, #6925b6, #e21c7a);
}

.theme-boxing,
.theme-boxing.card-visual,
.theme-boxing.article-visual {
  background: linear-gradient(145deg, #111111, #e21c2a);
}

.theme-agave,
.theme-agave.card-visual,
.theme-agave.article-visual {
  background: linear-gradient(145deg, #236b64, #e2ae42);
}

.theme-money,
.theme-money.card-visual,
.theme-money.article-visual {
  background: linear-gradient(145deg, #142d52, #0e7b59);
}

.theme-stadium,
.theme-stadium.card-visual,
.theme-stadium.article-visual {
  background: linear-gradient(145deg, #07152a, #225998);
}

.side-copy {
  padding: 19px 18px 18px;
}

.side-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.side-copy p {
  margin: 10px 0;
  color: #666666;
  font-size: 12px;
  line-height: 1.45;
}

.read-link {
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.latest-section {
  padding: 8px 0 64px;
}

.section-heading {
  margin-bottom: 23px;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 5px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 28px;
}

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

.card-visual {
  aspect-ratio: 1.65;
}

.card-copy {
  padding: 19px 20px 20px;
}

.card-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.card-copy > p {
  margin: 12px 0 18px;
  color: #626262;
  font-size: 13px;
  line-height: 1.5;
}

.story-meta.compact {
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
}

.trending-panel {
  position: sticky;
  top: 18px;
  background: #ffffff;
  border-top: 5px solid var(--red);
  box-shadow: 0 14px 40px rgba(26, 20, 12, 0.07);
}

.trending-title {
  padding: 18px 19px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trending-title > span {
  color: var(--red);
  font-size: 25px;
  font-weight: 900;
}

.trending-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.trending-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trending-panel li {
  border-top: 1px solid #e6e6e6;
}

.trending-panel li button {
  width: 100%;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.trending-panel li button:hover {
  background: #f6f3ed;
}

.trending-panel li span {
  color: var(--red);
  font-size: 18px;
  font-weight: 950;
}

.trending-panel li strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.25;
}

.truth-card {
  padding: 22px;
  background: #141414;
  color: #ffffff;
}

.truth-card > span {
  color: #ff5260;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.truth-card h3 {
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.1;
}

.truth-card p {
  margin: 0;
  color: #b9b9b9;
  font-size: 12px;
  line-height: 1.5;
}

.promise-section {
  margin-bottom: 64px;
  padding: 34px;
  display: grid;
  grid-template-columns: 150px 1fr 0.8fr;
  align-items: center;
  gap: 30px;
  background: var(--red);
  color: #ffffff;
}

.promise-label {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.promise-copy h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 49px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.promise-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.55;
}

.promise-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.promise-stats div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.promise-stats strong,
.promise-stats span {
  display: block;
}

.promise-stats strong {
  font-size: 36px;
  letter-spacing: -0.05em;
}

.promise-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.newsletter-section {
  margin-bottom: 70px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 50px;
  background: var(--navy);
  color: #ffffff;
}

.newsletter-section h2 {
  max-width: 620px;
  margin: 7px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.newsletter-section > div > p {
  margin: 0;
  color: #b8c3d0;
}

.newsletter-section form > label,
.search-panel > label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.form-row input {
  min-width: 0;
  border: 0;
  padding: 15px 16px;
  outline: none;
}

.form-row input:focus {
  box-shadow: inset 0 0 0 3px var(--yellow);
}

.form-row button {
  border: 0;
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-section form small {
  display: block;
  margin-top: 8px;
  color: #8fa0b2;
}

.success-message {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  color: var(--ink);
}

.success-message > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
}

.success-message p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 48px 0 20px;
  background: #111111;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 40px;
}

.footer-brand {
  color: #ffffff;
  font-size: 34px;
}

.footer-brand strong {
  color: var(--red);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid p {
  max-width: 320px;
  margin: 0;
  color: #999999;
  font-size: 12px;
  line-height: 1.5;
}

.footer-grid > div > strong {
  margin-bottom: 5px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  color: #bbbbbb;
  font-size: 12px;
}

.copyright {
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #333333;
  color: #777777;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-body {
  background: #eee9df;
}

.legal-header {
  background: var(--red);
  color: #ffffff;
}

.legal-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .brand {
  font-size: 46px;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-nav a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  background: #ffffff;
  color: var(--red);
}

.legal-hero {
  padding: 68px 0 42px;
  background: #111111;
  color: #ffffff;
}

.legal-hero .overline {
  color: #ff5361;
}

.legal-hero h1 {
  max-width: 920px;
  margin: 8px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: #bcbcbc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
}

.legal-updated {
  display: inline-block;
  margin-top: 24px;
  color: #8d8d8d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-layout {
  padding: 48px 0 72px;
  display: grid;
  grid-template-columns: 220px minmax(0, 800px);
  align-items: start;
  justify-content: center;
  gap: 42px;
}

.legal-toc {
  position: sticky;
  top: 24px;
  padding: 20px;
  background: #ffffff;
  border-top: 4px solid var(--red);
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid #ece7de;
  color: #555555;
  font-size: 12px;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--red);
}

.legal-content {
  padding: clamp(26px, 5vw, 54px);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(26, 20, 12, 0.07);
}

.legal-content section + section {
  margin-top: 42px;
  padding-top: 35px;
  border-top: 1px solid #ddd7cd;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 24px 0 9px;
  font-size: 14px;
}

.legal-content p,
.legal-content li {
  color: #484848;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 15px;
}

.legal-content ul {
  margin: 12px 0 18px;
  padding-left: 22px;
}

.legal-content a,
.contact-card a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 26px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--red);
  background: #f4f1eb;
}

.legal-callout strong {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

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

.contact-card {
  min-height: 190px;
  padding: 25px;
  border: 1px solid #ddd7cd;
  background: #faf8f4;
}

.contact-card.full {
  grid-column: 1 / -1;
}

.contact-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2,
.contact-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
}

.contact-card address,
.contact-card p {
  margin: 0;
  color: #535353;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
}

.legal-footer {
  padding: 26px 0;
  background: #111111;
  color: #898989;
  font-size: 11px;
}

.legal-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-footer a {
  color: #d4d4d4;
}

.search-layer,
.article-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 6, 9, 0.87);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.search-layer {
  display: grid;
  place-items: start center;
  padding: 8vh 20px;
}

.search-panel {
  width: min(850px, 100%);
  padding: clamp(25px, 5vw, 52px);
  background: var(--paper);
}

.search-top {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.search-top h2 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.close-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #b5b0a8;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.close-button:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

.search-panel > input {
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 4px solid var(--ink);
  background: transparent;
  outline: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 4vw, 34px);
}

.search-panel > input:focus {
  border-color: var(--red);
}

.search-results {
  max-height: 45vh;
  margin-top: 24px;
  overflow-y: auto;
}

.search-results button {
  width: 100%;
  padding: 16px 2px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.search-results button:hover {
  color: var(--red);
}

.search-results span {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-results strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.25;
}

.article-layer {
  padding: 32px 20px;
}

.article-panel {
  position: relative;
  width: min(940px, 100%);
  margin: 0 auto;
  background: #ffffff;
}

.article-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.article-visual {
  height: 290px;
}

.article-visual > span {
  font-size: clamp(85px, 18vw, 180px);
}

.article-content {
  max-width: 760px;
  margin-inline: auto;
  padding: 42px 28px 56px;
}

.article-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 61px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.article-deck {
  margin: 20px 0;
  color: #555555;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px !important;
  line-height: 1.45 !important;
}

.byline {
  margin: 0 0 28px;
  padding: 13px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  color: #777777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-content > p:not(.article-deck) {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.68;
}

.article-content > p:not(.article-deck):first-of-type::first-letter {
  float: left;
  margin: 7px 8px 0 0;
  color: var(--red);
  font-size: 60px;
  font-weight: 800;
  line-height: 0.75;
}

#article-body > p {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.68;
}

#article-body > p:first-child::first-letter {
  float: left;
  margin: 7px 8px 0 0;
  color: var(--red);
  font-size: 60px;
  font-weight: 800;
  line-height: 0.75;
}

.fact-box {
  margin: 30px 0;
  padding: 23px 25px;
  border-left: 6px solid var(--red);
  background: #f4f1eb;
}

.fact-box span,
.fact-box strong {
  display: block;
}

.fact-box span {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.fact-box strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.35;
}

.article-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.article-actions button {
  border: 0;
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  padding: 14px 18px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-actions a {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .nav-inner a {
    padding-inline: 12px;
  }

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

  .lead-side {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .side-story .story-hitbox {
    grid-template-columns: 115px 1fr;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .trending-panel {
    position: static;
  }

  .promise-section {
    grid-template-columns: 120px 1fr;
  }

  .promise-stats {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 1220px);
  }

  .utility-inner {
    grid-template-columns: 1fr auto;
  }

  .utility-center {
    display: none;
  }

  .brand-inner {
    min-height: 76px;
  }

  .menu-button span:last-child,
  .edition-button {
    display: none;
  }

  .brand {
    font-size: 43px;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .nav-inner {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-inner a {
    min-height: 48px;
    border-bottom: 1px solid #eeeeee;
  }

  .breaking-inner {
    width: 100%;
    padding-inline: 12px;
  }

  .lead-section {
    padding-top: 24px;
  }

  .section-kicker p {
    display: none;
  }

  .lead-visual {
    aspect-ratio: 1.2;
  }

  .lead-visual img {
    object-position: 60% center;
  }

  .lead-copy {
    padding: 20px;
  }

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

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

  .story-meta {
    flex-wrap: wrap;
    gap: 7px 13px;
  }

  .story-meta strong {
    width: 100%;
    margin: 5px 0 0;
  }

  .lead-side,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .side-story .story-hitbox {
    grid-template-columns: 105px 1fr;
  }

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

  .section-heading > p {
    display: none;
  }

  .promise-section {
    padding: 25px;
    grid-template-columns: 1fr;
  }

  .promise-label {
    width: auto;
    height: auto;
    display: block;
    border: 0;
    text-align: left;
  }

  .promise-stats {
    grid-column: auto;
  }

  .newsletter-section {
    padding: 28px 22px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row button {
    min-height: 48px;
  }

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

  .copyright {
    flex-direction: column;
    gap: 8px;
  }

  .article-layer {
    padding: 0;
  }

  .article-visual {
    height: 210px;
  }

  .article-content {
    padding: 30px 20px 42px;
  }

  .article-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-layer {
    padding: 0;
  }

  .search-panel {
    min-height: 100vh;
  }

  .search-results button {
    grid-template-columns: 80px 1fr;
  }

  .legal-header-inner {
    min-height: 78px;
  }

  .legal-header .brand {
    font-size: 38px;
  }

  .legal-nav a:not([aria-current="page"]) {
    display: none;
  }

  .legal-hero {
    padding: 48px 0 34px;
  }

  .legal-layout {
    padding: 26px 0 48px;
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card.full {
    grid-column: auto;
  }

  .legal-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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