:root {
  --bg:#fff;
  --surface:#f5f6f8;
  --ink:#14212e;
  --muted:#65717c;
  --line:#dde2e6;
  --brand:#bd2434;
  --brand-hover:#981927;
  --navy:#152e42;
  --serif:Georgia,'Times New Roman',serif;
  --sans:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
  --radius:8px
}

* {
  box-sizing:border-box
}

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

body {
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font:16px/1.6 var(--sans);
  overflow-wrap:break-word
}

body[data-theme=dark] {
  --bg:#101820;
  --surface:#192630;
  --ink:#edf1f3;
  --muted:#abb7c1;
  --line:#35434e;
  --navy:#dbe9f5;
  --brand:#ef7d88;
  --brand-hover:#ff9fa8;
  color-scheme:dark
}

a {
  color:inherit;
  text-decoration:none;
  font-size: 20px
}

a:hover {
  color:var(--brand)
}

button,input,select,textarea {
  font:inherit
}

button,a,input,select,textarea,summary {
  -webkit-tap-highlight-color:transparent
}

button {
  cursor:pointer
}

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

button,select,input,textarea {
  max-width:100%
}

input,select,textarea {
  width:100%;
  min-width:0;
  border:1px solid var(--line);
  background:var(--bg);
  color:var(--ink);
  border-radius:6px;
  padding:11px 12px;
  line-height:1.45
}

textarea {
  resize:vertical
}

input[type=checkbox] {
  width:18px;
  height:18px;
  flex:0 0 18px;
  accent-color:var(--brand);
  margin:3px 0
}

label {
  display:block;
  font-size:.9rem;
  font-weight:550;
  margin:0 0 18px
}

label input,label select,label textarea {
  margin-top:7px;
  font-weight:400
}

label .muted {
  font-weight:400
}

input:focus,select:focus,textarea:focus {
  border-color:var(--brand)
}

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

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

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

h1,h2,h3 {
  line-height:1.15;
  text-wrap:pretty
}

h1 {
  font-size:clamp(2rem,4.4vw,4.4rem);
  letter-spacing:-.04em
}

h2 {
  font-size:1.65rem;
  letter-spacing:-.025em
}

h3 {
  font-size:1.25rem;
  letter-spacing:-.02em
}

p {
  margin-bottom:1.1em
}

hr {
  border:0;
  border-top:1px solid var(--line);
  margin:30px 0
}

.container {
  width:min(1320px,calc(100% - 80px));
  margin-inline:auto
}

.topline {
  border-bottom:1px solid var(--line);
  font-size:.75rem;
  letter-spacing:.015em;
  color:var(--muted)
}

.topline .container {
  display:flex;
  justify-content:space-between;
  gap:20px;
  min-height:36px;
  align-items:center
}

.topline a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:26px;
  padding:5px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--surface);
  color:var(--ink);
  font-size:.7rem;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.02em;
  transition:background .15s,border-color .15s,color .15s
}

.topline a:hover {
  background:var(--bg);
  border-color:var(--ink)
}

.masthead {
  display:grid;
  grid-template-columns:1fr 2fr 1fr;
  gap:16px;
  align-items:center;
  min-height:134px
}

.brand {
  font-family:var(--sans);
  font-size:clamp(2rem,4.2vw,3.6rem);
  font-weight:900;
  letter-spacing:-.065em;
  line-height:1;
  display:block;
  text-align:center;
  white-space:nowrap
}

.brand-red {
  color:var(--brand)
}

.brand>span {
  position:relative
}

.brand i {
  display:inline-block;
  width:8px;
  height:8px;
  background:var(--brand);
  margin-left:5px
}

.brand small {
  display:block;
  font-size:.68rem;
  letter-spacing:.13em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--muted);
  margin-top:13px;
  white-space:normal;
  line-height:1.5
}

.brand img {
  width:auto;
  max-height:78px;
  max-width:100%;
  margin:auto
}

.logo-dark {
  display:none
}

body[data-theme=dark] .brand:has(.logo-dark) .logo-light {
  display:none
}

body[data-theme=dark] .brand .logo-dark {
  display:block
}

.header-tools {
  display:flex;
  align-items:center;
  gap:8px
}

.icon-button {
  display:inline-grid;
  place-items:center;
  min-width:44px;
  min-height:44px;
  padding:8px;
  border:1px solid transparent;
  background:transparent;
  color:var(--ink);
  border-radius:6px;
  font-size:1.2rem;
  line-height:1.2
}

.icon-button svg {
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round
}

.icon-button:hover {
  background:var(--surface);
  border-color:var(--line)
}

.button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  padding:12px 22px;
  min-height:44px;
  border:1px solid transparent;
  background:var(--brand);
  color:#fff;
  font-weight:650;
  font-size:.875rem;
  line-height:1.4;
  border-radius:4px;
  text-align:center;
  transition:background .15s
}

.button:hover {
  color:#fff;
  background:var(--brand-hover)
}

.button.secondary {
  background:var(--bg);
  border:1px solid var(--line);
  color:var(--ink)
}

.button.secondary:hover {
  border-color:var(--ink);
  background:var(--surface)
}

.button.danger {
  background:#b82332;
  color:#fff
}

.subscribe-top {
  justify-self:end
}

.desktop-nav {
  display:flex;
  justify-content:center;
  align-items:stretch;
  gap:25px;
  border-block:1px solid var(--line);
  position:relative;
  flex-wrap:wrap
}

.desktop-nav>a,.more-nav summary {
  padding:14px 0;
  font-size:.875rem;
  font-weight:600;
  position:relative;
  display:block;
  cursor:pointer
}

.desktop-nav>a[aria-current=page]:before {
  content:'';
  position:absolute;
  top:-1px;
  left:0;
  right:0;
  height:3px;
  background:var(--brand)
}

.more-nav {
  position:relative
}

.more-nav summary:after {
  content:'⌄';
  margin-left:8px
}

.more-nav summary::marker {
  content:''
}

.more-nav div {
  position:absolute;
  right:0;
  top:100%;
  z-index:10;
  padding:12px;
  background:var(--bg);
  border:1px solid var(--line);
  min-width:180px;
  box-shadow:0 10px 30px #0001
}

.more-nav a {
  display:block;
  padding:9px 12px;
  font-size:.875rem
}

.main-content {
  padding-top:26px;
  padding-bottom:68px
}

.edition-note {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.75rem;
  color:var(--muted);
  margin-bottom:24px
}

.edition-note>span:last-child {
  margin-left:auto
}

.edition-dot {
  width:6px;
  height:6px;
  display:inline-block;
  background:var(--brand);
  border-radius:50%
}

.hero-grid {
  display:grid;
  grid-template-columns:minmax(0,.76fr) minmax(0,2.3fr) minmax(0,1.08fr);
  gap:26px
}

.hero-secondary {
  display:flex;
  flex-direction:column;
  gap:30px;
  border-right:1px solid var(--line);
  padding-right:22px
}

.story-card {
  min-width:0
}

.story-image {
  display:block;
  overflow:hidden;
  margin-bottom:14px;
  background:var(--surface)
}

.story-image img {
  width:100%;
  aspect-ratio:1.43;
  object-fit:cover;
  transition:transform .3s
}

.story-card:hover .story-image img {
  transform:scale(1.015)
}

.category-label {
  display:inline-block;
  color:var(--brand);
  font-size:.72rem;
  font-weight:750;
  text-transform:uppercase;
  letter-spacing:.09em;
  margin-bottom:8px
}

.story-card h3,
.feature-card h3,
.small-feature-grid .story-card h3,
.latest-item h3,
.archive-feature h3,
.article-sidebar .story-card h3,
.adjacent-stories a,
.archive-sidebar h3 {
  font-family:var(--sans);
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.12;
  text-wrap:balance;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.story-card h3 {
  font-size:1.35rem;
  margin-bottom:10px;
}

.story-card p {
  color:var(--muted);
  font-size:.875rem;
  line-height:1.6;
  margin-top:10px;
  margin-bottom:0
}

.meta {
  color:var(--muted);
  font-size:.75rem;
  line-height:1.55
}

.meta span {
  padding-inline:5px
}

.meta a {
  font-weight:550;
  color:var(--ink)
}

.hero-secondary .story-card h3 {
  font-size:1.23rem
}

.hero-secondary .story-image img {
  aspect-ratio:1.34
}

.lead-image {
  display:block;
  position:relative
}

.lead-image img {
  width:100%;
  aspect-ratio:1.37;
  object-fit:cover
}

.image-badge {
  position:absolute;
  bottom:0;
  left:0;
  background:var(--brand);
  color:white;
  padding:7px 14px;
  font-size:.7rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700
}

.lead-copy {
  text-align:center;
  padding:19px 6px 0
}

.lead-copy h1 {
  font-family:var(--sans);
  font-weight:900;
  font-size:clamp(2rem,3vw,3.15rem);
  letter-spacing:-.045em;
  line-height:1.06;
  margin:1px 0 13px;
  text-wrap:balance;
  overflow-wrap:anywhere;
  word-break:break-word
}

.lead-copy>p {
  font-size:.9375rem;
  color:var(--muted);
  line-height:1.6;
  margin-bottom:15px
}

.latest-rail {
  border-left:1px solid var(--line);
  padding-left:22px;
  min-width:0
}

.section-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  border-bottom:1px solid var(--line);
  padding-bottom:12px;
  margin-bottom:23px
}

.section-heading h2 {
  font:750 .8rem/1.4 var(--sans);
  text-transform:uppercase;
  letter-spacing:.1em;
  margin:0
}

.section-heading>a {
  font-size:.8rem;
  color:var(--muted)
}

.section-heading>a:hover {
  color:var(--brand)
}

.latest-rail .section-heading {
  margin-bottom:0
}

.latest-item {
  display:grid;
  grid-template-columns:20px minmax(0,1fr) 58px;
  gap:10px;
  padding:18px 0;
  border-bottom:1px solid var(--line)
}

.story-number {
  color:var(--brand);
  font:italic 1rem var(--serif)
}

.latest-item h3 {
  font-size:.91rem;
  line-height:1.25;
  letter-spacing:-.015em;
  margin-bottom:8px
}

.latest-item img {
  width:58px;
  height:65px;
  object-fit:cover
}

.latest-item .meta {
  font-size:.7rem
}

.text-link {
  display:inline-flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  font-size:.875rem;
  font-weight:600;
  padding:10px 0;
  text-decoration:underline;
  text-decoration-color:var(--line);
  text-underline-offset:5px
}

.latest-rail>.text-link {
  width:100%;
  margin-top:8px
}

.category-section {
  margin-top:50px
}

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

.feature-section {
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,1fr);
  gap:34px
}

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

.feature-card .story-image img {
  aspect-ratio:1.48
}

.feature-card h3 {
  font-size:2.45rem
}

.small-feature-grid .story-card h3 {
  font-size:1.14rem
}

.small-feature-grid .story-card p {
  font-size:.825rem
}

.author-line {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
  font-size:.8rem
}

.avatar-initial {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  flex:0 0 44px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:50%;
  font:600 1.05rem var(--serif);
  color:var(--ink)
}

.avatar-initial.small {
  width:34px;
  height:34px;
  flex-basis:34px;
  font-size:.875rem
}

.avatar-initial.large {
  width:70px;
  height:70px;
  font-size:1.8rem
}

.newsletter-band {
  margin-top:65px;
  padding:48px 55px;
  background:var(--surface);
  border-top:3px solid var(--brand);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px
}

.eyebrow {
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:650;
  color:var(--brand);
  margin-bottom:12px
}

.newsletter-band h2 {
  font:2.65rem/1.12 var(--serif);
  letter-spacing:-.035em;
  margin-bottom:15px
}

.newsletter-band p:last-child {
  margin:0;
  color:var(--muted)
}

.site-footer {
  border-top:1px solid var(--line);
  background:var(--surface);
  padding-top:52px
}

.footer-grid {
  display:grid;
  grid-template-columns:1.5fr .65fr .85fr 1.2fr;
  gap:55px
}

.footer-brand {
  font-size:2.1rem;
  text-align:left;
  margin-bottom:20px
}

.footer-grid p {
  font-size:.86rem;
  color:var(--muted)
}

.footer-grid h2 {
  font:650 .85rem/1.5 var(--sans);
  letter-spacing:0;
  margin-bottom:14px
}

.footer-grid>div>a:not(.brand):not(.button) {
  display:block;
  font-size:.8rem;
  margin-bottom:9px;
  min-height:24px
}

.footer-grid .button {
  margin-bottom:17px
}

.footer-bottom {
  margin-top:40px;
  border-top:1px solid var(--line);
  padding-block:20px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:.7rem;
  color:var(--muted)
}

.footer-bottom strong,.footer-bottom a {
  color:var(--brand)
}

.social-links {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:.8rem
}

.back-top {
  position:fixed;
  bottom:22px;
  right:22px;
  border:1px solid var(--line);
  background:var(--bg);
  box-shadow:0 3px 12px #0001;
  z-index:5
}

.archive-header {
  padding:28px 0 35px;
  border-bottom:1px solid var(--line);
  margin-bottom:30px
}

.archive-header h1 {
  font-family:var(--sans);
  font-weight:900;
  letter-spacing:-.04em;
  margin-bottom:16px;
  max-width:950px;
  text-wrap:balance;
  overflow-wrap:anywhere;
  word-break:break-word
}

.archive-header>p:not(.eyebrow) {
  max-width:720px;
  color:var(--muted);
  font-size:1.05rem
}

.archive-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 270px;
  gap:50px
}

.archive-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px 25px
}

.archive-feature {
  grid-column:1/-1;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:0 28px
}

.archive-feature .story-image {
  grid-row:1/5
}

.archive-feature .category-label {
  align-self:end
}

.archive-feature h3 {
  font-size:1.9rem
}

.archive-sidebar h3 {
  font:600 1.15rem/1.3 var(--serif);
  margin-bottom:10px
}

.archive-sidebar>p {
  border-bottom:1px solid var(--line);
  padding-bottom:19px;
  margin-bottom:19px
}

.pagination {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  margin:35px 0 10px
}

.pagination a {
  display:grid;
  place-items:center;
  min-width:44px;
  min-height:44px;
  padding:5px 12px;
  border:1px solid var(--line);
  font-size:.875rem
}

.pagination a[aria-current=page] {
  background:var(--brand);
  color:#fff;
  border-color:var(--brand)
}

.search-form {
  max-width:760px;
  margin-bottom:40px
}

.input-row {
  display:flex;
  gap:12px
}

.input-row input {
  flex:1;
  min-width:0;
  margin:0
}

.breadcrumbs {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:.78rem;
  color:var(--muted);
  margin:10px 0 30px
}

.article-header {
  max-width:1000px;
  margin:0 auto 35px;
  text-align:center
}

.article-header h1 {
  font-family:var(--sans);
  font-weight:900;
  margin:16px 0 20px;
  font-size:clamp(2.3rem,4.6vw,4.7rem);
  line-height:1.04;
  letter-spacing:-.045em;
  text-wrap:balance;
  overflow-wrap:anywhere;
  word-break:break-word
}

.article-header .subtitle {
  color:var(--muted);
  font-size:1.2rem;
  line-height:1.5;
  max-width:820px;
  margin:0 auto 25px
}

.article-labels {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:9px
}

.article-labels .category-label {
  margin:0
}

.badge {
  background:var(--surface);
  padding:4px 9px;
  font-size:.67rem;
  text-transform:uppercase;
  font-weight:750;
  letter-spacing:.06em
}

.badge.is_breaking,.badge.is_live {
  background:var(--brand);
  color:white
}

.article-byline {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  text-align:left;
  font-size:.8rem
}

.article-byline .avatar {
  width:44px;
  height:44px;
  object-fit:cover;
  border-radius:50%
}

.article-byline a {
  font-weight:700
}

.article-photo {
  margin:0 0 35px
}

.article-photo>img {
  width:100%;
  max-height:680px;
  object-fit:cover;
  aspect-ratio:1.95
}

.article-photo figcaption {
  color:var(--muted);
  font-size:.75rem;
  margin-top:10px;
  text-align:right
}

.article-photo figcaption a {
  text-decoration:underline
}

.article-layout {
  display:grid;
  grid-template-columns:minmax(0,800px) 260px;
  justify-content:center;
  gap:70px
}

.article-main {
  min-width:0
}

.article-excerpt {
  font:1.35rem/1.65 var(--serif);
  font-weight:600
}

.article-body {
  font:1.16rem/1.9 var(--serif);
  --reading-size:1.16rem;
  font-size:var(--reading-size);
  overflow-wrap:anywhere
}

.article-body p {
  margin-bottom:1.45em
}

.share-bar {
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  align-items:center;
  padding:12px 0;
  border-block:1px solid var(--line);
  margin:25px 0 10px;
  font-size:.75rem
}

.share-bar>span {
  font-weight:600;
  margin-right:6px
}

.share-bar a,.share-bar button {
  padding:8px 12px;
  color:var(--ink);
  font-size:.75rem;
  border:1px solid var(--line);
  background:transparent;
  border-radius:30px;
  min-height:36px
}

.share-bar [aria-pressed=true] {
  border-color:var(--brand);
  color:var(--brand)
}

.reading-controls {
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:5px;
  font-size:.75rem;
  margin-bottom:24px;
  color:var(--muted)
}

.reading-controls .icon-button {
  font-size:.85rem
}

.tags {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:30px 0
}

.tags a {
  background:var(--surface);
  padding:6px 12px;
  font-size:.8rem
}

.author-box {
  display:flex;
  gap:20px;
  background:var(--surface);
  padding:28px;
  margin:35px 0
}

.author-box h2 {
  font-size:1.2rem;
  margin-bottom:12px
}

.author-box p {
  font-size:.9rem;
  color:var(--muted)
}

.adjacent-stories {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin:35px 0;
  border-block:1px solid var(--line);
  padding:25px 0
}

.adjacent-stories a {
  display:flex;
  flex-direction:column;
  gap:8px;
  font:1.15rem/1.35 var(--serif)
}

.article-sidebar>.story-card {
  margin-bottom:28px
}

.article-sidebar .story-card h3 {
  font-size:1.1rem
}

.article-sidebar .story-image img {
  aspect-ratio:1.8
}

.small-newsletter {
  background:var(--surface);
  padding:25px;
  border-top:2px solid var(--brand)
}

.comments {
  margin-top:45px
}

.comments>p {
  font-size:.875rem;
  color:var(--muted)
}

.comment {
  border-bottom:1px solid var(--line);
  padding:15px 0;
  margin-bottom:20px
}

.comment .meta {
  display:block;
  margin:5px 0 12px
}

.comment p {
  font-size:.95rem
}

.form-page {
  max-width:780px;
  margin:0 auto
}

.form-page .archive-header {
  text-align:center;
  border:none
}

.form-page .archive-header h1 {
  font-size:clamp(2.4rem,4.5vw,3.5rem)
}

.panel {
  background:var(--bg);
  border:1px solid var(--line);
  padding:30px;
  border-radius:var(--radius)
}

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

.span-all {
  grid-column:1/-1
}

.check-label {
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:400;
  font-size:.875rem;
  flex-wrap:wrap
}

.check-label input {
  margin-top:3px
}

.check-label>a {
  color:var(--brand)
}

.muted {
  color:var(--muted);
  font-size:.875rem
}

.static-page {
  max-width:800px;
  margin:auto
}

.author-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:25px
}

.author-avatar {
  width:85px;
  height:85px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:20px
}

.author-card h2 {
  font-family:var(--sans);
  font-weight:800;
  letter-spacing:-.03em;
  font-size:1.6rem;
  margin-top:20px;
  text-wrap:balance;
  overflow-wrap:anywhere;
  word-break:break-word
}

.author-card p {
  color:var(--muted);
  font-size:.9rem
}

.credit-image {
  aspect-ratio:1.5;
  object-fit:cover;
  width:100%;
  margin-bottom:20px
}

.empty-state {
  text-align:center;
  padding:65px 20px
}

.empty-state h1,.empty-state h2 {
  font-family:var(--serif)
}

.empty-state p {
  color:var(--muted);
  max-width:550px;
  margin:0 auto 24px
}

.empty-state .button {
  margin-top:4px
}

.error-page {
  min-height:40vh
}

.notice {
  padding:16px 19px;
  background:var(--surface);
  border:1px solid var(--line);
  border-left:3px solid #466a8b;
  border-radius:4px;
  margin-bottom:24px;
  font-size:.875rem
}

.notice a {
  color:var(--brand);
  text-decoration:underline
}

.notice.success {
  background:#eef8f3;
  border-color:#c5e8d4;
  color:#235e40
}

.notice.error {
  background:#fff1f1;
  border-color:#f3c0c0;
  color:#85252d
}

.notice ul {
  margin-bottom:0
}

.demo-notice {
  font-size:.8rem
}

.ad-slot {
  margin:28px auto;
  text-align:center;
  max-width:100%;
  overflow:hidden
}

.ad-slot>span {
  display:block;
  font:10px/2 var(--sans);
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted)
}

.ad-content {
  max-width:100%;
  overflow:hidden
}

.ad-content img,.ad-content iframe {
  max-width:100%
}

.ad-content img {
  margin:auto
}

.ad-content>ins {
  max-width:100%
}

dialog {
  color:var(--ink);
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:8px;
  padding:28px;
  max-width:calc(100vw - 32px);
  max-height:calc(100dvh - 32px)
}

dialog::backdrop {
  background:#10212dc4;
  backdrop-filter:blur(3px)
}

.drawer {
  margin:0;
  height:100dvh;
  max-height:none;
  width:370px;
  border-radius:0;
  padding:25px 28px;
  border:0;
  max-width:90vw
}

.drawer nav {
  display:flex;
  flex-direction:column;
  margin:22px 0
}

.drawer nav a {
  padding:11px 0;
  border-bottom:1px solid var(--line);
  font-size:.95rem
}

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

.dialog-heading strong {
  font-size:1.1rem
}

.search-dialog {
  width:min(680px,calc(100vw - 24px));
  max-width:calc(100vw - 24px)
}

.search-dialog input[type=search],
.search-dialog .input-row input {
  display:block;
  width:100%;
  min-height:44px;
  height:44px;
  padding:0 14px;
  line-height:1.2;
  font-size:1rem;
  box-sizing:border-box
}

.search-dialog input[type=search]::placeholder {
  line-height:1.2;
  opacity:1
}

.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
}

.suggestions {
  list-style:none;
  padding:0;
  margin:14px 0 0
}

.suggestions a {
  display:block;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  font-size:.9rem
}

.toast {
  position:fixed;
  bottom:25px;
  left:50%;
  transform:translateX(-50%) translateY(100px);
  background:var(--ink);
  color:var(--bg);
  padding:12px 22px;
  border-radius:8px;
  box-shadow:0 5px 20px #0002;
  z-index:100;
  opacity:0;
  transition:.2s;
  max-width:calc(100vw - 40px);
  font-size:.875rem
}

.toast.visible {
  transform:translateX(-50%);
  opacity:1
}

.text-button {
  padding:8px 0;
  min-height:36px;
  background:transparent;
  border:0;
  color:var(--ink);
  font-size:.875rem;
  text-decoration:underline;
  text-underline-offset:4px
}

.danger-text {
  color:#b82332
}

.button-row {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center
}

.full {
  width:100%
}

.grow {
  flex:1;
  min-width:160px
}

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

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

.skip-link {
  position:fixed;
  top:-100px;
  left:15px;
  background:var(--ink);
  color:var(--bg);
  padding:10px 20px;
  z-index:200
}

.skip-link:focus {
  top:10px
}

.saved-remove {
  margin-top:12px
}

summary {
  cursor:pointer;
  font-size:.9rem;
  font-weight:600;
  padding:10px 0
}

details {
  margin-bottom:15px
}

blockquote {
  border-left:3px solid var(--line);
  padding-left:20px;
  margin-inline:0
}

@media(min-width:1800px) {
  .container {
    max-width:1480px
  }
  .lead-copy h1 {
    font-size:3.4rem
  }
  .lead-image img {
    aspect-ratio:1.42
  }
}

@media(max-width:1150px) {
  .container {
    width:calc(100% - 48px)
  }
  .desktop-nav {
    gap:20px
  }
  .hero-grid {
    gap:20px;
    grid-template-columns:minmax(0,.75fr) minmax(0,2fr) minmax(0,1fr)
  }
  .latest-rail {
    padding-left:16px
  }
  .hero-secondary {
    padding-right:16px
  }
  .latest-item {
    grid-template-columns:minmax(0,1fr) 53px
  }
  .story-number {
    display:none
  }
  .latest-item img {
    width:53px
  }
  .footer-grid {
    gap:30px
  }
  .article-layout {
    gap:35px;
    grid-template-columns:minmax(0,1fr) 220px
  }
  .archive-layout {
    gap:28px;
    grid-template-columns:minmax(0,1fr) 220px
  }
  .archive-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .lead-copy h1 {
    font-size:2.25rem
  }
}

@media(max-width:960px) {
  .desktop-nav {
    gap:15px
  }
  .desktop-nav>a,.more-nav summary {
    font-size:.8rem
  }
  .masthead {
    grid-template-columns:1fr 2.5fr 1fr;
    min-height:115px
  }
  .brand {
    font-size:2.6rem
  }
  .brand small {
    font-size:.58rem;
    letter-spacing:.08em
  }
  .header-tools {
    gap:0
  }
  .theme-button {
    display:none
  }
  .hero-grid {
    grid-template-columns:1fr 1fr
  }
  .lead-story {
    grid-column:1/-1;
    grid-row:1
  }
  .lead-image img {
    aspect-ratio:1.8
  }
  .lead-copy h1 {
    font-size:2.8rem;
    max-width:700px;
    margin-inline:auto
  }
  .hero-secondary {
    border-right:0;
    padding:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    align-content:start
  }
  .latest-rail {
    border-left:1px solid var(--line);
    padding-left:22px
  }
  .latest-item {
    grid-template-columns:minmax(0,1fr) 65px;
    padding:13px 0
  }
  .latest-item img {
    width:65px;
    height:62px
  }
  .story-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:32px 24px
  }
  .story-card h3 {
    font-size:1.55rem
  }
  .feature-section {
    grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
    gap:25px
  }
  .small-feature-grid {
    gap:22px 16px
  }
  .feature-card h3 {
    font-size:2rem
  }
  .small-feature-grid .story-card p {
    display:none
  }
  .footer-grid {
    grid-template-columns:1.4fr 1fr;
    gap:35px
  }
  .footer-grid>div:first-child {
    order:0
  }
  .footer-grid>div:last-child {
    order:1
  }
  .footer-grid>div:nth-child(2) {
    order:2
  }
  .footer-grid>div:nth-child(3) {
    order:3
  }
  .newsletter-band {
    padding:35px
  }
  .newsletter-band h2 {
    font-size:2.1rem
  }
  .article-layout {
    grid-template-columns:minmax(0,1fr)
  }
  .article-sidebar {
    display:none
  }
  .article-photo>img {
    aspect-ratio:1.5
  }
  .archive-layout {
    grid-template-columns:minmax(0,1fr)
  }
  .archive-sidebar {
    display:none
  }
  .author-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
}

@media(max-width:760px) {
  .container {
    width:calc(100% - 36px)
  }
  .topline .container>span:nth-child(2) {
    display:none
  }
  .topline {
    font-size:.69rem
  }
  .masthead {
    display:flex;
    gap:6px;
    justify-content:space-between;
    min-height:88px
  }
  .masthead>.brand {
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    font-size:1.9rem;
    max-width:calc(100% - 180px)
  }
  .brand small {
    display:none
  }
  .brand i {
    width:5px;
    height:5px;
    margin-left:3px
  }
  .header-tools {
    width:100%;
    justify-content:space-between
  }
  .header-tools .icon-button {
    padding:8px
  }
  .subscribe-top {
    display:none
  }
  .desktop-nav {
    display:none
  }
  .site-header {
    border-bottom:1px solid var(--line)
  }
  .main-content {
    padding-top:20px
  }
  .edition-note>span:last-child {
    font-size:.66rem
  }
  .lead-copy h1 {
    font-size:2.2rem
  }
  .lead-copy>p {
    font-size:.92rem
  }
  .lead-copy {
    padding-top:17px
  }
  .hero-grid {
    gap:30px 22px
  }
  .hero-secondary {
    grid-template-columns:1fr
  }
  .hero-secondary .story-image img {
    aspect-ratio:1.8
  }
  .hero-secondary .story-card h3 {
    font-size:1.25rem
  }
  .latest-rail {
    padding-left:18px
  }
  .latest-item {
    grid-template-columns:1fr;
    padding:14px 0
  }
  .latest-item>a {
    display:none
  }
  .category-section {
    margin-top:38px
  }
  .story-card h3 {
    font-size:1.35rem
  }
  .feature-section {
    grid-template-columns:1fr
  }
  .small-feature-grid .story-card p {
    display:block
  }
  .feature-card h3 {
    font-size:2rem
  }
  .newsletter-band {
    flex-direction:column;
    align-items:flex-start;
    padding:28px;
    gap:22px
  }
  .newsletter-band h2 {
    font-size:2rem
  }
  .footer-bottom {
    flex-direction:column;
    gap:6px
  }
  .article-header {
    margin-bottom:25px
  }
  .article-header h1 {
    font-size:2.6rem
  }
  .article-header .subtitle {
    font-size:1.04rem
  }
  .article-photo {
    margin-inline:-18px
  }
  .article-photo figcaption {
    margin-inline:18px;
    text-align:left
  }
  .share-bar {
    gap:7px
  }
  .share-bar a,.share-bar button {
    min-height:42px;
    font-size:.75rem
  }
  .article-body {
    --reading-size:1.1rem;
    line-height:1.8
  }
  .article-excerpt {
    font-size:1.2rem
  }
  .author-box {
    padding:20px;
    gap:15px
  }
  .panel {
    padding:24px
  }
  .archive-feature {
    display:block
  }
  .archive-feature h3 {
    font-size:1.7rem
  }
  .input-row {
    gap:8px
  }
  .input-row .button {
    padding-inline:15px
  }
  .brand img {
    max-height:52px
  }
  .author-grid {
    grid-template-columns:1fr
  }
}

@media(max-width:480px) {
  .masthead>.brand {
    font-size:1.7rem;
    max-width:calc(100% - 120px)
  }
  .edition-note {
    flex-wrap:wrap;
    gap:6px
  }
  .edition-note>span:last-child {
    display:block;
    width:100%;
    margin:0 0 0 14px
  }
  .hero-grid {
    display:flex;
    flex-direction:column
  }
  .lead-story {
    order:-1
  }
  .lead-image img {
    aspect-ratio:1.33
  }
  .lead-copy h1 {
    font-size:2.05rem
  }
  .hero-secondary {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .hero-secondary .story-card h3 {
    font-size:1.1rem
  }
  .hero-secondary .story-image img {
    aspect-ratio:1.25
  }
  .latest-rail {
    padding:0;
    border:0
  }
  .latest-item {
    grid-template-columns:24px minmax(0,1fr) 68px;
    gap:12px;
    padding:16px 0
  }
  .latest-item>a {
    display:block
  }
  .latest-item img {
    width:68px;
    height:65px
  }
  .story-number {
    display:block
  }
  .latest-item h3 {
    font-size:1rem
  }
  .story-grid,.archive-grid {
    grid-template-columns:1fr;
    gap:30px
  }
  .story-card h3 {
    font-size:1.5rem
  }
  .story-card p {
    font-size:.925rem
  }
  .story-image img {
    aspect-ratio:1.55
  }
  .small-feature-grid .story-card h3 {
    font-size:1.12rem
  }
  .small-feature-grid .story-card p {
    font-size:.82rem
  }
  .small-feature-grid .story-image img {
    aspect-ratio:1.15
  }
  .feature-card h3 {
    font-size:1.8rem
  }
  .newsletter-band {
    padding:26px 22px
  }
  .newsletter-band h2 {
    font-size:1.9rem
  }
  .footer-grid {
    grid-template-columns:1fr;
    text-align:center;
    gap:30px
  }
  .footer-grid>div {
    order:initial!important
  }
  .footer-brand {
    text-align:center
  }
  .footer-grid>div>a:not(.brand):not(.button) {
    padding:7px 0;
    margin:0
  }
  .footer-grid .social-links {
    justify-content:center
  }
  .footer-bottom {
    text-align:center
  }
  .footer-grid h2 {
    font-size:1rem
  }
  .footer-grid p {
    font-size:.9rem
  }
  .form-grid {
    grid-template-columns:1fr
  }
  .article-header h1 {
    font-size:2.15rem
  }
  .article-header {
    padding-top:8px
  }
  .article-byline {
    justify-content:flex-start
  }
  .breadcrumbs {
    font-size:.72rem
  }
  .article-photo>img {
    aspect-ratio:1.2
  }
  .article-header .subtitle {
    text-align:left
  }
  .adjacent-stories {
    grid-template-columns:1fr
  }
  .panel {
    padding:20px
  }
  .form-page .archive-header h1 {
    font-size:2.15rem
  }
  .archive-header h1 {
    font-size:2.4rem
  }
  .archive-header>p:not(.eyebrow) {
    font-size:1rem
  }
  .back-top {
    bottom:15px;
    right:12px
  }
  .section-heading>a {
    font-size:.75rem
  }
  .author-box {
    display:block
  }
  .author-box .avatar-initial {
    margin-bottom:16px
  }
  .dialog-heading {
    gap:10px
  }
  .search-dialog {
    width:min(100%,calc(100vw - 20px));
    max-width:calc(100vw - 20px);
    margin:12px auto auto;
    padding:0;
    border-radius:18px;
    overflow:hidden;
    background:#fff
  }
  .search-dialog .dialog-heading {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:16px 16px 12px;
    margin:0;
    border-bottom:1px solid var(--line)
  }
  .search-dialog .dialog-heading strong {
    font-size:1rem;
    font-weight:700;
    letter-spacing:-.02em
  }
  .search-dialog .icon-button[data-close] {
    display:inline-grid;
    place-items:center;
    width:32px;
    min-width:32px;
    height:32px;
    min-height:32px;
    padding:0;
    border:1px solid var(--line);
    border-radius:50%;
    background:var(--surface);
    color:var(--ink)
  }
  .search-dialog form {
    padding:14px 16px 16px
  }
  .search-dialog form > label {
    margin-bottom:12px
  }
  .search-dialog .input-row {
    display:flex;
    align-items:center;
    gap:10px;
    flex-direction:row;
    width:100%
  }
  .search-dialog .input-row input {
    flex:1 1 auto;
    min-width:0;
    width:auto;
    min-height:48px;
    height:48px;
    padding:0 18px;
    border-radius:999px;
    font-size:16px;
    line-height:1.2;
    border:1px solid var(--line)
  }
  .search-dialog .button {
    flex:0 0 auto;
    min-height:48px;
    padding:0 18px;
    border-radius:999px;
    white-space:nowrap
  }
  .search-dialog input[type=search],
  .search-dialog .input-row input {
    min-height:48px;
    height:48px;
    padding:0 18px;
    font-size:16px
  }
  .search-dialog input[type=search]::placeholder {
    line-height:1.2;
    vertical-align:middle
  }
  .empty-state {
    padding:45px 10px
  }
  .input-row {
    flex-wrap:wrap
  }
  .input-row input {
    flex-basis:150px
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior:auto!important;
    transition:none!important;
    animation:none!important
  }
}

@media print {
  .topline,.header-tools,.desktop-nav,.share-bar,.site-footer,.newsletter-band,.article-sidebar,.comments,.back-top,.reading-controls,.ad-slot {
    display:none
  }
  .container {
    width:100%
  }
  .article-layout {
    display:block
  }
  .article-body {
    font-size:12pt
  }
  .article-header h1 {
    font-size:28pt
  }
}
