.hero h1 {
  line-height: 1.09;
}

.button.primary:hover,
.button.primary:active {
  background: var(--paper-deep);
  color: var(--ink);
}

.hero-folio {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #667083;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-folio span + span {
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.hero .eyebrow {
  margin-bottom: 14px;
}

.hero-rule {
  display: block;
  width: min(100%, 540px);
  margin-bottom: 22px;
  border-top: 1px solid rgba(8, 21, 46, .5);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero-visual figcaption {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 40px;
  width: 100%;
  padding: 10px 18px;
  border-top: 1px solid rgba(8, 21, 46, .7);
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header nav a:not(.subscribe-link)::after {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(244, 240, 233, .96), rgba(244, 240, 233, .92));
  backdrop-filter: blur(14px);
}

@media (max-width: 900px) {
  .site-header nav {
    position: fixed;
    top: 70px;
    z-index: 99;
  }
}

.site-header nav a:not(.subscribe-link):hover {
  animation: nav-glitch .58s steps(1, end);
}

@keyframes nav-glitch {
  0%, 100% {
    text-shadow: none;
  }
  18% {
    text-shadow: 2px 0 var(--blue), -2px 0 var(--orange);
  }
  36% {
    text-shadow: -2px 0 var(--blue), 1px 0 var(--orange);
  }
  54% {
    text-shadow: 1px 0 var(--blue), -1px 0 var(--orange);
  }
  72% {
    text-shadow: -1px 0 var(--blue);
  }
}

.button,
.subscribe-link,
.subscribe button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .12s ease;
}

.button.primary,
.subscribe-link,
.subscribe button {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover,
.subscribe-link:hover,
.subscribe button:hover {
  border-color: #13284f;
  background: #13284f;
  color: var(--white);
  transform: none;
}

.button.primary:active,
.subscribe-link:active,
.subscribe button:active {
  border-color: #050e20;
  background: #050e20;
  color: var(--white);
  transform: translateY(1px);
}

.tension-panel-compact {
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
  padding-right: 0;
  padding-left: 0;
}

html,
body {
  overflow-x: clip;
}

.subscribe {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: max(70px, calc((100vw - 1260px) / 2));
  padding-left: max(70px, calc((100vw - 1260px) / 2));
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: var(--paper-deep);
  color: var(--ink);
  transform: none;
}

.button.secondary:active {
  border-color: var(--ink);
  background: #ddd2c4;
  color: var(--ink);
  transform: translateY(1px);
}

.subscribe input {
  height: 44px;
}

/* Contraportada editorial compartida */
.editorial-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 max(42px, calc((100vw - 1400px) / 2)) 24px;
  border-top: 4px solid var(--ink);
}

.footer-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--ink);
}

.footer-identity {
  display: flex;
  align-items: center;
  min-width: 0;
}

.footer-identity .brand {
  font-size: 19px;
}

.footer-author {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.footer-author-main {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-author-main img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.footer-author-main span {
  display: grid;
  line-height: 1.25;
}

.footer-author-main small {
  color: #687184;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-author-main strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.footer-author-main em {
  margin-top: 2px;
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
}

.footer-author-main:hover strong {
  color: var(--blue);
}

.footer-author-social {
  display: flex;
  gap: 14px;
  margin: 12px 0 0 73px;
  color: #687184;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-author-social a:hover {
  color: var(--blue);
}

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

.footer-directory a {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  min-width: 0;
  padding: 27px 22px 25px 0;
  border-bottom: 1px solid var(--line);
}

.footer-directory a:not(:nth-child(3n + 1)) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.footer-directory a:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.footer-directory span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.footer-directory strong {
  width: max-content;
  max-width: 100%;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.1;
  background-image: linear-gradient(transparent 62%, transparent 62%);
}

.footer-directory i {
  color: #687184;
  font-size: 17px;
  font-style: normal;
  transition: transform .2s ease, color .2s ease;
}

.footer-directory a:hover strong {
  background-image: url('../public/marker-underline.svg');
  background-repeat: no-repeat;
  background-position: center 98%;
  background-size: 100% 58%;
}

.footer-directory a:hover i {
  color: var(--blue);
  transform: translate(3px, -3px);
}

.footer-colophon {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  color: #687184;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .03em;
}

.footer-colophon nav {
  display: flex;
  gap: 22px;
}

.footer-colophon a:hover {
  color: var(--blue);
}

.newsletter-button {
  display: inline-flex;
  min-height: 44px;
  width: max-content;
  align-items: center;
  justify-content: center;
  justify-self: end;
  align-self: end;
  padding: 0 24px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .12s ease;
}

.newsletter-button:hover {
  border-color: var(--paper-deep);
  background: var(--paper-deep);
  color: var(--ink);
}

.newsletter-button:active {
  transform: translateY(1px);
}

.article-subscribe .newsletter-button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.article-subscribe .newsletter-button:hover {
  border-color: #13284f;
  background: #13284f;
  color: var(--white);
}

@media (max-width: 900px) {
  .editorial-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-masthead {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-author {
    max-width: 360px;
    padding-left: 0;
    border-left: 0;
  }

  .footer-author-social {
    margin-left: 73px;
  }

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

  .footer-directory a:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .footer-directory a:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid var(--line);
  }

  .footer-directory a:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .footer-directory a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .footer-identity {
    display: block;
  }

  .footer-identity .descriptor {
    display: block;
    width: max-content;
    margin: 13px 0 0;
    padding-left: 0;
    border-left: 0;
  }

  .footer-author-social {
    margin-left: 0;
  }

  .footer-directory {
    grid-template-columns: 1fr;
  }

  .footer-directory a,
  .footer-directory a:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .footer-directory a:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-directory a:last-child {
    border-bottom: 0;
  }

  .footer-directory strong {
    font-size: 27px;
  }

  .footer-colophon {
    flex-direction: column;
    gap: 13px;
  }

  .footer-colophon nav {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

.investigation-mark {
  padding: 0 .08em .02em;
  margin: 0 -.08em;
  background-image: url('../public/marker-underline.svg');
  background-repeat: no-repeat;
  background-position: center 98%;
  background-size: 100% 70%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-copy strong {
  font-weight: 700;
}

.hero-left {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  height: 40px;
  padding: 0 72px 0 max(42px, calc((100vw - 1400px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-stats span {
  position: relative;
  padding: 14px 0;
  text-align: left;
  white-space: nowrap;
}

.hero-stats span + span::before {
  content: '|';
  display: inline;
  margin: 0 12px;
  color: rgba(255, 255, 255, .26);
}

/* Reportaje central */
.investigation {
  padding-top: 104px;
  padding-bottom: 94px;
}

.story-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(56px, 8vw, 140px);
  align-items: start;
  margin-bottom: 58px;
}

.story-opening h2 {
  max-width: 780px;
  margin-top: 13px;
  font-family: var(--serif);
  font-size: clamp(39px, 4.3vw, 70px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.story-intro {
  padding-top: 27px;
  font-size: 17px;
  line-height: 1.62;
}

.story-intro p + p {
  margin-top: 22px;
}

.story-intro-emphasis {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.consequence-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin: 0 0 92px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.consequence-list li {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  gap: 32px;
  padding: 22px clamp(16px, 1.8vw, 28px) 25px;
}

.consequence-list li + li {
  border-left: 1px solid var(--line);
}

.consequence-list span,
.tension-ideas > li > span,
.story-conclusion li span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.consequence-list p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.38;
}

.story-dossiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 17px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  scroll-margin-top: 90px;
}

.story-dossier {
  padding: 54px clamp(28px, 4vw, 66px) 46px 0;
}

.story-dossier + .story-dossier {
  padding-right: 0;
  padding-left: clamp(28px, 4vw, 66px);
  border-left: 1px solid var(--line);
}

.story-dossier h3,
.tension-panel h3,
.story-conclusion h3 {
  margin: 12px 0 25px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 47px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.dossier-copy {
  min-height: 285px;
  max-width: 610px;
  font-size: 14px;
  line-height: 1.68;
}

.dossier-copy p + p {
  margin-top: 17px;
}

.dossier-copy p:last-child {
  font-weight: 700;
}

.story-stats {
  margin-top: 37px;
  border-top: 1px solid var(--line);
}

.story-stats > div {
  display: grid;
  grid-template-columns: minmax(145px, .8fr) 1.2fr;
  gap: 22px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.story-stats dt {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.05;
}

.story-stats dd {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.story-source {
  margin-bottom: 90px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .02em;
}

.story-source a {
  margin-left: 6px;
  color: var(--blue);
  font-weight: 700;
}

.story-source svg {
  width: 13px;
  vertical-align: middle;
}

.tension-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(48px, 6vw, 86px);
  background: var(--ink);
  color: var(--white);
}

.tension-copy > p:not(.kicker) {
  max-width: 590px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.tension-copy > p + p {
  margin-top: 16px;
}

.tension-copy > p:last-child {
  color: var(--white);
  font-weight: 700;
}

.tension-ideas {
  border-top: 1px solid rgba(255, 255, 255, .42);
}

.tension-ideas li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 24px 0 27px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.tension-ideas h4 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.tension-ideas p {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.55;
}

.story-conclusion {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 150px);
  padding: 105px 0 0;
}

.story-conclusion > div > p:last-child {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.65;
}

.story-conclusion ol {
  border-top: 1px solid var(--ink);
}

.story-conclusion li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.story-conclusion li p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.35;
}

/* Versión resumida del reportaje */
.investigation {
  padding-bottom: 78px;
}

.story-opening {
  margin-bottom: 72px;
}

.story-intro {
  padding-top: 8px;
  font-size: 15px;
}

.story-intro p + p {
  margin-top: 15px;
}

.story-intro-emphasis {
  font-size: 20px;
}

.story-dossier {
  padding-top: 40px;
  padding-bottom: 34px;
}

.story-dossier h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2.6vw, 40px);
}

.dossier-copy {
  min-height: 145px;
  line-height: 1.58;
}

.dossier-copy p + p {
  margin-top: 12px;
}

.story-stats {
  margin-top: 22px;
}

.story-stats > div {
  padding: 12px 0;
}

.story-source {
  margin-bottom: 52px;
}

.tension-panel-compact {
  grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  padding: clamp(38px, 4.5vw, 62px) 0;
}

.tension-panel-compact h3 {
  max-width: 520px;
  margin-bottom: 0;
}

.tension-panel-compact .tension-copy {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .42);
}

.tension-panel-compact .tension-copy p {
  font-size: 15px;
  line-height: 1.65;
}

/* Jerarquía editorial de los bloques de la serie */
.series-blocks {
  display: grid;
  gap: 14px;
  border-top: 0;
}

.series-blocks details {
  border: 1px solid var(--ink);
}

.series-blocks summary {
  grid-template-columns: 112px minmax(0, 1fr) 150px 30px;
  gap: 22px;
  min-height: 88px;
  padding: 20px 24px;
  background: var(--ink);
  color: var(--white);
}

.series-blocks summary:hover {
  padding-left: 24px;
  background: #13284f;
  color: var(--white);
}

.series-blocks details[open] summary {
  background: #0d2145;
}

.series-blocks .block-number,
.series-blocks .block-range {
  color: #9bb4ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.series-blocks .block-name {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

.series-blocks .block-range {
  text-align: right;
}

.series-blocks .toggle {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .38);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}

.series-blocks .chapters {
  padding: 0 24px;
  border-top: 0;
  background: var(--paper);
}

.series-blocks .chapter.published {
  margin-left: -24px;
  padding-left: 21px;
  border-left: 3px solid var(--blue);
  background: rgba(18, 70, 211, .035);
}

.series-blocks .chapter.published:hover {
  padding-left: 21px;
  background: rgba(18, 70, 211, .07);
}

.series-blocks .chapter-meta {
  grid-column: 3;
  grid-row: 1;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: flex-start;
}

.series-blocks .chapter {
  grid-template-columns: 58px minmax(0, 1fr) 170px 30px;
}

.series-blocks .chapter-number {
  grid-column: 1;
  grid-row: 1;
  align-self: auto;
}

.series-blocks .chapter-body {
  grid-column: 2;
  grid-row: 1;
}

.series-blocks .chapter-arrow {
  grid-column: 4;
  grid-row: 1;
}

.series-blocks .status {
  border-color: #b85d08;
  background: #f2dfc5;
  color: #8f4505;
  font-weight: 700;
}

.series-blocks .chapter.published .status {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.series-blocks .status.next {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.series-blocks .read-chapter {
  display: inline-flex;
  flex: 0 0 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease;
}

.subscribe {
  background: var(--ink);
}

.subscribe button {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.subscribe button:hover {
  border-color: var(--paper-deep);
  background: var(--paper-deep);
  color: var(--ink);
}

.subscribe button:active {
  border-color: #d8ccbd;
  background: #d8ccbd;
  color: var(--ink);
}

.series-blocks .read-chapter svg {
  width: 13px;
  transition: transform .18s ease;
}

.series-blocks .chapter.published:hover .read-chapter {
  background: var(--paper);
  color: var(--ink);
}

.series-blocks .chapter.published:hover .read-chapter svg {
  transform: translateX(3px);
}

.series-blocks .chapter.published > .chapter-arrow {
  visibility: hidden;
}

/* Estados informativos: tipografía y punto, no apariencia de botón */
.series-blocks .chapter-meta {
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
}

.series-blocks .status,
.series-blocks .chapter.published .status,
.series-blocks .status.next {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3;
}

.series-blocks .status {
  color: #8b6b43;
}

.series-blocks .chapter.published .status {
  color: var(--blue);
}

.series-blocks .status.next {
  color: var(--orange);
}

.series-blocks .status::before {
  content: '';
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: currentColor;
  border-radius: 50%;
}

.series-blocks .chapter-meta > span:not(.status):not(.read-chapter) {
  color: #687184;
}

.series-blocks .read-chapter {
  width: 100%;
  flex-basis: auto;
  min-height: 44px;
  margin-top: 5px;
  padding: 0 16px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
  }

  .hero-left,
  .hero-copy {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-left {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stats {
    min-width: 0;
    width: 100%;
  }

  .hero-copy h1,
  .hero-copy > p {
    width: 100%;
    max-width: 100%;
  }

  .investigation {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .subscribe {
    padding-right: 24px;
    padding-left: 24px;
  }

  .newsletter-button {
    justify-self: start;
  }

  .story-opening,
  .story-dossiers,
  .tension-panel,
  .story-conclusion {
    grid-template-columns: 1fr;
  }

  .story-opening {
    gap: 18px;
    margin-bottom: 52px;
  }

  .story-intro {
    padding-top: 0;
  }

  .consequence-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 78px;
  }

  .consequence-list li {
    min-height: 155px;
    border-bottom: 1px solid var(--line);
  }

  .consequence-list li:nth-child(odd) {
    border-left: 0;
  }

  .story-dossier,
  .story-dossier + .story-dossier {
    padding: 44px 0;
  }

  .story-dossier + .story-dossier {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .dossier-copy {
    min-height: 0;
  }

  .tension-panel {
    gap: 46px;
  }

  .tension-panel-compact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-conclusion {
    gap: 48px;
    padding-top: 78px;
  }
}

@media (max-width: 700px) {
  .hero-stats {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    font-size: 8px;
  }

  .hero-stats span,
  .hero-stats span:nth-child(2),
  .hero-stats span:nth-child(3) {
    padding: 10px 0;
    text-align: left;
  }

  .hero-stats span + span {
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .hero-stats span + span::before {
    display: none;
  }

  .series-blocks summary {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 6px 16px;
    padding: 18px 20px;
  }

  .series-blocks summary:hover {
    padding-left: 20px;
  }

  .series-blocks .block-number {
    grid-column: 1;
    grid-row: 1;
  }

  .series-blocks .block-name {
    grid-column: 1;
    grid-row: 2;
  }

  .series-blocks .block-range {
    grid-column: 2;
    grid-row: 1;
  }

  .series-blocks .toggle {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  .hero-folio {
    gap: 7px;
    font-size: 8px;
  }

  .hero-folio span + span {
    padding-left: 7px;
  }

  .hero-visual figcaption {
    height: auto;
    gap: 12px;
    padding: 9px 12px;
    font-size: 8px;
  }

  .hero-stats {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
    font-size: 8px;
  }

  .hero-stats span,
  .hero-stats span:nth-child(2),
  .hero-stats span:nth-child(3) {
    padding: 10px 0;
    text-align: left;
  }

  .hero-stats span + span {
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .hero-stats span + span::before {
    display: none;
  }

  .investigation {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .story-opening h2 {
    font-size: 37px;
  }

  .story-intro {
    font-size: 15px;
  }

  .story-intro-emphasis {
    font-size: 19px;
  }

  .story-opening {
    margin-bottom: 54px;
  }

  .story-dossier,
  .story-dossier + .story-dossier {
    padding: 34px 0;
  }

  .dossier-copy {
    min-height: 0;
  }

  .story-source {
    margin-bottom: 38px;
  }

  .series-blocks {
    gap: 10px;
  }

  .series-blocks summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 5px 12px;
    min-height: 82px;
    padding: 16px 18px;
  }

  .series-blocks summary:hover {
    padding-left: 18px;
  }

  .series-blocks .block-number {
    grid-column: 1;
    grid-row: 1;
  }

  .series-blocks .block-name {
    grid-column: 1;
    grid-row: 2;
    font-size: 19px;
  }

  .series-blocks .block-range {
    display: none;
  }

  .series-blocks .toggle {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .series-blocks .chapters {
    padding: 0 15px;
  }

  .series-blocks .chapter.published {
    margin-left: -15px;
    padding-left: 12px;
  }

  .series-blocks .chapter.published:hover {
    padding-left: 12px;
  }

  .series-blocks .chapter {
    grid-template-columns: 36px minmax(0, 1fr) 20px;
  }

  .series-blocks .chapter-number {
    grid-column: 1;
    grid-row: 1;
  }

  .series-blocks .chapter-body {
    grid-column: 2;
    grid-row: 1;
  }

  .series-blocks .chapter-meta {
    grid-column: 2;
    grid-row: 2;
  }

  .series-blocks .chapter-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .consequence-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    min-height: 0;
    padding: 17px 0;
    border-left: 0;
  }

  .consequence-list {
    grid-template-columns: 1fr;
  }

  .story-stats > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .story-source a {
    display: block;
    margin: 5px 0 0;
  }

  .tension-panel {
    margin-right: -24px;
    margin-left: -24px;
    padding: 48px 24px;
  }

  .story-conclusion li {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }
}
