:root {
  color-scheme: light;
  --paper: #f6f7f1;
  --paper-blue: #e7ecff;
  --ink: #111318;
  --muted: #646a78;
  --line: rgba(17, 19, 24, 0.16);
  --blue: #1738b8;
  --blue-deep: #0c1f76;
  --blue-soft: #dce5ff;
  --signal: #e8ff4f;
  --coral: #ff685d;
  --white: #ffffff;
  --shell: min(1460px, calc(100% - 64px));
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
p,
figure,
dl,
dd,
ol {
  margin: 0;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 90px;
  padding: 12px max(28px, calc((100vw - 1460px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 241, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 58px auto;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 9px 14px rgba(255, 104, 93, 0.18));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 21px;
  letter-spacing: 0.06em;
}

.brand-copy small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  position: relative;
  padding: 13px 13px;
  color: #454a57;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--coral);
  content: "";
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(36px, 5vw, 84px);
  width: var(--shell);
  min-height: min(770px, calc(100vh - 90px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 128px) 0 clamp(62px, 7vw, 108px);
  align-items: center;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 40px;
  left: -160px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(23, 56, 184, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--blue);
}

.eyebrow span {
  padding: 8px 11px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.eyebrow b {
  font-size: 13px;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.5vw, 98px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 690px;
  margin-top: 30px;
  color: #4b5060;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(23, 56, 184, 0.22);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-ghost:hover {
  background: var(--signal);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  gap: 7px;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-facts dd {
  font-size: 14px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: -24px 38px 42px -30px;
  border-radius: 42px;
  background: var(--blue-soft);
  content: "";
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 8 / 5;
  border-radius: 36px 36px 120px 36px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(17, 19, 24, 0.2);
}

.hero-visual > p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-align: right;
  text-transform: uppercase;
}

.hero-stamp {
  position: absolute;
  right: -20px;
  bottom: 42px;
  display: grid;
  width: 118px;
  height: 118px;
  place-content: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 40px rgba(17, 19, 24, 0.2);
}

.hero-stamp b {
  font-size: 34px;
  line-height: 1;
}

.hero-stamp span {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--signal);
}

.ticker div {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  padding: 18px 30px;
}

.ticker span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.section {
  padding: clamp(84px, 9vw, 150px) max(32px, calc((100vw - 1460px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading > p,
.episodes-head > p,
.highlight-title > p,
.watch-head > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.section-no {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.21em;
}

h2 {
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  display: grid;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(17, 19, 24, 0.13);
}

.feature-card figure {
  min-height: 390px;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover img {
  transform: scale(1.035);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.feature-copy span,
.comic-item span,
.episode-strip small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-copy h3 {
  margin-top: 13px;
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1.18;
}

.feature-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.feature-copy small {
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-weight: 750;
}

.feature-card-wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.feature-card-wide .feature-copy {
  padding: 42px;
}

.feature-card-wide .feature-copy h3 {
  font-size: clamp(32px, 3.5vw, 54px);
}

.feature-card-accent {
  background: var(--paper-blue);
}

.ranking {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(560px, 1.25fr);
  gap: clamp(56px, 8vw, 130px);
  background: var(--blue);
  color: var(--white);
}

.ranking-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.ranking .section-no {
  color: var(--signal);
}

.ranking-intro p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.9;
}

.ranking-note {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.ranking-note b {
  color: var(--signal);
}

.ranking-note span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.ranking-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.ranking-list li {
  display: grid;
  grid-template-columns: 64px 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.ranking-list li > img {
  width: 52px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  object-fit: cover;
}

.ranking-list .rank {
  color: var(--signal);
  font-size: 34px;
  font-weight: 900;
}

.ranking-list div {
  display: grid;
  gap: 8px;
}

.ranking-list b {
  font-size: clamp(18px, 1.8vw, 25px);
}

.ranking-list small,
.ranking-list em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-style: normal;
}

.ranking-list em {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  white-space: nowrap;
}

.comic-wall {
  background: var(--ink);
  color: var(--white);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.62);
}

.comic-wall .section-no {
  color: var(--signal);
}

.comic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 18px;
}

.comic-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  border-radius: 26px;
  background: #23262f;
}

.comic-item-tall {
  grid-column: span 5;
  grid-row: span 3;
}

.comic-item-wide {
  grid-column: span 8;
}

.comic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.comic-item::after {
  position: absolute;
  inset: 26% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 11, 0.94));
  content: "";
}

.comic-item:hover img {
  transform: scale(1.04);
}

.comic-item > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 3vw, 38px);
}

.comic-item span {
  color: var(--signal);
}

.comic-item h3 {
  margin-top: 10px;
  font-size: clamp(25px, 3vw, 46px);
}

.comic-item p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.episodes {
  background: var(--paper-blue);
}

.episodes-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.episodes-head .section-no {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.episode-strips {
  display: grid;
  border-top: 1px solid var(--ink);
}

.episode-strip {
  display: grid;
  grid-template-columns: 128px 72px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 168px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
}

.episode-strip img {
  width: 100px;
  height: 132px;
  border-radius: 12px;
  object-fit: cover;
}

.episode-strip > span {
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.episode-strip > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(300px, 1fr);
  gap: 18px 42px;
  align-items: center;
}

.episode-strip small {
  grid-column: 1 / -1;
}

.episode-strip h3 {
  font-size: clamp(26px, 3vw, 44px);
}

.episode-strip p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.highlights {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(580px, 1.28fr);
  gap: clamp(60px, 9vw, 150px);
}

.highlight-title {
  align-self: start;
}

.highlight-title > p {
  margin-top: 26px;
}

.highlight-notes {
  display: grid;
}

.highlight-notes article {
  display: grid;
  grid-template-columns: 110px minmax(240px, 0.7fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.highlight-notes article:last-child {
  border-bottom: 1px solid var(--line);
}

.highlight-notes b {
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.highlight-notes h3 {
  font-size: 25px;
  line-height: 1.35;
}

.highlight-notes p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(500px, 1.42fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  background: var(--coral);
}

.brand-mark {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  border: 1px solid rgba(17, 19, 24, 0.5);
  border-radius: 50% 50% 18px 18px;
  background: rgba(255, 255, 255, 0.18);
}

.brand-mark img {
  width: min(220px, 55%);
  filter: drop-shadow(0 24px 28px rgba(17, 19, 24, 0.22));
}

.brand-mark span {
  position: absolute;
  bottom: 26px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-text h2 {
  max-width: 900px;
}

.brand-text p {
  max-width: 930px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.95;
}

.brand-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.brand-keywords span {
  padding: 10px 14px;
  border: 1px solid rgba(17, 19, 24, 0.5);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.watch-free {
  background: var(--paper);
}

.watch-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.66fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.watch-head .section-no {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

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

.answer-grid article {
  min-height: 250px;
  padding: clamp(26px, 3vw, 42px);
  background: var(--paper);
}

.answer-grid h3 {
  font-size: 22px;
  line-height: 1.35;
}

.answer-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr auto;
  gap: 50px;
  align-items: start;
  padding: 70px max(32px, calc((100vw - 1460px) / 2));
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand div {
  display: grid;
  gap: 5px;
}

.footer-brand b {
  font-size: 21px;
}

.footer-brand span,
.footer-copy,
.footer-meta {
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
}

.footer-copy {
  display: grid;
  gap: 12px;
  line-height: 1.8;
}

.footer-copy strong {
  color: var(--signal);
}

.footer-meta {
  display: grid;
  gap: 10px;
  text-align: right;
}

.back-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  transform: translateY(100px);
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-top.is-visible {
  transform: translateY(0);
  opacity: 1;
}

[data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.7s ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(calc(100% - 44px), 1080px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 22px;
  }

  .menu-toggle {
    display: grid;
    grid-template-columns: 22px auto;
    grid-template-rows: repeat(3, 4px);
    gap: 4px 9px;
    align-items: center;
    padding: 11px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    grid-column: 1;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle b {
    grid-column: 2;
    grid-row: 1 / 4;
    font-size: 12px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 90px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 90px);
    transform: translateY(-130%);
    overflow-y: auto;
    padding: 18px 22px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

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

  .hero-copy {
    max-width: 900px;
  }

  .hero-visual {
    width: min(900px, 100%);
  }

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

  .feature-card-wide {
    grid-column: 1 / -1;
  }

  .ranking,
  .highlights,
  .brand-story {
    grid-template-columns: 1fr;
  }

  .ranking-intro {
    position: static;
  }

  .comic-grid {
    grid-auto-rows: 210px;
  }

  .highlight-notes article {
    grid-template-columns: 100px minmax(220px, 0.6fr) 1fr;
  }

  .brand-mark {
    min-height: 360px;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    text-align: left;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100% - 30px);
    --radius: 22px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    min-height: 76px;
    padding: 9px 15px;
  }

  .brand {
    grid-template-columns: 48px auto;
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .site-nav {
    top: 76px;
    max-height: calc(100vh - 76px);
  }

  .menu-toggle {
    grid-template-columns: 22px;
    padding: 12px;
  }

  .menu-toggle b {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 72px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 68px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual::before {
    inset: -13px 18px 28px -12px;
  }

  .hero-visual img {
    aspect-ratio: 1 / 1;
    border-radius: 26px 26px 72px 26px;
  }

  .hero-stamp {
    right: 8px;
    bottom: 28px;
    width: 90px;
    height: 90px;
  }

  .hero-stamp b {
    font-size: 28px;
  }

  .ticker div {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section {
    padding: 84px 15px;
  }

  .section-heading,
  .episodes-head,
  .watch-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .episodes-head .section-no,
  .watch-head .section-no {
    grid-column: auto;
    margin-bottom: -4px;
  }

  h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-card figure {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .feature-card-wide .feature-copy {
    padding: 28px;
  }

  .ranking {
    gap: 48px;
  }

  .ranking-list li {
    grid-template-columns: 44px 48px minmax(0, 1fr);
    min-height: 100px;
  }

  .ranking-list em {
    grid-column: 3;
    justify-self: start;
  }

  .ranking-list li > img {
    width: 42px;
    height: 60px;
  }

  .ranking-list .rank {
    font-size: 28px;
  }

  .comic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .comic-item,
  .comic-item-tall,
  .comic-item-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .comic-item h3 {
    font-size: 30px;
  }

  .episode-strip {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
  }

  .episode-strip img {
    width: 88px;
    height: 124px;
  }

  .episode-strip > span {
    display: none;
  }

  .episode-strip > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .episode-strip h3 {
    font-size: 26px;
  }

  .highlight-notes article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-mark {
    min-height: 320px;
  }

  .brand-text p {
    font-size: 16px;
  }

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

  .answer-grid article {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 20px;
  }

  .footer-meta {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .back-top {
    right: 15px;
    bottom: 15px;
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
