:root {
  --paper: #fcfbf8;
  --paper-deep: #f0f2f2;
  --ink: #202321;
  --muted: #666963;
  --line: #dedbd2;
  --forest: #263f4d;
  --forest-soft: #e8eff2;
  --rust: #8b6555;
  --rust-soft: #f2eae6;
  --white: #fff;
  --shadow: 0 18px 42px rgba(28, 37, 33, 0.08);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(222, 219, 210, 0.86);
  background: rgba(252, 251, 248, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.site-brand__mark {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--forest);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.site-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.site-brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: #40433f;
  font-size: 0.86rem;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--forest);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  font: inherit;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(32, 63, 54, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(32, 63, 54, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 540px;
  height: 540px;
  content: "";
  border: 1px solid rgba(32, 63, 54, 0.12);
  border-radius: 50%;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  gap: 9vw;
  align-items: center;
  min-height: 650px;
  padding-block: 100px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--forest);
  font-style: normal;
}

.hero__lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: #4f534f;
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 2.15;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-width: 160px;
  padding: 12px 20px;
  border: 1px solid var(--forest);
  border-radius: 3px;
  color: var(--forest);
  font-size: 0.87rem;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.button:hover {
  box-shadow: 0 8px 20px rgba(32, 63, 54, 0.12);
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--forest);
}

.hero__index {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.hero__index-number {
  padding: 25px 0;
  color: var(--rust);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.hero__index a {
  display: block;
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 0.2s ease;
}

.hero__index a:hover {
  padding-left: 18px;
}

.hero__index strong,
.hero__index small {
  display: block;
}

.hero__index strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.hero__index small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.section {
  padding-block: 100px;
}

.section--compact {
  padding-top: 35px;
}

.section--tinted {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading h2,
.page-intro h1,
.concept h2,
.journey h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.text-link--light {
  color: #d8e5df;
}

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

.article-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.article-card__link {
  display: grid;
  grid-template-columns: 30% 1fr;
  min-height: 100%;
  text-decoration: none;
}

.article-grid--three .article-card__link,
.article-card--compact .article-card__link {
  grid-template-columns: 1fr;
}

.article-card__visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #d4e0da;
  background:
    radial-gradient(circle at 72% 23%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
    linear-gradient(145deg, #365564, #1d3440);
}

.article-card__visual::before,
.article-card__visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.article-card__visual::before {
  width: 130px;
  height: 130px;
}

.article-card__visual::after {
  width: 78px;
  height: 78px;
}

.article-card__visual span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}

.article-grid--three .article-card__visual,
.article-card--compact .article-card__visual {
  min-height: 150px;
}

.article-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.article-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.45;
}

.article-card__body > p:not(.eyebrow) {
  display: -webkit-box;
  margin: 14px 0 18px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card__meta {
  width: 100%;
  margin: 0 0 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.article-card__meta div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
}

.article-card__meta dt {
  color: var(--muted);
}

.article-card__meta dd {
  margin: 0;
}

.article-card .text-link {
  margin-top: auto;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 3px 9px;
  border: 1px solid #d7dcd8;
  border-radius: 999px;
  color: #59605c;
  background: #f9faf8;
  font-size: 0.7rem;
}

.browse-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 60px;
}

.browse-tabs h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.taxonomy-card {
  position: relative;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  text-decoration: none;
  transition: 0.2s ease;
}

.taxonomy-card:hover {
  border-color: var(--forest);
  box-shadow: 0 10px 30px rgba(32, 63, 54, 0.08);
}

.taxonomy-card__count {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--rust);
  font-size: 0.68rem;
}

.taxonomy-card strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.taxonomy-card > span:last-child {
  color: var(--muted);
  font-size: 0.7rem;
}

.concept {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  color: #f0f4f1;
  background: var(--forest);
}

.concept::after {
  position: absolute;
  right: -140px;
  bottom: -330px;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10vw;
  align-items: center;
}

.concept__number {
  margin: 0;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9;
}

.concept h2 {
  color: var(--white);
}

.concept p:not(.eyebrow, .concept__number) {
  color: #c8d4ce;
}

.journey {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
}

.journey ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey li {
  display: grid;
  grid-template-columns: 50px 150px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.journey li:last-child {
  border-bottom: 1px solid var(--line);
}

.journey li span {
  color: var(--rust);
  font-family: var(--serif);
}

.journey li strong {
  font-family: var(--serif);
}

.journey li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs {
  padding-top: 24px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.72rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  content: "/";
  color: #aaa;
}

.breadcrumbs a {
  text-decoration: none;
}

.page-intro {
  max-width: 900px;
  padding-top: 80px;
  padding-bottom: 45px;
}

.page-intro > p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  line-height: 2;
}

.result-count {
  margin: 0 0 24px;
  color: var(--muted);
}

.result-count strong,
.list-toolbar strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.list-toolbar p {
  margin: 0;
}

.list-toolbar label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.list-toolbar select {
  padding: 9px 34px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.article-hero {
  padding: 70px 0 80px;
  border-bottom: 1px solid var(--line);
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 7vw;
  align-items: center;
}

.article-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.original-title {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
}

.article-deck {
  max-width: 720px;
  margin: 28px 0 24px;
  color: #4d514d;
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 2.05;
}

.published-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.article-hero__visual {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: #d7e2dd;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 24%, rgba(255, 255, 255, 0.1) 25% 25.5%, transparent 26% 34%, rgba(255, 255, 255, 0.08) 35% 35.5%, transparent 36%),
    linear-gradient(145deg, #365766, #1b323e);
}

.article-hero__visual span,
.article-hero__visual small {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
}

.article-hero__visual strong {
  align-self: center;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
}

.article-hero__visual small {
  align-self: flex-end;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 720px);
  gap: clamp(50px, 8vw, 110px);
  justify-content: center;
  padding-block: 90px 120px;
}

.anime-facts {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.anime-facts h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.anime-facts dl {
  margin: 0;
}

.anime-facts dl div {
  padding: 11px 0;
  border-top: 1px solid #eceae3;
}

.anime-facts dt {
  color: var(--muted);
  font-size: 0.68rem;
}

.anime-facts dd {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-size: 0.88rem;
}

.article-body {
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 2.15;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  position: relative;
  scroll-margin-top: 110px;
  font-weight: 600;
  line-height: 1.55;
}

.article-body h2 {
  margin: 3.8em 0 1.2em;
  padding: 0 0 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 1.75rem;
}

.article-body h2::before {
  position: absolute;
  top: 0.25em;
  bottom: 0.55em;
  left: 0;
  width: 3px;
  content: "";
  background: var(--rust);
}

.article-body h3 {
  margin: 2.8em 0 1em;
  font-size: 1.35rem;
}

.article-body p {
  margin: 0 0 1.7em;
}

.article-body a {
  color: #2d604f;
  text-underline-offset: 0.18em;
}

.article-body blockquote {
  margin: 2.5em 0;
  padding: 20px 26px;
  color: #4e554f;
  border-left: 3px solid var(--forest);
  background: var(--forest-soft);
}

.article-body blockquote p {
  margin: 0;
}

.article-body li {
  margin-bottom: 0.55em;
}

.article-body pre {
  overflow-x: auto;
  padding: 20px;
  border-radius: 4px;
  background: #1f2723;
  color: #eff5f1;
  font-size: 0.84rem;
}

.article-body code:not(pre code) {
  padding: 0.14em 0.35em;
  border-radius: 3px;
  background: #eeece6;
  font-family: ui-monospace, monospace;
  font-size: 0.86em;
}

.article-body hr {
  width: 80px;
  margin: 4em auto;
  border: 0;
  border-top: 1px solid var(--line);
}

.spoiler-note-top,
.spoiler-notice {
  border: 1px solid #d9c8bf;
  border-radius: 4px;
  background: #f7f0ec;
}

.spoiler-note-top {
  margin: 0 0 38px;
  padding: 18px 22px;
  color: #654b40;
}

.spoiler-note-top strong {
  font-family: var(--serif);
}

.spoiler-note-top p {
  margin: 3px 0 0;
  font-size: 0.8rem;
}

.spoiler-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4em 0 0;
  padding: 16px 18px;
  font-family: var(--sans);
}

.spoiler-notice__label {
  flex: none;
  padding: 3px 8px;
  color: #6b493b;
  border: 1px solid #caa999;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
}

.spoiler-notice p {
  margin: 0;
  color: #654f45;
  font-size: 0.79rem;
}

.article-body .spoiler-heading {
  margin-top: 1em;
  padding-top: 18px;
  border-top: 3px solid #c4a496;
}

.article-connections {
  max-width: 1160px;
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

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

.related-work-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--forest);
  border-radius: 5px;
  background: var(--white);
}

.related-work-card--movie {
  border-top-color: var(--rust);
}

.related-work-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.related-work-card__labels span {
  padding: 3px 8px;
  border: 1px solid #d6dadd;
  border-radius: 999px;
  color: var(--muted);
  background: #f8f9f9;
  font-size: 0.65rem;
}

.related-work-card--movie .related-work-card__labels span:last-child {
  border-color: #dccbc3;
  color: #765346;
  background: #faf4f1;
}

.related-work-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
}

.related-work-card p {
  margin: 13px 0 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.related-work-card .button {
  width: 100%;
  margin-top: auto;
  font-size: 0.75rem;
}

.button--movie {
  color: #765346;
  border-color: #a37866;
  background: #fffaf7;
}

.connection-grid > section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.connection-grid h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.compact-work-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-work-list li {
  border-top: 1px solid #eceae3;
}

.compact-work-list a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
}

.compact-work-list span,
.compact-work-list small {
  display: block;
}

.compact-work-list span {
  font-family: var(--serif);
  font-size: 0.87rem;
}

.compact-work-list small {
  color: var(--muted);
  font-size: 0.65rem;
}

.empty-state {
  color: var(--muted);
  font-size: 0.8rem;
}

.article-neighbors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 55px;
}

.article-neighbors a {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
}

.article-neighbors a:last-child {
  align-items: flex-end;
  text-align: right;
}

.article-neighbors small {
  color: var(--muted);
  font-size: 0.66rem;
}

.article-neighbors strong {
  font-family: var(--serif);
}

.site-footer {
  padding: 60px 0 20px;
  color: #cbd5d0;
  background: #172b25;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.site-footer p {
  max-width: 430px;
  margin: 8px 0 0;
  font-size: 0.78rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer a {
  font-size: 0.75rem;
  text-decoration: none;
}

.site-footer__copyright {
  width: min(1160px, calc(100% - 40px));
  max-width: none !important;
  margin: 40px auto 0 !important;
  padding-top: 18px;
  color: #84948c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .hero__grid,
  .article-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 60px;
    padding-block: 80px;
  }

  .hero__index {
    max-width: 560px;
  }

  .article-hero__visual {
    max-width: 320px;
    aspect-ratio: 5 / 3;
  }

  .article-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 45px;
  }

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

  .article-grid--three .article-card:last-child {
    grid-column: auto;
  }

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

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

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-brand small {
    display: none;
  }

  .site-nav {
    top: 68px;
  }

  .hero__grid {
    min-height: 0;
    padding-block: 65px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .hero__lead {
    font-size: 0.94rem;
  }

  .section {
    padding-block: 70px;
  }

  .section--compact {
    padding-top: 25px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .article-grid,
  .article-grid--three,
  .related-work-grid,
  .browse-tabs,
  .concept__grid,
  .journey,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .article-card__link {
    grid-template-columns: 1fr;
  }

  .article-card__visual {
    min-height: 150px;
  }

  .article-card__body {
    padding: 24px;
  }

  .browse-tabs {
    gap: 42px;
  }

  .concept {
    padding-block: 80px;
  }

  .concept__number {
    display: none;
  }

  .journey {
    gap: 40px;
  }

  .journey li {
    grid-template-columns: 32px 1fr;
  }

  .journey li p {
    grid-column: 2;
  }

  .page-intro {
    padding-top: 55px;
    padding-bottom: 25px;
  }

  .list-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero {
    padding: 50px 0 60px;
  }

  .article-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .article-hero__visual {
    max-width: none;
    aspect-ratio: 2 / 1;
  }

  .article-layout {
    grid-template-columns: 1fr;
    padding-block: 55px 75px;
  }

  .anime-facts {
    order: 2;
  }

  .article-body {
    font-size: 1rem;
    line-height: 2.05;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .spoiler-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .article-neighbors {
    grid-template-columns: 1fr;
  }

  .article-neighbors a:last-child {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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