:root {
    --ink: #182d36;
    --muted: #65747b;
    --accent: #087e7c;
    --deep: #123a40;
    --paper: #ffffff;
    --background: #f6f8fa;
    --line: #dfe7e9;
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--background);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--accent);
}

button, input {
    font: inherit;
}

button, .button {
    cursor: pointer;
}

button {
    color: inherit;
}

button:focus-visible, a:focus-visible {
    outline: 3px solid #d5a324;
    outline-offset: 5px;
}

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

svg {
    flex-shrink: 0;
}

h1, h2, h3, p, figure {
    margin: 0;
}

h1, h2, h3 {
    line-height: 1.4;
}

h2 {
    font-size: 26px;
    letter-spacing: -.6px;
}

h3 {
    font-size: 17px;
}

p {
    overflow-wrap: anywhere;
}

.wrap {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.icon {
    width: 21px;
    height: 21px;
    vertical-align: middle;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -100px;
    z-index: 100;
    padding: 10px 20px;
    background: white;
}

.skip-link:focus {
    top: 8px;
}

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

.topbar {
    min-height: 91px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    flex-shrink: 0;
}

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

.brand-note {
    color: var(--muted);
    font-size: 14px;
    padding-left: 24px;
    border-left: 1px solid var(--line);
    letter-spacing: 1px;
}

.shelf-link {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
}

.navigation {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
    padding-bottom: 14px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    gap: 8px;
    white-space: nowrap;
    border-radius: 8px;
    font-size: 15px;
    color: #50616b;
}

.nav-link.active {
    color: var(--accent);
    background: #e8f4f1;
    font-weight: 700;
}

.nav-link:hover {
    background: #f0f6f6;
}

.menu-toggle {
    display: none;
}

main > section {
    margin-top: 66px;
}

main > section:last-child {
    margin-bottom: 64px;
}

.hero {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    min-height: 454px;
    border-radius: 22px;
    overflow: hidden;
    background: #eaf1f2;
}

.hero-copy {
    padding: 43px 42px 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.hero h1 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 19px;
    letter-spacing: 1px;
}

.hero-lead {
    font-size: clamp(30px, 3.3vw, 46px);
    line-height: 1.3;
    font-weight: 750;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.hero-copy > p:not(.hero-lead) {
    color: #536970;
    max-width: 450px;
    font-size: 15px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    min-height: 46px;
    transition: transform .2s, background .2s;
}

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

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

.primary:hover {
    background: #096260;
    color: white;
}

.ghost {
    background: #ffffffa8;
    border-color: #c5d4d6;
    color: var(--ink);
}

.hero-notes {
    margin-top: 28px;
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #61767c;
}

.hero-feature {
    position: relative;
    min-height: 440px;
    background: #244650;
}

.hero-feature > img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-feature::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, #0a242fee);
}

.feature-caption {
    position: absolute;
    bottom: 30px;
    left: 32px;
    right: 25px;
    color: #fff;
    z-index: 1;
}

.feature-caption span {
    font-size: 12px;
    border: 1px solid #ffffff80;
    padding: 4px 9px;
    border-radius: 4px;
}

.feature-caption h2 {
    margin: 15px 0 5px;
    font-size: 28px;
}

.feature-caption p {
    color: #dbe5e8;
    font-size: 14px;
}

.feature-caption a:hover {
    color: #bde9df;
}

.quick-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-top: 22px;
    padding: 20px 10px;
}

.quick-strip > a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    border-right: 1px solid var(--line);
}

.quick-strip > a:last-child {
    border: 0;
}

.quick-strip > a > .icon:first-child {
    width: 25px;
    height: 25px;
    color: var(--accent);
}

.quick-strip > a > .icon:last-child {
    margin-left: auto;
    width: 16px;
    color: #96a8af;
}

.quick-strip strong, .quick-strip small {
    display: block;
}

.quick-strip strong {
    font-size: 15px;
}

.quick-strip small {
    font-size: 12px;
    color: var(--muted);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 25px;
}

.section-heading h2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading h2 .icon {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.section-heading p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 6px;
}

.more, .text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

.more {
    white-space: nowrap;
}

.more .icon, .text-link .icon {
    width: 17px;
}

.comic-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.cover-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #d9e4e9;
}

.cover {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #dce6e9;
    color: #334d59;
    font-size: 14px;
}

.cover-link .cover {
    transition: transform .3s;
}

.cover-link:hover .cover {
    transform: scale(1.04);
}

.cover-tag {
    position: absolute;
    bottom: 9px;
    right: 8px;
    padding: 2px 7px;
    color: #fff;
    background: #173740db;
    border-radius: 4px;
    font-size: 12px;
}

.comic-card h3 {
    font-size: 16px;
    margin-top: 12px;
}

.comic-card p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.category-tile {
    display: block;
    padding: 22px 16px;
    border-radius: 12px;
    background: #e6f1ef;
    border: 1px solid #d6e5e2;
}

.category-tile:nth-child(2), .category-tile:nth-child(5) {
    background: #f8eeea;
    border-color: #efe0da;
}

.category-tile:nth-child(3), .category-tile:nth-child(6) {
    background: #eaf0f8;
    border-color: #dae4f0;
}

.category-tile > .icon {
    width: 30px;
    height: 30px;
    color: var(--accent);
    margin-bottom: 15px;
}

.category-tile p {
    font-size: 13px;
    color: var(--muted);
    min-height: 46px;
    margin: 7px 0 16px;
}

.category-tile span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.editor-pick {
    background: #173e45;
    border-radius: 18px;
    color: #fff;
    display: grid;
    grid-template-columns: 40% 60%;
    overflow: hidden;
}

.editor-image {
    max-height: 430px;
    overflow: hidden;
}

.editor-image img {
    height: 100%;
    object-position: center 30%;
}

.editor-copy {
    padding: 38px 48px;
}

.editor-copy .eyebrow {
    color: #a9dad0;
}

.editor-copy h2 {
    margin-top: 12px;
}

.editor-copy .quote {
    font-size: 24px;
    line-height: 1.7;
    margin: 18px 0;
    font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
}

.editor-copy > p:not(.quote) {
    color: #c8d9dc;
    font-size: 14px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.tags span {
    padding: 3px 10px;
    border: 1px solid #c3d2d6;
    border-radius: 5px;
    font-size: 12px;
}

.editor-copy .button {
    background: #d3ece5;
    color: #163e42;
    margin-top: 8px;
}

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

.rank-panel {
    padding: 25px;
    border: 1px solid var(--line);
    border-top: 3px solid #cf9968;
    border-radius: 10px;
    background: #fff;
}

.rank-1 {
    border-top-color: #bb8290;
}

.rank-2 {
    border-top-color: #6f9ca7;
}

.rank-panel h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.rank-panel ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rank-panel li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #edf0f2;
}

.rank-panel li:last-child {
    border: 0;
    padding-bottom: 0;
}

.rank-number {
    color: #bd926b;
    font-size: 25px;
    font-style: italic;
    font-weight: 700;
}

.rank-panel li p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.rank-panel li > .icon {
    width: 16px;
    margin-left: auto;
    color: #97aab0;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 23px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.horizontal-card img {
    border-radius: 8px;
    height: 100%;
}

.horizontal-card h3 {
    margin: 7px 0;
    font-size: 18px;
}

.horizontal-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.horizontal-card .eyebrow {
    font-size: 12px;
    letter-spacing: 0;
}

.update-list {
    background: white;
    padding: 10px 26px;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.update-row {
    display: grid;
    grid-template-columns: 75px 12px 1.2fr .7fr 1.1fr;
    align-items: center;
    gap: 20px;
    padding: 19px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
}

.update-row:last-child {
    border: 0;
}

.update-row time, .update-row > span:not(.update-dot) {
    color: var(--muted);
}

.update-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.update-row > a:last-child {
    text-align: right;
    color: var(--accent);
}

.finished-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.finished-grid article {
    padding: 0 18px 0 0;
    border-right: 1px solid #cddcdf;
}

.finished-grid article:last-child {
    border: 0;
}

.finished-index {
    display: block;
    font-size: 39px;
    font-family: Georgia, serif;
    color: #769b9e;
    line-height: 1;
    margin-bottom: 14px;
}

.finished-grid p {
    color: var(--muted);
    font-size: 14px;
    margin: 10px 0 18px;
    min-height: 100px;
}

.guide-section {
    padding: 30px;
    border-radius: 16px;
    background: #edf2f6;
}

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

.guide-grid article > span {
    display: inline-flex;
    padding: 1px 10px;
    border: 1px solid #acbec7;
    border-radius: 20px;
    font-size: 12px;
    color: #597984;
    margin-bottom: 12px;
}

.guide-grid p {
    color: var(--muted);
    font-size: 14px;
    margin: 10px 0 14px;
}

.bookshelf {
    border: 1px solid #d1dfdf;
    border-radius: 14px;
    padding: 30px;
    background: white;
}

.bookshelf p {
    font-size: 14px;
    color: var(--muted);
}

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

.saved-grid a {
    display: block;
    border-left: 3px solid var(--accent);
    padding: 10px 15px;
    background: #f1f7f5;
}

#reading-progress {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed var(--line);
}

#reading-progress a {
    color: var(--accent);
    font-weight: 600;
}

.about-section {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 80px;
    padding: 15px 0;
}

.about-section h2 {
    margin: 12px 0 20px;
    font-size: 30px;
}

.about-section p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.95;
}

.about-values {
    padding-top: 20px;
}

.about-values > div {
    padding: 18px 0 6px 24px;
    border-left: 2px solid #9dbdb7;
    margin-bottom: 16px;
}

.about-values strong {
    font-size: 21px;
}

.about-values p {
    font-size: 14px;
    margin-top: 4px;
}

.subscribe-section {
    display: grid;
    grid-template-columns: 165px 1fr;
    gap: 48px;
    align-items: center;
    padding: 42px 48px;
    border-radius: 18px;
    background: var(--deep);
    color: white;
}

.subscribe-mark {
    width: 165px;
    height: 165px;
    border-radius: 28px;
    background: #d4ede5;
    color: #123a40;
    font-size: 59px;
    font-weight: 850;
    letter-spacing: -4px;
    text-align: center;
    line-height: 1;
    padding: 36px 10px 25px;
    transform: rotate(-5deg);
    box-shadow: 8px 8px 0 #ffffff15;
}

.subscribe-mark span {
    display: block;
    font-size: 13px;
    margin-top: 16px;
    letter-spacing: 5px;
}

.subscribe-section .eyebrow {
    color: #afd5cc;
}

.subscribe-section h2 {
    margin: 8px 0;
}

.subscribe-section p {
    color: #d2e1e2;
    font-size: 14px;
}

.subscribe-section small {
    display: block;
    font-size: 12px;
    color: #bbd1d1;
    margin-top: 14px;
}

.light {
    background: white;
    color: #163e42;
}

.outline-light {
    border-color: #719598;
    color: white;
}

.outline-light:hover {
    color: #b6ede0;
}

.site-footer {
    background: white;
    border-top: 1px solid var(--line);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-inner strong {
    font-size: 20px;
}

.footer-inner p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 5px;
}

.footer-inner a {
    font-size: 14px;
    margin-right: 20px;
}

.back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    border: 1px solid #ccdcde;
    border-radius: 50%;
    background: white;
    color: var(--accent);
    box-shadow: 0 4px 18px #18383a12;
    z-index: 4;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #173e45;
    color: white;
    padding: 11px 20px;
    border-radius: 9px;
    max-width: calc(100% - 40px);
    display: none;
    z-index: 20;
    font-size: 14px;
}

.toast.visible {
    display: block;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    margin: 25px 0;
}

.category-hero {
    margin-top: 0;
    padding: 40px;
    border-radius: 18px;
    background: #e6f0ef;
}

.category-hero h1 {
    font-size: 31px;
    margin: 12px 0;
}

.category-hero p {
    max-width: 900px;
    color: #516b73;
}

.category-hero .tags {
    margin-bottom: 0;
}

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

.intro-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
}

.intro-grid p {
    margin: 12px 0 16px;
    color: var(--muted);
}

.detail-hero {
    display: grid;
    grid-template-columns: 245px 1fr;
    gap: 46px;
    padding: 34px;
    background: white;
    border-radius: 18px;
    border: 1px solid var(--line);
    margin-top: 0;
}

.detail-cover {
    border-radius: 10px;
    overflow: hidden;
}

.detail-hero h1 {
    font-size: 36px;
    margin: 12px 0;
}

.synopsis {
    line-height: 2;
}

.metadata {
    color: var(--muted);
    font-size: 14px;
    margin-top: 16px;
}

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

.chapter-entry {
    display: grid;
    grid-template-columns: 65px 1fr 24px;
    gap: 5px 12px;
    align-items: center;
    padding: 23px;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--line);
}

.chapter-entry > span {
    grid-row: span 2;
    font-size: 14px;
    color: var(--accent);
}

.chapter-entry small {
    grid-column: 2;
    font-size: 12px;
    color: var(--muted);
}

.chapter-entry .icon {
    grid-column: 3;
    grid-row: 1 / 3;
}

.story-notes {
    padding: 28px 32px;
    background: #eaf1f3;
    border-radius: 12px;
}

.story-notes p + p {
    margin-top: 12px;
}

.reader {
    max-width: 900px;
    margin: 0 auto 64px;
}

.reader-header {
    text-align: center;
    padding: 22px 0 30px;
}

.reader-header h1 {
    font-size: 30px;
    margin: 16px 0;
}

.reader-header > p {
    font-size: 14px;
    color: var(--muted);
}

.reading-instruction {
    background: #eaf2f3;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.reading-instruction h2 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reading-instruction p {
    margin: 10px 0 16px;
    font-size: 14px;
    color: var(--muted);
}

.reader-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reader-controls button, .reader-controls a {
    padding: 8px 14px;
    border: 1px solid #bed0d5;
    background: white;
    border-radius: 6px;
    font-size: 14px;
}

.reader-body {
    --reading-size: 18px;
    background: var(--paper);
    border-radius: 14px;
    padding: 34px 48px;
}

.story-panel {
    margin-bottom: 56px;
}

.story-panel:last-child {
    margin-bottom: 5px;
}

.story-panel h2 {
    font-size: 23px;
    margin-bottom: 24px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.story-panel h2 span {
    color: #639391;
    font-size: 17px;
}

.panel-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #e6edf0;
    color: #324952;
    border-radius: 6px;
}

figcaption {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin: 12px 0 22px;
}

.story-panel p {
    font-size: var(--reading-size);
    line-height: 2.15;
    margin: 18px 0;
}

.chapter-end {
    text-align: center;
    padding: 32px 10px;
}

.chapter-end span {
    color: var(--accent);
    letter-spacing: 3px;
}

.chapter-end p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 14px;
}

.chapter-navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

body.night {
    --background: #152329;
    --paper: #20333b;
    --ink: #e5eded;
    --muted: #b0c3c9;
    --line: #38515a;
    --accent: #8ad9c6;
}

.night .reading-instruction {
    background: #243e45;
}

.night .nav-link {
    color: #cfdfdf;
}

.night .nav-link.active {
    color: #9be4d7;
    background: #31535b;
}

.night .reader-controls button, .night .reader-controls a {
    background: #20343b;
    color: #e1eeed;
}

.night .primary {
    color: #153c3c;
}

@media (max-width: 1000px) {
    .navigation {
        gap: 4px;
    }

    .nav-link {
        font-size: 14px;
        gap: 5px;
    }

    .hero-copy {
        padding: 30px;
    }

    .hero-notes {
        flex-wrap: wrap;
        gap: 7px 18px;
    }

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

    .quick-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 0;
    }

    .quick-strip > a:nth-child(2) {
        border: 0;
    }

    .editor-copy {
        padding: 28px;
    }

    .rank-panel {
        padding: 18px;
    }

    .horizontal-card {
        grid-template-columns: 90px 1fr;
        gap: 15px;
        padding: 15px;
    }

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

    .finished-grid article:nth-child(2) {
        border: 0;
    }

    .finished-grid p {
        min-height: 74px;
    }

    .about-section {
        gap: 36px;
    }

    .detail-hero {
        grid-template-columns: 200px 1fr;
        gap: 28px;
    }

    .update-row {
        gap: 12px;
        grid-template-columns: 60px 8px 1fr .7fr 1.2fr;
    }
}

@media (max-width: 720px) {
    .wrap {
        width: calc(100% - 32px);
    }

    .topbar {
        min-height: 78px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .brand img {
        width: 176px;
        height: auto;
    }

    .brand-note {
        display: none;
    }

    .shelf-link {
        font-size: 12px;
        gap: 4px;
    }

    .navigation {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        padding-bottom: 12px;
    }

    .nav-link {
        font-size: 12px;
        padding: 9px 2px;
        gap: 5px;
    }

    .nav-link .icon {
        width: 16px;
        height: 16px;
    }

    .js .menu-toggle {
        display: flex;
        align-items: center;
        gap: 4px;
        background: transparent;
        border: 0;
        padding: 6px 0;
        font-size: 12px;
        margin-left: auto;
    }

    .js .shelf-link {
        margin-left: 0;
    }

    .js .navigation.is-collapsed {
        display: none;
    }

    main > section {
        margin-top: 42px;
    }

    h2 {
        font-size: 23px;
    }

    .hero {
        grid-template-columns: 1fr;
        margin-top: 20px;
        border-radius: 15px;
    }

    .hero-copy {
        padding: 28px 24px;
    }

    .hero-lead {
        font-size: 37px;
    }

    .hero-feature {
        min-height: 310px;
    }

    .hero-notes {
        font-size: 12px;
        gap: 14px;
    }

    .hero-copy .eyebrow {
        letter-spacing: .5px;
    }

    .quick-strip {
        margin-top: 20px;
        padding: 16px 4px;
        gap: 20px 0;
    }

    .quick-strip > a {
        padding: 0 10px;
        gap: 9px;
    }

    .quick-strip > a > .icon:last-child {
        display: none;
    }

    .quick-strip strong {
        font-size: 14px;
    }

    .quick-strip small {
        font-size: 12px;
    }

    .section-heading {
        gap: 12px;
        margin-bottom: 19px;
        align-items: flex-start;
    }

    .section-heading h2 {
        gap: 8px;
        font-size: 22px;
    }

    .section-heading h2 .icon {
        width: 20px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .more {
        font-size: 12px;
        padding-top: 5px;
    }

    .more .icon {
        display: none;
    }

    .comic-grid, .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
    }

    .comic-card h3 {
        font-size: 15px;
    }

    .category-tile {
        padding: 20px;
    }

    .category-tile p {
        min-height: 46px;
    }

    .editor-pick {
        grid-template-columns: 1fr;
    }

    .editor-image {
        height: 260px;
    }

    .editor-copy {
        padding: 26px;
    }

    .editor-copy .quote {
        font-size: 23px;
    }

    .rank-grid, .korean-grid, .guide-grid, .intro-grid, .chapter-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .horizontal-card {
        grid-template-columns: 100px 1fr;
        padding: 16px;
    }

    .horizontal-card p {
        font-size: 13px;
    }

    .horizontal-card h3 {
        font-size: 17px;
    }

    .horizontal-card .text-link {
        font-size: 12px;
    }

    .update-list {
        padding: 0 17px;
    }

    .update-row {
        grid-template-columns: 51px 1fr;
        gap: 4px 12px;
    }

    .update-dot {
        display: none;
    }

    .update-row > span:not(.update-dot) {
        display: none;
    }

    .update-row > a:last-child {
        grid-column: 2;
        text-align: left;
        font-size: 12px;
    }

    .finished-grid {
        gap: 26px 18px;
    }

    .finished-grid p {
        min-height: 150px;
    }

    .finished-grid h3 {
        font-size: 16px;
    }

    .guide-section, .bookshelf {
        padding: 24px 20px;
    }

    .guide-grid article {
        padding-bottom: 22px;
        border-bottom: 1px solid #d1dce2;
    }

    .guide-grid article:last-child {
        padding-bottom: 0;
        border: 0;
    }

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

    .about-section {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-values {
        padding-top: 0;
    }

    .subscribe-section {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 28px;
    }

    .subscribe-mark {
        width: 100px;
        height: 100px;
        font-size: 36px;
        padding: 20px 8px;
        border-radius: 20px;
        letter-spacing: -2px;
    }

    .subscribe-mark span {
        margin-top: 8px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .category-hero {
        padding: 26px;
        margin-top: 0;
    }

    .category-hero h1 {
        font-size: 27px;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px;
        margin-top: 0;
    }

    .detail-cover {
        max-width: 220px;
        width: 65%;
        margin-inline: auto;
    }

    .detail-hero h1 {
        font-size: 29px;
    }

    .story-notes {
        padding: 24px;
    }

    .reader-header h1 {
        font-size: 24px;
    }

    .reader-body {
        padding: 26px 18px;
    }

    .reading-instruction {
        padding: 20px;
    }

    .story-panel h2 {
        font-size: 21px;
    }

    .chapter-navigation .button {
        flex: 1 1 100px;
        padding: 10px;
    }

    .back-top {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 370px) {
    .brand img {
        width: 152px;
    }

    .topbar {
        gap: 10px;
    }

    .shelf-link .icon {
        display: none;
    }

    .hero-copy {
        padding: 24px 19px;
    }

    .hero-lead {
        font-size: 33px;
    }

    .horizontal-card {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }
}

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

    *, *::before, *::after {
        transition: none !important;
    }
}
