/*
Theme Name: YR Plain
Author: YR
Description: 営業と経営の知見を届ける、出版・編集デザインのWordPressテーマ。
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: yr-plain
*/

:root {
  --ink: #111b2b;
  --navy: #0b2239;
  --blue: #154b7d;
  --paper: #f2f0e9;
  --white: #fff;
  --yellow: #f5d328;
  --red: #c93b2c;
  --rule: #17202b;
  --muted: #5d6268;
  --sans: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  --serif: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --site-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-color: var(--red);
  text-underline-offset: 0.18em;
}

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

.utility-bar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.utility-bar__inner,
.site-header__inner,
.site-nav-wrap__inner,
.site-main,
.site-footer__inner {
  width: min(calc(100% - 3rem), var(--site-width));
  margin-inline: auto;
}

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

.utility-bar__inner a {
  justify-self: end;
  color: var(--white);
}

.site-header {
  border-bottom: 4px solid var(--navy);
  background: var(--paper);
}

.masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 142px;
  padding: 1.35rem 0 1.1rem;
}

.site-title {
  margin: 0;
  line-height: 1;
}

.site-title a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.site-title__logo {
  display: block;
  width: 118px;
  height: 82px;
  object-fit: contain;
}

.site-title span {
  max-width: 580px;
  font-size: clamp(1.7rem, 4vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.masthead__note {
  display: grid;
  gap: 0.2rem;
  max-width: 260px;
  padding-left: 1rem;
  border-left: 1px solid var(--rule);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-nav-wrap {
  color: var(--white);
  background: var(--navy);
}

.site-nav-wrap__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
}

.journal-menu-toggle {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 46px;
  padding: 0 1rem;
  border: 0;
  border-right: 1px solid rgb(255 255 255 / 22%);
  border-left: 1px solid rgb(255 255 255 / 22%);
  color: var(--white);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.journal-menu-toggle:hover,
.journal-menu-toggle:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.journal-drawer-layer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 420ms;
}

.journal-drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgb(11 34 57 / 35%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.journal-drawer {
  position: relative;
  width: min(430px, 88vw);
  height: 100%;
  overflow-y: auto;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 18px 0 50px rgb(0 0 0 / 18%);
  transform: translateX(-102%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-menu-open {
  overflow: hidden;
}

.journal-menu-open .journal-drawer-layer {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.journal-menu-open .journal-drawer-backdrop {
  opacity: 1;
}

.journal-menu-open .journal-drawer {
  transform: translateX(0);
}

.journal-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.journal-drawer__close {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--rule);
  color: var(--ink);
  background: transparent;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.journal-drawer h2 {
  margin: clamp(2.5rem, 7vh, 4.5rem) 0 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}

.journal-drawer__categories a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 0.25rem 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #b8b8b4;
  color: inherit;
  text-decoration: none;
}

.journal-drawer__number {
  grid-row: 1 / span 2;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.journal-drawer__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.journal-drawer__english {
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
}

.journal-drawer__count {
  grid-row: 1 / span 2;
  grid-column: 3;
  align-self: end;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.journal-drawer__categories a:hover .journal-drawer__name,
.journal-drawer__categories a:focus-visible .journal-drawer__name {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.13em;
}

.site-nav {
  display: flex;
  align-items: stretch;
  min-height: 46px;
}

.site-nav ul {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 1rem;
  border-right: 1px solid rgb(255 255 255 / 22%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .current-menu-item > a {
  color: var(--ink);
  background: var(--yellow);
}

.site-nav__home {
  border-left: 1px solid rgb(255 255 255 / 22%);
}

.site-nav-wrap__tagline {
  color: #cfd7de;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.site-main {
  min-height: 58vh;
  padding: 2rem 0 4.5rem;
}

.section-kicker {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  min-height: 48px;
  margin-bottom: 1.4rem;
  border-top: 4px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker > :first-child {
  align-self: stretch;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.section-kicker strong {
  padding-left: 0.8rem;
  font-size: 0.88rem;
}

.section-kicker > :last-child {
  color: var(--muted);
}

.archive-header {
  margin-bottom: 2rem;
}

.page-title {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.story-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  margin: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.story-card--lead {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
}

.story-card--latest {
  grid-column: 1 / -1;
}

.story-card--latest-secondary {
  grid-column: span 6;
  min-height: 210px;
}

.latest-secondary__link {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding: 1.25rem clamp(1.25rem, 3vw, 2.25rem);
  color: inherit;
  text-decoration: none;
}

.latest-secondary__link > span,
.latest-secondary__link small {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.latest-secondary__link h2 {
  align-self: center;
  max-width: 12em;
  margin: 1.2rem 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.latest-secondary__link small {
  color: var(--muted);
}

.latest-secondary__link:hover h2,
.latest-secondary__link:focus-visible h2 {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.13em;
}

.latest-secondary__link:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -6px;
}

.story-card__image {
  display: block;
  min-height: 230px;
  overflow: hidden;
  background: #cfd7dc;
}

.story-card--lead .story-card__image {
  min-height: 470px;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.story-card:hover .story-card__image img {
  transform: scale(1.02);
}

.story-card__image--placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 43%, rgb(255 255 255 / 10%) 43% 57%, transparent 57%),
    var(--blue);
  text-decoration: none;
}

.story-card__image--placeholder span {
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  opacity: 0.9;
}

.story-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.story-card__eyebrow,
.entry-meta,
.editorial-header__kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card__eyebrow {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--rule);
}

.story-card__eyebrow a {
  text-decoration: none;
}

.story-card .entry-title {
  margin: 1rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.story-card--lead .entry-title {
  font-size: clamp(2rem, 4vw, 4rem);
}

.entry-title a {
  text-decoration: none;
}

.entry-title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.story-card .entry-meta {
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--muted);
}

.editor-note {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.8fr);
  gap: 0.5rem 2rem;
  width: 100%;
  margin: clamp(2rem, 3vw, 3rem) 0 0;
  padding: 1rem 0;
  border-top: 1px solid #9a9a95;
  border-bottom: 1px solid #9a9a95;
}

.editor-note strong {
  grid-row: 1 / span 2;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.editor-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  letter-spacing: 0.01em;
  line-height: 1.75;
}

.editor-note span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: right;
}

.start-reading {
  margin-top: clamp(2.25rem, 4vw, 3.75rem);
}

.start-reading__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.start-reading__header > div {
  display: grid;
  gap: 0.15rem;
}

.start-reading__header strong {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.start-reading__header span {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.start-reading__header small {
  padding-bottom: 0.18rem;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

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

.series-contents__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr auto auto;
  column-gap: 0.75rem;
  min-height: 370px;
  padding: 1.5rem clamp(1rem, 2.5vw, 2rem) 1.35rem 0;
  color: inherit;
  text-decoration: none;
}

.series-contents__item + .series-contents__item {
  padding-left: clamp(1rem, 2.5vw, 2rem);
  border-left: 1px solid #b8b8b4;
}

.series-contents__number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.series-contents__kicker {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #9a9a95;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.series-contents__item strong {
  grid-column: 1 / -1;
  max-width: 9em;
  padding: 1.5rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.series-contents__item p {
  grid-column: 1 / -1;
  max-width: 19em;
  margin: 0;
  color: #4b4b4b;
  font-size: 0.92rem;
  line-height: 1.75;
}

.series-contents__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.series-contents__meta small {
  color: var(--muted);
  font: inherit;
}

.series-contents__item:hover strong,
.series-contents__item:focus-visible strong {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.13em;
}

.series-contents__item:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -2px;
}

.start-reading__all {
  display: block;
  padding-top: 1.2rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-decoration: none;
}

.editorial-entry {
  max-width: 1120px;
  margin-inline: auto;
}

.editorial-header {
  padding: 1rem 0 2.2rem;
  border-top: 5px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.editorial-header__kicker {
  margin-bottom: 3rem;
}

.editorial-header__kicker a {
  text-decoration: none;
}

.editorial-header .entry-title {
  max-width: 1020px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.editorial-header .entry-title--long {
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
}

.editorial-header__meta {
  justify-content: flex-start;
  margin-top: 2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
}

.editorial-hero {
  margin: 2rem 0 0;
}

.editorial-hero img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 720px);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-top: 3.5rem;
}

.editorial-rail {
  display: grid;
  gap: 0.25rem;
  position: sticky;
  top: 1rem;
  padding-top: 0.8rem;
  border-top: 5px solid var(--yellow);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.editorial-rail strong {
  font-size: 1rem;
}

.editorial-rail small {
  color: var(--muted);
}

.entry-content {
  color: #3d3d3d;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.entry-content > p:first-of-type::first-letter {
  float: left;
  margin: 0.09em 0.14em 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 3.5em;
  font-weight: 900;
  line-height: 0.82;
}

.entry-content h2 {
  margin: 3rem 0 1.25rem;
  padding: 0;
  border: 0;
  color: #1a1a1a;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.entry-content h3 {
  margin: 2em 0 0.7em;
  color: #1a1a1a;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.3;
}

.entry-content a {
  font-weight: 700;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 8px solid var(--yellow);
  background: var(--white);
  font-size: 1.25em;
}

.entry-content .journal-pullquote {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border: 0;
  border-top: 2px solid #1a1a1a;
  border-bottom: 1px solid #d4d4d4;
  background: transparent;
  color: #2c2c2c;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
}

.entry-content .journal-pullquote p,
.entry-content .journal-pullquote ul {
  margin: 0;
}

.entry-content .journal-pullquote ul {
  padding-left: 1.2em;
}

.entry-content .journal-pullquote li + li {
  margin-top: 0.35em;
}

.entry-content pre {
  overflow: auto;
  padding: 1rem;
  background: var(--white);
}

.story-continuation {
  width: min(100%, 880px);
  margin: clamp(4rem, 8vw, 7rem) 0 0 auto;
  color: var(--navy);
}

.story-continuation__end {
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-align: center;
}

.next-story {
  position: relative;
  display: block;
  margin-top: clamp(2.75rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) 0 1.4rem;
  border-top: 1px solid #9a9a95;
  color: inherit;
  text-decoration: none;
}

.series-restart--secondary {
  max-width: 650px;
}

.series-restart__label,
.latest-series__status > span {
  display: block;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.series-restart--secondary h2 {
  margin: 1rem 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.series-restart--secondary > p {
  margin: 0 0 1.5rem;
  color: #4b4b4b;
  font-size: 0.92rem;
  line-height: 1.75;
}

.series-restart--secondary > a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid #b8b8b4;
  border-bottom: 1px solid #b8b8b4;
  color: inherit;
  text-decoration: none;
}

.series-restart--secondary > a strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.series-restart--secondary > a small,
.series-restart--primary > small {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.latest-series__status {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem 2rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid #9a9a95;
}

.latest-series__status strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.latest-series__status p {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

.series-restart--primary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  color: inherit;
  text-decoration: none;
}

.series-restart--primary .series-restart__label {
  grid-column: 1 / -1;
  margin-bottom: 0.6rem;
}

.series-restart--primary .series-restart__number {
  font-size: 0.75rem;
  font-weight: 800;
}

.series-restart--primary > strong {
  max-width: 15em;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.series-restart--primary > p {
  grid-column: 2;
  max-width: 30em;
  margin: 0.5rem 0 0;
  color: #4b4b4b;
  line-height: 1.75;
}

.series-restart--primary > small {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
  text-align: right;
}

.series-restart a:hover strong,
.series-restart a:focus-visible strong,
a.series-restart:hover > strong,
a.series-restart:focus-visible > strong {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.13em;
}

.next-story__label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.next-story__body {
  max-width: 680px;
  padding-top: clamp(1.75rem, 4vw, 3rem);
  padding-right: 2rem;
}

.next-story__body h2 {
  max-width: 15em;
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.next-story__body p {
  max-width: 34em;
  margin: 0;
  color: #4b4b4b;
  font-size: 1rem;
  line-height: 1.8;
}

.next-story__read {
  display: block;
  margin-top: 2.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: right;
}

.next-story:hover .next-story__body h2,
.next-story:focus-visible .next-story__body h2 {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.13em;
}

.next-story:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 8px;
}

.pagination,
.post-navigation {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 4px solid var(--rule);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  min-height: 36px;
  border: 1px solid var(--rule);
  text-decoration: none;
}

.page-numbers.current {
  background: var(--yellow);
}

input,
textarea,
button {
  max-width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--white);
  font: inherit;
}

textarea {
  width: 100%;
}

button,
input[type="submit"] {
  color: var(--white);
  background: var(--navy);
  font-family: var(--sans);
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  border-top: 10px solid var(--yellow);
  background: var(--navy);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 3rem 0;
}

.footer-brand,
.footer-meta {
  display: grid;
  gap: 0.4rem;
}

.footer-brand strong {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.footer-brand span {
  font-family: var(--serif);
  font-style: italic;
}

.footer-meta {
  align-content: end;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .story-card,
  .story-card--lead {
    grid-column: span 6;
    display: flex;
  }

  .story-card--lead .story-card__image {
    min-height: 300px;
  }

  .editorial-layout {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 2rem;
  }

  .site-nav-wrap__tagline {
    display: none;
  }
}

@media (max-width: 640px) {
  .utility-bar__inner,
  .site-header__inner,
  .site-nav-wrap__inner,
  .site-main,
  .site-footer__inner {
    width: min(calc(100% - 1.5rem), var(--site-width));
  }

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

  .utility-bar__edition,
  .masthead__note {
    display: none;
  }

  .masthead {
    min-height: 100px;
  }

  .site-title__logo {
    width: 72px;
    height: 51px;
  }

  .site-title span {
    font-size: 1.45rem;
  }

  .site-nav-wrap__inner {
    width: 100%;
    overflow-x: auto;
  }

  .journal-drawer {
    width: min(92vw, 430px);
  }

  .journal-drawer__categories a {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .journal-drawer__count {
    grid-row: 3;
    grid-column: 2;
    margin-top: 0.35rem;
  }

  .site-nav {
    white-space: nowrap;
  }

  .site-nav a {
    padding-inline: 0.75rem;
  }

  .site-main {
    padding-top: 1.25rem;
  }

  .section-kicker {
    grid-template-columns: 42px 1fr;
  }

  .section-kicker > :last-child {
    display: none;
  }

  .story-card,
  .story-card--lead {
    grid-column: 1 / -1;
  }

  .story-card__image,
  .story-card--lead .story-card__image {
    min-height: 250px;
  }

  .story-card--latest {
    display: block;
  }

  .story-card--latest-secondary {
    grid-column: span 6;
    min-height: 180px;
  }

  .latest-secondary__link {
    padding: 1rem;
  }

  .latest-secondary__link h2 {
    font-size: clamp(1.35rem, 6.5vw, 1.9rem);
  }

  .editor-note {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .editor-note strong {
    grid-row: auto;
  }

  .editor-note p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .editor-note p br {
    display: none;
  }

  .start-reading {
    margin-top: 2.5rem;
  }

  .start-reading__header {
    display: grid;
    gap: 0.7rem;
  }

  .start-reading__header small {
    padding: 0;
  }

  .series-contents {
    display: block;
  }

  .series-contents__item {
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto auto auto;
    min-height: 0;
    padding: 1.2rem 0;
  }

  .series-contents__item + .series-contents__item {
    padding-left: 0;
    border-top: 1px solid #b8b8b4;
    border-left: 0;
  }

  .series-contents__item strong {
    grid-column: 1 / -1;
    max-width: none;
    padding: 1.2rem 0 0.8rem;
    font-size: 1.55rem;
  }

  .series-contents__item p {
    font-size: 0.9rem;
  }

  .series-contents__meta {
    padding-top: 1rem;
  }

  .editorial-header__kicker {
    margin-bottom: 1.7rem;
  }

  .editorial-header .entry-title {
    font-size: clamp(2.05rem, 10vw, 3.6rem);
    letter-spacing: -0.015em;
    line-height: 1.15;
  }

  .editorial-header .entry-title--long {
    font-size: clamp(1.9rem, 8.5vw, 3rem);
  }

  .editorial-layout {
    display: block;
    margin-top: 2.2rem;
  }

  .entry-content .journal-pullquote {
    margin: 2rem 0;
    padding: 1.5rem 0;
    font-size: clamp(1.15rem, 5.4vw, 1.4rem);
    line-height: 1.55;
  }

  .entry-content > p:first-of-type::first-letter {
    margin-right: 0.12em;
    font-size: 3em;
    line-height: 0.86;
  }

  .story-continuation {
    margin-top: 4rem;
  }

  .story-continuation__end {
    margin-bottom: 2.75rem;
  }

  .series-restart--secondary > p br {
    display: none;
  }

  .series-restart--secondary > a {
    grid-template-columns: 30px 1fr;
  }

  .series-restart--secondary > a small {
    grid-column: 2;
  }

  .latest-series__status {
    gap: 0.6rem 1rem;
  }

  .series-restart--primary {
    grid-template-columns: 32px 1fr;
  }

  .next-story__body {
    padding-top: 1.6rem;
    padding-right: 0;
  }

  .next-story__body h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 11vw, 3.2rem);
    line-height: 1.15;
  }

  .next-story__body p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .next-story__read {
    margin-top: 2rem;
  }

  .editorial-rail {
    position: static;
    grid-template-columns: auto auto 1fr;
    margin-bottom: 1.5rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}


/* Editorial series navigation */
.story-continuation {
  width: min(100%, 880px);
  margin: clamp(4.5rem, 9vw, 7.5rem) 0 0 auto;
  color: var(--navy);
}

.story-continuation__end {
  margin: 0 0 clamp(3.5rem, 7vw, 5.5rem);
  color: rgba(19, 42, 68, 0.62);
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-align: center;
}

.series-location {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #c9c9c3;
}

.series-location__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(19, 42, 68, 0.62);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
}

.series-location__line i {
  margin: 0 0.8em;
  color: #aaa9a2;
  font-style: normal;
}

.series-location__line strong {
  color: rgba(19, 42, 68, 0.82);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.series-location p {
  margin: 0.45rem 0 0;
  color: #85857f;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.series-next {
  display: block;
  margin-top: clamp(3.75rem, 7vw, 5.5rem);
  color: inherit;
  text-decoration: none;
}

.series-next__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1.5px solid var(--navy);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.series-next__meta b {
  color: #d3a900;
  font-weight: inherit;
}

.series-next__body {
  padding: clamp(2rem, 4.5vw, 3.5rem) 0 0;
}

.series-next__body h2 {
  max-width: 15em;
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.series-next__body p {
  max-width: 34em;
  margin: 0;
  color: #555550;
  font-size: 0.98rem;
  line-height: 1.8;
}

.series-next__body > span {
  display: block;
  margin-top: 2.25rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: right;
}

.series-next:hover h2,
.series-next:focus-visible h2 {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.14em;
}

.series-next:focus-visible,
.series-beginning:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 7px;
}

.series-beginning {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.55rem 1rem;
  margin-top: clamp(3.75rem, 7vw, 5.5rem);
  padding-top: 1.15rem;
  border-top: 1px solid #d9d9d3;
  color: rgba(19, 42, 68, 0.76);
  text-decoration: none;
}

.series-beginning__label {
  grid-column: 1 / -1;
  margin-bottom: 0.4rem;
  color: rgba(19, 42, 68, 0.58);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.series-beginning__number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.series-beginning strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
}

.series-beginning small {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.series-beginning:hover strong,
.series-beginning:focus-visible strong {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 0.14em;
}

@media (max-width: 640px) {
  .story-continuation {
    margin-top: 4rem;
  }

  .story-continuation__end {
    margin-bottom: 3rem;
  }

  .series-location__line {
    align-items: flex-start;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .series-location__line > span:first-child {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0;
  }

  .series-location__line strong {
    flex-basis: 100%;
    margin-top: 0.2rem;
    font-size: 0.92rem;
  }

  .series-location__line i {
    margin: 0 0.55em;
  }

  .series-next {
    margin-top: 3.25rem;
  }

  .series-next__body {
    padding-top: 1.75rem;
  }

  .series-next__body h2 {
    font-size: clamp(2rem, 10.5vw, 2.6rem);
  }

  .series-next__body p {
    font-size: 0.92rem;
  }

  .series-beginning {
    grid-template-columns: 1.8rem minmax(0, 1fr);
    margin-top: 3.5rem;
  }

  .series-beginning small {
    grid-column: 2;
    margin-top: 0.35rem;
    text-align: left;
  }
}


/* Dynamic category progress */
.series-progress {
  display: flex;
  width: 100%;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.series-progress li {
  position: relative;
  flex: 1 1 0;
  min-width: 2.5rem;
  padding-top: 1.15rem;
  color: rgba(19, 42, 68, 0.58);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.series-progress li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid #a9aaa5;
  border-radius: 50%;
  background: var(--paper);
  content: "";
  transform: translateY(-50%);
  z-index: 2;
}

.series-progress li:not(:last-child)::after {
  position: absolute;
  top: 0;
  left: 0.45rem;
  width: calc(100% - 0.45rem);
  height: 1px;
  background: #c7c8c3;
  content: "";
}

.series-progress li.is-current {
  color: var(--navy);
}

.series-progress li.is-current::before {
  width: 0.62rem;
  height: 0.62rem;
  border-color: #d3a900;
  background: var(--yellow);
  box-shadow: 0 0 0 0.2rem var(--paper);
}

.series-progress small {
  display: block;
  margin-top: 0.45rem;
  color: rgba(19, 42, 68, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .series-progress {
    overflow-x: auto;
    margin-top: 1.75rem;
    padding-bottom: 0.5rem;
  }

  .series-progress li {
    flex-basis: 3.25rem;
    min-width: 3.25rem;
    font-size: 0.66rem;
  }
}


/* Series title and beginning-link refinement */
.series-location__line em {
  color: rgba(19, 42, 68, 0.72);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

.series-beginning {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 640px) {
  .series-location__line em {
    flex-basis: 100%;
    margin-top: 0.2rem;
    font-size: 0.86rem;
  }

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

  .series-beginning small {
    grid-column: 1;
  }
}


/* Linked titles in category progress */
.series-progress a {
  display: block;
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
  color: inherit;
  text-decoration: none;
}

.series-progress a > span {
  display: block;
}

.series-progress a > strong {
  display: block;
  max-width: 16em;
  margin-top: 0.65rem;
  color: rgba(19, 42, 68, 0.76);
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
}

.series-progress a:hover > strong,
.series-progress a:focus-visible > strong {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.14em;
}

.series-progress a:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 5px;
}

.series-progress li.is-current a > strong {
  color: var(--navy);
}

@media (max-width: 640px) {
  .series-progress li {
    flex-basis: 11rem;
    min-width: 11rem;
  }

  .series-progress a > strong {
    max-width: 13em;
    font-size: 0.8rem;
  }
}


/* Compact editorial series progress: number line plus adjacent stories. */
.series-progress li { flex: 1 1 0; min-width: 1.8rem; padding-top: 1rem; font-size: 0.64rem; font-weight: 800; }
.series-progress a { padding-right: 0.35rem; }
.series-progress li.is-current a { color: var(--navy); }
.series-neighbors { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2.25rem; border-top: 1px solid rgb(201, 201, 195); }
.series-neighbors__item { display: grid; grid-template-rows: auto auto 1fr auto; min-height: 12rem; padding: 1.4rem clamp(1rem, 2vw, 1.5rem); border-right: 1px solid rgb(201, 201, 195); color: inherit; text-decoration: none; }
.series-neighbors__item:last-child { border-right: 0; }
.series-neighbors__item.is-current { background: rgba(211, 169, 0, 0.07); }
.series-neighbors__item.is-empty { opacity: 0; }
.series-neighbors__item small, .series-neighbors__item em { font-family: var(--sans); font-size: 0.62rem; font-style: normal; font-weight: 800; letter-spacing: 0.12em; }
.series-neighbors__item > span { margin-top: 0.65rem; color: rgb(211, 169, 0); font-family: var(--sans); font-size: 0.72rem; font-weight: 800; }
.series-neighbors__item strong { margin-top: 0.75rem; font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 600; line-height: 1.45; }
.series-neighbors__item em { margin-top: 1.2rem; text-align: right; }
.series-neighbors__item:hover strong, .series-neighbors__item:focus-visible strong { text-decoration: underline; text-decoration-color: var(--yellow); text-underline-offset: 0.15em; }
.series-neighbors__item:focus-visible { outline: 2px solid var(--navy); outline-offset: -4px; }
@media (max-width: 640px) {
  .series-progress li { flex: 0 0 3.2rem; min-width: 3.2rem; }
  .series-neighbors { grid-template-columns: 1fr; }
  .series-neighbors__item { min-height: 0; border-right: 0; border-bottom: 1px solid rgb(201, 201, 195); }
  .series-neighbors__item.is-empty { display: none; }
}
