/* Publica reference: ivory paper, fine rules, Libre Baskerville / Inter, full-bleed cover. */
:root {
  --paper: #fcfbf7;
  --ink: #191813;
  --muted: #706f68;
  --line: #deddd6;
  --panel: #f3f2ed;
  --accent: #fece00;
  --accent-ink: #fece00;
  --accent-soft: #fece00;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
  --gutter: 32px;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --paper: #181917;
  --ink: #eeeee7;
  --muted: #acafa4;
  --line: #383b34;
  --panel: #22241f;
  --accent: #fece00;
  --accent-ink: #fece00;
  --accent-soft: #fece00;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--panel);
}
html.inertia-scroll {
  scroll-behavior: auto;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--panel);
}
::-webkit-scrollbar-thumb {
  min-height: 48px;
  background: var(--accent);
  border: 3px solid var(--panel);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *:before,
html.theme-transitioning *:after {
  transition:
    background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    fill 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    stroke 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
button {
  border: 0;
  background: none;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  flex-shrink: 0;
}
.logo-color-filter {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0;
}
p {
  margin: 0 0 1em;
}
h1 {
  font-size: clamp(38px, 4.6vw, 68px);
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 20px;
}
ul,
ol {
  padding-left: 1.4em;
}
figure {
  margin: 0;
}
::selection {
  background: var(--accent-soft);
  color: #171813;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
.page-wrap {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.icon {
  display: inline-block;
  vertical-align: middle;
}
.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--paper);
  color: var(--ink);
  z-index: 1000;
  padding: 12px 24px;
}
.text-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
}
.icon-button {
  width: 44px;
  padding: 10px;
}
.text-button {
  font-size: 14px;
  padding: 0;
}
.muted {
  color: var(--muted);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 28px;
  background: var(--accent);
  color: #211900;
  min-height: 48px;
  padding: 10px 23px;
  font-size: 14px;
  font-weight: 500;
  transition:
    filter 0.2s,
    transform 0.2s;
}
.pill-button:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
}
/* Masthead and navigation */
.site-header {
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark {
  font-family: "Manufacturing Consent", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0;
}
.site-header .custom-logo {
  max-height: 68px;
  width: auto;
}
[data-theme="dark"] .site-header .custom-logo,
[data-theme="dark"] .site-footer .identity-logo {
  /* Convert the black artwork to white without altering the logo's original yellow. */
  filter: url("#ip-dark-logo-colors");
}
.theme-toggle {
  justify-self: end;
  width: 48px;
  height: 28px;
  min-height: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px;
}
.theme-toggle:before {
  content: "";
  position: absolute;
  inset: -9px -4px;
}
.theme-toggle .icon {
  width: 17px;
  height: 17px;
  position: relative;
  z-index: 1;
}
.theme-toggle .moon {
  opacity: 0;
}
.toggle-dot {
  position: absolute;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 1px 3px #0002;
  transition: transform 0.25s;
}
[data-theme="dark"] .toggle-dot {
  transform: translateX(20px);
}
[data-theme="dark"] .theme-toggle .moon {
  opacity: 1;
}
[data-theme="dark"] .theme-toggle .sun {
  opacity: 0;
}
.primary-nav {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-inline: var(--gutter);
  font-size: 13px;
}
.primary-nav > time {
  color: var(--muted);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  display: block;
  line-height: 1.35;
  padding-block: 14px;
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.primary-nav [aria-current="page"] {
  margin-inline: 0;
  padding-inline: 0;
  background: none !important;
  color: var(--accent);
}
.latest-link {
  white-space: nowrap;
}
.primary-nav .sub-menu {
  display: none;
}
/* Cover */
.hero {
  height: 700px;
  max-height: calc(100svh - 138px);
  min-height: 510px;
  position: relative;
  overflow: hidden;
  background: #252b2d;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.85s ease,
    visibility 0.85s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-image,
.hero-image img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image img {
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.025);
  transition: transform 7s linear;
}
.hero-slide.is-active .hero-image img {
  transform: scale(1);
}
.hero-shade {
  background: linear-gradient(
    180deg,
    #0b14250a 12%,
    #080d1440 40%,
    #05080cc7 100%
  );
}
.hero-content {
  position: absolute;
  left: var(--gutter);
  bottom: 48px;
  max-width: 910px;
  right: var(--gutter);
  display: block;
}
.hero-content h1 {
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.16;
  text-wrap: balance;
  max-width: 900px;
  letter-spacing: -0.035em;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 635px;
  color: #ffffffe0;
  margin: 24px 0 18px;
}
.hero-content time {
  font-size: 13px;
  color: #ffffffc7;
}
.hero-controls {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-dot {
  width: 52px;
  height: 44px;
  padding: 20px 0;
}
.hero-dot span {
  position: relative;
  display: block;
  height: 2px;
  background: #ffffff65;
  overflow: hidden;
}
.hero-dot span:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-dot.is-active span:after {
  animation: hero-progress 6.2s linear both;
}
.hero.is-paused .hero-dot.is-active span:after {
  animation-play-state: paused;
}
.hero-pause {
  width: 32px;
  min-height: 44px;
  font-size: 15px;
  opacity: 0.8;
}
.no-js .hero-slide:not(:first-child) {
  display: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}
.js .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Newspaper modules */
.latest-boxes {
  padding-top: 44px;
}
/* Sponsor: loghi di forme diversissime, quindi riquadri uguali e logo contenuto */
.sponsor-strip {
  margin: -28px 0 76px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.sponsor-strip .eyebrow {
  color: var(--muted);
  margin-bottom: 16px;
}
.sponsor-grid {
  display: grid;
  /* Tanti riquadri quanti sono gli sponsor, finché ci stanno in una riga */
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sponsor-item {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.sponsor-item:has(a):hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.sponsor-item > a {
  position: absolute;
  inset: 0;
}
.sponsor-item picture {
  display: contents;
}
.sponsor-item img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  max-width: none;
  object-fit: contain;
}
.news-ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 26px 0 20px;
}
.news-ticker .story-card {
  padding: 12px 24px;
  border-right: 1px solid var(--line);
}
.news-ticker .story-card:first-child {
  padding-left: 0;
}
.news-ticker .story-card:last-child {
  border: 0;
  padding-right: 0;
}
.card-link {
  display: block;
}
.card-image {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: var(--panel);
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card-link:hover .card-image img {
  transform: scale(1.035);
}
.card-link:hover h3,
.ranked-story:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.card-copy {
  padding-top: 14px;
}
.card-copy h3 {
  font-size: 20px;
  line-height: 1.3;
}
.card-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  font-family: var(--sans);
  letter-spacing: 0;
  font-weight: 400;
}
.category-label {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 2px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
}
[data-theme="dark"] .category-label {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 400;
}
.story-card--ticker .card-link,
.story-card--brief .card-link {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.story-card--ticker .card-image {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  aspect-ratio: 1;
  border-radius: 5px;
}
.story-card--ticker .card-copy {
  padding: 0;
  align-self: center;
}
.story-card--ticker h3 {
  font-size: 16px;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.story-card--ticker time {
  margin-bottom: 5px;
  font-size: 11px;
}
.editorial-section {
  margin: 0 0 76px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
}
.section-heading h2 {
  font-size: 18px;
  letter-spacing: -0.025em;
  flex-shrink: 0;
}
.section-heading > span {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.section-heading > a {
  font-size: 12px;
  white-space: nowrap;
  color: var(--muted);
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-heading > a:hover {
  color: var(--accent-ink);
}
.featured-list {
  margin-top: 6px;
}
.ranked-grid,
.briefing-grid,
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.ranked-story {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rank {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--muted);
  line-height: 1.2;
}
.ranked-story h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ranked-story .meta {
  font-size: 11px;
}
.briefing-grid {
  row-gap: 28px;
}
.story-card--brief .card-image {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  border-radius: 5px;
  aspect-ratio: 1;
}
.story-card--brief .card-copy {
  padding: 0;
  align-self: center;
}
.story-card--brief h3 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.story-card--brief .meta {
  font-size: 11px;
  gap: 4px 8px;
}
.stories-grid {
  row-gap: 44px;
}
.story-card--archive .eyebrow {
  font-size: 11px;
  margin-bottom: 8px;
}
.desks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.desk-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.desk-briefs {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.desk-briefs .story-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.desk-briefs .story-card:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}
.desk-briefs .card-image {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}
.desk-briefs .card-link {
  gap: 12px;
}
.desk-briefs h3 {
  font-size: 15px;
}
.image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  color: var(--muted);
  background: var(--panel);
}
.image-placeholder span {
  font-family: "Manufacturing Consent", Georgia, serif;
  font-size: 28px;
}
.hero .image-placeholder {
  background: #323b3e;
}
/* Footer */
.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
  margin-top: 96px;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.75fr 1.55fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 260px;
  margin-top: 18px;
}
.identity-mark {
  display: block;
  width: 250px;
  margin: 0;
}
.identity-logo {
  width: 100%;
  height: auto;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.footer-links a {
  display: inline-block;
  padding: 5px 0;
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--accent-ink);
}
.site-footer .eyebrow {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-dispatch .eyebrow {
  color: var(--accent-ink);
}
.footer-dispatch h2 {
  font-size: 23px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.footer-dispatch p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
}
.footer-dispatch .pill-button {
  font-size: 12px;
  min-height: 42px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  color: var(--muted);
}
.footer-credit {
  display: inline-block;
  margin-left: auto;
  margin-block: 0;
  max-width: none;
  overflow: hidden;
  border-right: 1px solid transparent;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.015em;
}
.footer-credit a:hover {
  color: var(--accent);
}
.js .footer-credit {
  max-width: 0;
  opacity: 0;
}
.js .footer-credit.is-typed {
  animation:
    credit-type 1.8s steps(41, end) forwards,
    credit-caret 0.7s step-end 3;
}
.back-top-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 10px 28px #00000012;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}
.back-top-floating.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top-floating:hover {
  border-color: var(--accent);
  background: var(--accent);
}
/* Archives, search and article */
.archive-main {
  min-height: 60vh;
}
.archive-heading {
  text-align: center;
  padding: 64px 0 60px;
  max-width: 1000px;
  margin: auto;
}
.archive-heading h1 {
  margin: 12px 0 24px;
  font-size: clamp(38px, 5vw, 72px);
}
.archive-description {
  font-size: 18px;
  color: var(--muted);
  max-width: 750px;
  margin: auto;
}
.archive-heading .search-form {
  margin: 30px auto 0;
  max-width: 660px;
}
.archive-grid {
  margin-bottom: 64px;
}
.pagination .nav-links {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-numbers {
  border: 1px solid var(--line);
  padding: 9px 16px;
  min-width: 44px;
  text-align: center;
  border-radius: 3px;
}
.page-numbers.current {
  background: var(--ink);
  color: var(--paper);
}
.article-heading {
  max-width: 1050px;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 44px;
}
.article-heading h1 {
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.16;
  margin: 18px auto 22px;
  max-width: 950px;
}
.article-deck {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 26px;
}
.article-byline {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}
.article-byline .meta {
  font-size: 13px;
}
.article-cover img,
.article-cover > .image-placeholder {
  width: 100%;
  max-height: 740px;
  object-fit: cover;
  aspect-ratio: 1.9;
  border-radius: 12px;
}
.article-cover figcaption {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  margin-top: 10px;
}
.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px) 1fr;
  gap: 64px;
  max-width: 1320px;
  margin: 64px auto 0;
}
.article-sidebar {
  font-size: 13px;
  align-self: start;
  position: sticky;
  top: 32px;
}
.article-sidebar .eyebrow {
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 16px;
}
.article-toc {
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.article-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-toc a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
}
.article-toc a:hover {
  color: var(--accent-ink);
}
.article-content {
  font-size: 19px;
  line-height: 1.85;
  overflow-wrap: anywhere;
  min-width: 0;
}
.article-content > p:first-of-type {
  font-size: 22px;
  color: var(--ink);
}
.article-content p {
  margin-bottom: 1.4em;
}
.article-content h2 {
  font-size: 30px;
  margin: 1.6em 0 0.65em;
}
.article-content h3 {
  font-size: 24px;
  margin: 1.4em 0 0.6em;
}
.article-content a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-content blockquote {
  border-left: 2px solid var(--ink);
  margin: 36px 0;
  padding: 6px 0 6px 28px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.6;
}
.article-content blockquote p {
  margin: 0;
}
.article-content figure {
  margin: 30px 0;
}
.article-content img {
  border-radius: 6px;
}
.article-content table {
  border-collapse: collapse;
  display: block;
  max-width: 100%;
  overflow: auto;
}
.article-content td,
.article-content th {
  padding: 12px;
  border: 1px solid var(--line);
}
/* ISTAT: its WordPress table contains legacy inline column widths. Keep this fix scoped to that table only. */
.article-content .fixtable {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-content .fixtable table {
  display: table;
  width: 100% !important;
  min-width: 760px;
  max-width: none;
  margin: 0;
  table-layout: auto;
  font-size: 16px;
  line-height: 1.4;
}
.article-content .fixtable td {
  width: auto !important;
  height: auto !important;
  padding: 13px 10px !important;
  vertical-align: middle;
  white-space: nowrap;
}
.article-content .fixtable tr > td:first-child {
  min-width: 128px;
  white-space: normal;
}
.newsletter-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
  margin: 96px 0 0;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}
.newsletter-signup h2 {
  max-width: 550px;
  margin: 10px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
}
.newsletter-signup p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}
.newsletter-signup-form .mailpoet_form {
  max-width: none;
}
.newsletter-signup-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
}
.newsletter-signup-form input[type="submit"] {
  width: 100%;
  min-height: 50px;
  padding: 10px 20px;
  border: 0;
  border-radius: 28px;
  background: var(--accent);
  color: #211900;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.newsletter-signup-form .mailpoet_captcha,
.newsletter-signup-form .mailpoet_form .g-recaptcha {
  min-width: 304px;
  min-height: 86px;
}
.newsletter-signup-form .mailpoet_form .g-recaptcha {
  transform: scale(1.08);
  transform-origin: left top;
}
.contact-form {
  max-width: 680px;
  margin: 24px auto 0;
  padding: 30px 32px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}
.contact-form h2 {
  margin-bottom: 12px;
}
.contact-form form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.contact-form form p {
  margin: 0;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}
.contact-form-honeypot {
  position: absolute;
  left: -10000px;
}
.contact-form-status {
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: var(--panel);
}
.contact-form-status.is-error {
  border-color: #c84435;
}
.page-main .archive-heading {
  padding: 48px 0 20px;
}
/* Homepage welcome: editorial, deliberately shown just once per browser tab. */
.welcome-dialog {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  margin: auto;
  padding: 42px 46px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 28px 80px #17181340;
  text-align: center;
}
.welcome-dialog[open] {
  animation: welcome-paper-in 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.welcome-dialog[open]::backdrop {
  animation: welcome-backdrop-in 0.42s ease-out both;
}
.welcome-dialog.is-closing[open] {
  animation: welcome-paper-out 0.3s cubic-bezier(0.4, 0, 1, 1) both;
}
.welcome-dialog.is-closing[open]::backdrop {
  animation: welcome-backdrop-out 0.3s ease-in both;
}
.welcome-dialog:before,
.welcome-dialog:after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.welcome-dialog:before {
  inset: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.welcome-dialog:after {
  top: 0;
  right: 0;
  width: 135px;
  height: 8px;
  background: var(--accent);
}
.welcome-dialog > * {
  position: relative;
  z-index: 1;
}
.welcome-dialog-brand {
  display: flex;
  justify-content: center;
  margin: 0 auto 26px;
}
.welcome-dialog-brand .identity-mark {
  width: 190px;
}
.welcome-dialog-brand .identity-logo {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}
.welcome-dialog h1 {
  margin: 10px 0 18px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
}
.welcome-dialog p:not(.eyebrow) {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
}
.welcome-dialog .welcome-dialog-note {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 600;
}
.welcome-dialog .pill-button {
  margin-top: 25px;
}
.welcome-dialog-close {
  position: absolute;
  z-index: 2;
  top: 21px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
}
.welcome-dialog-close .icon {
  width: 18px;
}
.welcome-dialog-later {
  display: block;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-content iframe {
  max-width: 100%;
}
.article-content pre {
  overflow: auto;
  padding: 20px;
  background: var(--panel);
  font-size: 14px;
}
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.story-tags a {
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 14px;
  color: var(--muted);
  text-decoration: none;
}
.author-box {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.author-box h2 {
  font-size: 21px;
  margin: 0 0 10px;
}
.author-box a {
  color: var(--ink);
  text-decoration: none;
}
.author-box p {
  font-size: 14px;
  color: var(--muted);
}
.author-box .eyebrow {
  font-size: 10px;
  margin-bottom: 10px;
}
.post-navigation {
  margin: 56px 0 70px;
  border-block: 1px solid var(--line);
  padding-block: 30px;
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.post-navigation span {
  font-size: 12px;
  color: var(--muted);
}
.post-navigation h3 {
  font-size: 21px;
  margin-top: 12px;
}
.nav-next {
  text-align: right;
  grid-column: 2;
}
.page-main {
  min-height: 60vh;
}
.page-content {
  max-width: 760px;
  margin: 0 auto;
}
.empty-state {
  text-align: center;
  max-width: 850px;
  margin: auto;
  padding-block: 90px;
  min-height: 65vh;
}
.empty-state h1,
.empty-state h2 {
  margin-bottom: 24px;
}
.empty-state p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 24px;
}
.empty-state .search-form {
  margin: 30px auto;
  max-width: 620px;
}
.empty-state .eyebrow {
  color: var(--accent-ink);
}
/* Native dialogs: keyboard focus, Escape and modal inertness supplied by the browser. */
dialog {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  max-width: calc(100vw - 32px);
}
dialog::backdrop {
  background: #10140f66;
  backdrop-filter: blur(5px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.dialog-top h2 {
  font-size: 30px;
}
.menu-dialog {
  margin: 0;
  min-height: 100dvh;
  width: 460px;
  border-width: 0 1px 0 0;
  padding: 30px 32px;
  max-height: 100dvh;
}
.menu-dialog[open] {
  animation: drawer-in 0.35s ease both;
}
.menu-dialog .wordmark {
  font-size: 30px;
}
.menu-dialog .nav-links {
  display: block;
}
.menu-dialog .nav-links a,
.drawer-home {
  font-family: var(--serif);
  font-size: 23px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  line-height: 1.35;
  display: block;
}
.drawer-home span {
  float: right;
  font-family: var(--sans);
  font-size: 20px;
  color: var(--muted);
}
.drawer-footer {
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}
.drawer-footer p {
  margin-top: 24px;
}
.search-dialog {
  width: 760px;
  border-radius: 10px;
  margin: 15vh auto;
}
.search-dialog .muted {
  font-size: 14px;
  margin: 20px 0 0;
}
.search-form {
  display: flex;
  gap: 10px;
  padding: 6px 6px 6px 18px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
}
.search-form input {
  min-width: 0;
  flex: 1;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 16px;
  padding: 8px 0;
}
.search-form input:focus-visible {
  outline: 0;
}
.search-form:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.share-status {
  display: block;
  font-size: 12px;
  margin-top: 12px;
  color: var(--muted);
}
.site-loader {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s linear, visibility 0s linear 0.16s;
}
.is-loading .site-loader {
  opacity: 1;
  visibility: visible;
  transition: none;
}
.is-leaving .site-loader {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.12s linear;
}
.loader-line {
  height: 1px;
  width: 130px;
  background: var(--line);
  overflow: hidden;
}
.loader-line:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(1);
}
.is-loading .loader-line:after,
.is-leaving .loader-line:after {
  background: var(--accent);
  animation: load-line 1.05s linear both;
}
@keyframes load-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes credit-type {
  from {
    max-width: 0;
    opacity: 1;
  }
  to {
    max-width: 42ch;
    opacity: 1;
  }
}
@keyframes credit-caret {
  50% {
    border-color: var(--accent);
  }
}
@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes drawer-in {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes welcome-paper-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes welcome-paper-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }
}
@keyframes welcome-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes welcome-backdrop-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 1700px) {
  .hero-content {
    left: max(32px, calc((100vw - 1536px) / 2));
  }
  .hero {
    height: 760px;
  }
}
@media (max-width: 1200px) {
  .primary-nav > time {
    display: none;
  }
  .primary-nav .nav-links {
    gap: 20px;
  }
  .primary-nav {
    justify-content: center;
  }
  .latest-link {
    display: none;
  }
  .briefing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .story-card--ticker .card-image {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }
  .news-ticker .story-card {
    padding-inline: 16px;
  }
  .news-ticker h3 {
    font-size: 15px;
  }
  .desks-grid {
    gap: 32px;
  }
  .desk-content {
    grid-template-columns: 1fr;
  }
  .desk-briefs {
    border: 0;
    padding: 0;
  }
  .desk-briefs .card-image {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }
  .footer-grid {
    gap: 30px;
    grid-template-columns: 1.1fr 1fr 1fr 1.4fr;
  }
  .article-layout {
    grid-template-columns: 190px minmax(0, 760px);
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  :root {
    --gutter: 24px;
  }
  .primary-nav {
    display: none;
  }
  .site-header {
    height: 80px;
  }
  .hero {
    height: 610px;
    max-height: none;
    min-height: 0;
  }
  .hero-content h1 {
    font-size: 48px;
    max-width: 720px;
  }
  .hero-content {
    bottom: 64px;
  }
  .hero-controls {
    bottom: 14px;
    right: 24px;
  }
  .hero-content p {
    font-size: 17px;
    max-width: 560px;
  }
  .news-ticker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .news-ticker .story-card {
    padding: 0;
    border: 0;
  }
  .news-ticker .card-image {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }
  .news-ticker .story-card:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid var(--line);
  }
  .ranked-grid,
  .stories-grid,
  .briefing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .editorial-section {
    margin-bottom: 60px;
  }
  .featured-list {
    margin-top: 20px;
  }
  .ranked-story h3 {
    font-size: 18px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-dispatch {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .article-layout {
    display: block;
    max-width: 800px;
  }
  .article-sidebar {
    position: static;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  .article-sidebar > .eyebrow,
  .article-toc {
    display: none;
  }
  .article-heading {
    padding-top: 44px;
  }
  .article-cover img {
    aspect-ratio: 1.5;
  }
  .article-content {
    font-size: 18px;
  }
  .site-footer {
    margin-top: 70px;
  }
  .section-heading h2 {
    max-width: 65%;
    flex-shrink: 1;
  }
  .newsletter-signup {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 70px;
    padding: 36px;
  }
  .footer-tagline {
    display: none;
  }
}
@media (max-width: 600px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  :root {
    --gutter: 20px;
  }
  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 16px;
  }
  .site-header .wordmark {
    font-size: 30px;
  }
  .site-header .custom-logo {
    max-height: 46px;
  }
  .newsletter-signup {
    margin-top: 52px;
    padding: 28px 22px;
  }
  .newsletter-signup-form .mailpoet_captcha,
  .newsletter-signup-form .mailpoet_form .g-recaptcha {
    min-width: 0;
  }
  .newsletter-signup-form .mailpoet_form .g-recaptcha {
    transform: scale(0.92);
    margin-bottom: -7px;
  }
  .contact-form {
    margin-top: 16px;
    padding: 26px 20px;
  }
  .page-main .archive-heading {
    padding-bottom: 16px;
  }
  .welcome-dialog {
    width: calc(100vw - 24px);
    padding: 38px 25px 28px;
  }
  .welcome-dialog-brand {
    margin-bottom: 23px;
  }
  .welcome-dialog-brand .identity-mark {
    width: 165px;
  }
  .welcome-dialog-close {
    top: 18px;
    right: 18px;
  }
  .header-actions {
    gap: 0;
  }
  .header-actions .text-button > span {
    display: none;
  }
  .header-actions .text-button {
    width: 32px;
  }
  .header-actions .icon-button {
    width: 32px;
    padding: 6px;
  }
  .header-actions .icon {
    width: 19px;
  }
  .theme-toggle {
    width: 42px;
    height: 26px;
  }
  .toggle-dot {
    width: 18px;
    height: 18px;
  }
  [data-theme="dark"] .toggle-dot {
    transform: translateX(16px);
  }
  .theme-toggle .icon {
    width: 15px;
  }
  .hero {
    height: 560px;
  }
  .hero-content {
    bottom: 70px;
  }
  .hero-content h1 {
    font-size: 37px;
    line-height: 1.2;
    letter-spacing: -0.04em;
  }
  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0 16px;
  }
  .hero-content time {
    font-size: 12px;
  }
  .hero-image img {
    object-position: 62% 50%;
  }
  .hero-controls {
    bottom: 14px;
    right: 20px;
  }
  .hero-dot {
    width: 42px;
  }
  .hero-shade {
    background: linear-gradient(180deg, #101b2720, #0b12113d 30%, #060b10db);
  }
  .news-ticker {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 0 18px;
  }
  .news-ticker .story-card,
  .news-ticker .story-card:nth-child(even) {
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .news-ticker .story-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .news-ticker .card-image {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
  .news-ticker h3 {
    font-size: 17px;
    -webkit-line-clamp: 2;
  }
  .news-ticker .card-link {
    gap: 16px;
  }
  .news-ticker time {
    font-size: 11px;
  }
  .section-heading {
    gap: 12px;
    margin-bottom: 22px;
  }
  .section-heading h2 {
    font-size: 18px;
    max-width: 62%;
  }
  .section-heading > a {
    font-size: 10px;
  }
  .ranked-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ranked-story {
    gap: 18px;
  }
  .ranked-story h3 {
    font-size: 18px;
  }
  .rank {
    font-size: 28px;
  }
  .ranked-story .meta {
    font-size: 12px;
  }
  .briefing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .story-card--brief .card-image {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }
  .story-card--brief h3 {
    font-size: 18px;
  }
  .story-card--brief .meta {
    font-size: 12px;
  }
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .card-image {
    aspect-ratio: 1.45;
  }
  .card-copy h3 {
    font-size: 23px;
  }
  .card-excerpt {
    font-size: 16px;
  }
  .meta {
    font-size: 12px;
  }
  .desks-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .desk-content {
    gap: 26px;
  }
  .desk-briefs .card-copy h3 {
    font-size: 18px;
  }
  .desk-briefs .story-card {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .editorial-section {
    margin-bottom: 52px;
  }
  .site-footer {
    padding-top: 40px;
    margin-top: 60px;
  }
  .footer-grid {
    gap: 36px 24px;
    padding-bottom: 32px;
  }
  .footer-brand {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .footer-brand .wordmark {
    font-size: 34px;
  }
  .footer-brand p {
    max-width: 300px;
  }
  .footer-dispatch {
    grid-column: 1/-1;
    grid-row: auto;
    border-top: 1px solid var(--line);
    padding-top: 30px;
  }
  .footer-dispatch h2 {
    font-size: 25px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 10px;
  }
  .archive-heading {
    padding: 45px 0 40px;
  }
  .archive-heading h1 {
    font-size: 40px;
    overflow-wrap: anywhere;
  }
  .archive-description {
    font-size: 16px;
  }
  .article-heading {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .article-heading h1 {
    font-size: 37px;
    line-height: 1.18;
  }
  .article-deck {
    font-size: 18px;
  }
  .article-byline {
    gap: 10px;
    font-size: 12px;
  }
  .article-byline .meta {
    font-size: 12px;
  }
  .article-cover img {
    aspect-ratio: 1.25;
    border-radius: 6px;
  }
  .article-cover figcaption {
    font-size: 10px;
    text-align: left;
  }
  .article-layout {
    margin-top: 26px;
  }
  .article-content {
    font-size: 18px;
    line-height: 1.8;
  }
  .article-content > p:first-of-type {
    font-size: 20px;
  }
  .article-content h2 {
    font-size: 27px;
  }
  .article-content blockquote {
    font-size: 22px;
    padding-left: 20px;
  }
  .article-sidebar {
    margin-bottom: 22px;
  }
  .post-navigation {
    margin: 40px 0 48px;
  }
  .post-navigation .nav-links {
    gap: 24px;
  }
  .post-navigation h3 {
    font-size: 16px;
  }
  .post-navigation span {
    font-size: 10px;
  }
  .empty-state {
    padding-block: 65px;
  }
  .empty-state h1 {
    font-size: 38px;
  }
  .empty-state p {
    font-size: 16px;
  }
  .search-form {
    padding-left: 14px;
    gap: 5px;
  }
  .search-form .pill-button {
    padding-inline: 18px;
  }
  .search-form .icon {
    display: none;
  }
  .search-dialog {
    padding: 24px 20px;
    margin: 12vh auto;
  }
  .dialog-top h2 {
    font-size: 24px;
  }
  .menu-dialog {
    width: 100%;
    max-width: 100%;
    padding: 24px;
  }
  .menu-dialog .wordmark {
    font-size: 32px;
  }
  .menu-dialog .nav-links a,
  .drawer-home {
    font-size: 22px;
  }
  .dialog-top {
    margin-bottom: 25px;
  }
  .page-content {
    padding-bottom: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .is-loading .site-loader,
  .is-leaving .site-loader {
    display: none;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .js .footer-credit {
    max-width: none;
    opacity: 1;
  }
  .hero-image img {
    transform: none !important;
  }
}
@media print {
  .site-header,
  .primary-nav,
  .site-footer,
  .article-sidebar,
  .post-navigation,
  .hero-controls,
  .site-loader,
  dialog {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .article-layout {
    display: block;
  }
  .article-content {
    max-width: none;
    font-size: 12pt;
  }
  .article-cover img {
    max-height: 300px;
  }
  .article-heading h1 {
    font-size: 28pt;
  }
  a {
    color: inherit;
  }
  .page-wrap {
    padding: 0;
  }
}

html:not(.js) .hero-controls,
html:not(.js) [data-open],
html:not(.js) .theme-toggle {
  display: none;
}

@media (max-width: 600px) {
  .story-card--ticker .card-copy h3 {
    font-size: 17px;
  }
  .story-card--brief .card-copy h3 {
    font-size: 18px;
  }
}
