:root {
    --ink: #163c35;
    --text: #283d37;
    --muted: #66756f;
    --paper: #f8f9f5;
    --line: #dce3da;
    --green-soft: #eaf0e5;
    --orange: #ffad65;
    --reading-size: 19px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    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;
}

button, input {
    font: inherit;
}

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

button {
    cursor: pointer;
}

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

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    background: #e5e8df;
    color: #34493e;
    font-size: 14px;
}

img.image-unavailable {
    object-fit: contain;
    padding: 18px;
}

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

h1, h2, h3 {
    color: var(--ink);
    line-height: 1.45;
}

h2 {
    font-size: 27px;
    font-weight: 750;
    letter-spacing: -0.6px;
}

h3 {
    font-size: 18px;
}

[hidden] {
    display: none !important;
}

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

.icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: -4px;
}

h2 .icon {
    margin-right: 10px;
    width: 25px;
    height: 25px;
}

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

.header-top {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand img {
    width: 190px;
    height: 48px;
    background: transparent;
}

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

.shelf-link {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.main-nav {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 14px;
}

.main-nav a {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    font-size: 15px;
    transition: background 150ms ease;
}

.main-nav a:hover, .main-nav a[aria-current="page"] {
    background: var(--ink);
    color: white;
}

.hero {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1.04fr 1fr;
    min-height: 486px;
    overflow: hidden;
    border-radius: 16px;
    background: #edf1e7;
}

.hero-copy {
    padding: 40px 42px 32px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid currentColor;
    padding: 3px 11px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.pill .icon {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 19px;
    letter-spacing: 4px;
    margin: 25px 0 10px;
}

.hero-title {
    font-size: clamp(30px, 3vw, 42px);
    color: var(--ink);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -1px;
}

.hero-desc {
    margin: 18px 0 24px;
    font-size: 15px;
    color: #52635a;
    line-height: 1.9;
}

.hero-actions, .subscribe-actions, .detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 7px;
    min-height: 46px;
    padding: 10px 19px;
    font-size: 14px;
    border: 1px solid transparent;
    font-weight: 600;
}

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

.subtle {
    background: white;
    border-color: var(--line);
    color: var(--ink);
}

.button:hover {
    filter: brightness(0.94);
}

.hero-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
    margin-top: 27px;
}

.hero-art {
    position: relative;
    min-height: 486px;
    background: #324b44;
    overflow: hidden;
}

.hero-art > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center 35%;
}

.hero-art-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(11, 32, 29, 0.92));
}

.hero-feature {
    position: absolute;
    left: 34px;
    right: 30px;
    bottom: 34px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.hero-feature strong {
    font-size: 29px;
}

.hero-feature .pill {
    color: #ffe0ad;
    background: #173d35b3;
}

.hero-read {
    color: #ffd09a;
    margin-top: 7px;
}

.discovery {
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 26px;
}

.search-form label {
    font-weight: 650;
    color: var(--ink);
    flex-shrink: 0;
}

.search-input {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
    padding-left: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.search-input input {
    border: 0;
    background: transparent;
    padding: 11px 0;
    min-width: 0;
    flex: 1;
    font-size: 14px;
}

.search-input .button {
    border-radius: 0;
    flex-shrink: 0;
}

.discovery > p {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted);
    margin-left: 170px;
}

.module {
    margin-top: 64px;
}

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

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.3px;
    color: var(--muted);
    margin-bottom: 9px;
}

.text-link {
    color: var(--ink);
    font-size: 14px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.comic-card {
    min-width: 0;
}

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

.cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    transition: transform 200ms ease;
}

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

.cover-status {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: white;
    background: #163c35e6;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 12px;
}

.card-copy {
    padding-top: 13px;
}

.card-copy .eyebrow {
    margin-bottom: 4px;
    font-size: 12px;
}

.card-copy h3 {
    font-size: 16px;
    min-height: 46px;
}

.card-copy > p:not(.eyebrow) {
    font-size: 14px;
    color: var(--muted);
    margin: 8px 0;
    min-height: 74px;
}

.chapter-link {
    font-size: 12px;
    display: block;
    line-height: 1.7;
    color: #466b56;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.chapter-link .icon {
    width: 15px;
    height: 15px;
}

.categories-module {
    border-top: 1px solid var(--line);
    padding-top: 32px;
}

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

.category-tile {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 23px;
    border-radius: 9px;
    background: #edf1e8;
}

.category-tile > .icon {
    width: 32px;
    height: 32px;
}

.category-tile p {
    font-size: 13px;
    margin-top: 5px;
    color: #5a6a61;
}

.category-tile > span {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.65;
}

.tone-1, .tone-4 {
    background: #f8eee3;
}

.tone-2, .tone-5 {
    background: #eaf0f3;
}

.ranking-module {
    border-radius: 14px;
    padding: 32px;
    background: var(--ink);
    color: #e9efe7;
}

.ranking-module h2, .ranking-module h3, .ranking-module .text-link {
    color: white;
}

.ranking-module .eyebrow, .ranking-module .section-note {
    color: #bfd0c5;
}

.ranking-module .section-heading {
    margin-bottom: 12px;
}

.section-note {
    font-size: 14px;
    margin-bottom: 22px;
}

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

.rank-item {
    display: flex;
    gap: 22px;
    align-items: center;
    border-top: 1px solid #ffffff24;
    padding: 22px 0;
}

.rank-item > .icon {
    margin-left: auto;
}

.rank-number {
    font-family: Georgia, serif;
    color: #ffc48b;
    font-size: 36px;
    line-height: 1;
    font-style: italic;
    width: 43px;
    flex-shrink: 0;
}

.rank-item p {
    color: #c1d1c8;
    font-size: 12px;
    margin-top: 5px;
}

.korean-layout {
    display: grid;
    grid-template-columns: 0.72fr 2fr;
    gap: 28px;
}

.korean-editorial {
    background: #eedeca;
    padding: 27px;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.large-mark {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -2px;
}

.korean-editorial p {
    font-size: 14px;
}

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

.korean-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.korean-item img {
    width: 105px;
    height: 145px;
    border-radius: 7px;
    flex-shrink: 0;
}

.korean-item p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
    margin: 7px 0 12px;
}

.korean-item span {
    font-size: 12px;
}

.korean-item .icon {
    width: 15px;
    height: 15px;
}

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

.adventure-tile {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 330px;
    background: #203b33;
}

.adventure-tile > img {
    width: 100%;
    height: 100%;
}

.adventure-tile > div {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, #122a22 95%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

.adventure-tile h3 {
    color: white;
    font-size: 22px;
}

.adventure-tile .eyebrow {
    color: #ffd39f;
}

.adventure-tile p {
    font-size: 14px;
    margin: 9px 0 14px;
}

.moment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.moment {
    padding: 0 27px;
    border-left: 1px solid var(--line);
}

.moment:first-child {
    padding-left: 0;
    border-left: 0;
}

.moment-no {
    display: block;
    font-size: 44px;
    color: #b37b4b;
    font-family: Georgia, serif;
    font-style: italic;
    margin-bottom: 15px;
}

.moment p {
    font-size: 14px;
    margin: 12px 0 20px;
    color: var(--muted);
    min-height: 74px;
}

.moment > a {
    font-size: 13px;
}

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

.complete-item {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    padding: 22px;
    gap: 25px;
    border-radius: 10px;
}

.complete-item > img {
    width: 125px;
    height: 178px;
    border-radius: 7px;
    flex-shrink: 0;
}

.complete-item h3 {
    font-size: 21px;
    margin: 12px 0 8px;
}

.complete-item p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 14px;
}

.complete-item .pill {
    background: var(--green-soft);
    border: 0;
}

.update-timeline {
    border-top: 2px solid var(--ink);
}

.update-timeline article {
    display: flex;
    gap: 32px;
    padding: 24px 8px;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.update-timeline time {
    font-size: 27px;
    font-family: Georgia, serif;
    color: #7b8b73;
    min-width: 66px;
}

.update-timeline article > a {
    margin-left: auto;
    font-size: 14px;
    flex-shrink: 0;
}

.update-timeline p, .update-timeline article span {
    color: var(--muted);
    font-size: 14px;
}

.update-timeline article span {
    font-size: 12px;
    letter-spacing: 1px;
}

.bookshelf-promo {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 35px;
    background: #e9eee2;
    border-radius: 12px;
}

.shelf-mark {
    padding: 25px;
    background: #f8faf4;
    border-radius: 50%;
    transform: rotate(-9deg);
}

.shelf-mark .icon {
    width: 44px;
    height: 44px;
}

.bookshelf-promo p:not(.eyebrow) {
    font-size: 14px;
    color: var(--muted);
    margin-top: 10px;
}

.bookshelf-promo > a {
    margin-left: auto;
    flex-shrink: 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    border-top: 1px solid var(--line);
    padding-top: 30px;
}

.about-lead {
    font-family: "SimSun", serif;
    font-size: 33px;
    line-height: 1.8;
    color: var(--ink);
}

.about-layout > div p {
    margin-bottom: 18px;
    color: #53625b;
    line-height: 2;
}

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

.faq-grid details {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px 22px;
    background: white;
}

.faq-grid summary {
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.faq-grid p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 14px;
}

.subscription-module {
    padding: 42px 50px;
    border-radius: 14px;
    background: var(--ink);
    color: #dde9df;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.subscription-module h2 {
    color: white;
    font-size: 29px;
}

.subscription-module .eyebrow {
    color: #ffd3a4;
}

.subscription-module p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 15px;
}

.subscribe-actions {
    margin-top: 24px;
}

.light {
    background: #f1f3e9;
    color: var(--ink);
}

.outline-light {
    background: transparent;
    border-color: #a3b8ac;
    color: white;
}

.subscription-module .subscription-note {
    font-size: 12px !important;
    color: #bcd1c3;
}

.mobile-brand {
    border: 1px solid #738f7e;
    border-radius: 23px;
    padding: 26px 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    background: #284e43;
    transform: rotate(4deg);
    flex-shrink: 0;
}

.mobile-brand img {
    border-radius: 22px;
}

.mobile-brand span {
    font-size: 12px;
}

.phone-rule {
    width: 55px;
    height: 3px;
    background: #9bb9a4;
    border-radius: 3px;
    margin-top: 12px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: white;
    margin-top: 50px;
}

.footer-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 13px;
    color: var(--muted);
    padding-block: 25px;
}

.footer-brand {
    color: var(--ink);
    font-weight: 800;
    font-size: 22px;
}

.footer-inner > p {
    margin-right: auto;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    margin: 25px 0;
}

.collection-hero {
    padding: 36px 42px;
    background: #eaf0e4;
    border-left: 5px solid var(--ink);
    border-radius: 0 12px 12px 0;
}

.collection-hero h1 {
    font-size: 40px;
    margin-bottom: 9px;
}

.collection-hero > p:not(.eyebrow) {
    max-width: 850px;
    color: #526358;
}

.collection-kicker {
    font-size: 22px;
    margin-bottom: 15px;
}

.collection-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 23px;
    font-size: 13px;
}

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

.catalog-grid .comic-card {
    background: white;
    border-radius: 10px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.catalog-grid .cover {
    border-radius: 0;
}

.catalog-grid .card-copy {
    padding: 20px;
}

.catalog-grid h3 {
    font-size: 21px;
    min-height: 0;
}

.catalog-grid .card-copy > p:not(.eyebrow) {
    min-height: 50px;
}

.category-guide {
    border-top: 1px solid var(--line);
    padding-top: 30px;
}

.category-guide > p {
    margin: 20px 0;
    max-width: 860px;
}

.related-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-hero {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 45px;
    padding: 34px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.detail-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
}

.detail-copy h1 {
    font-size: 38px;
    margin: 10px 0 20px;
}

.detail-hook {
    color: #526358;
    font-size: 18px;
    max-width: 660px;
}

.metadata {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin: 24px 0;
    font-size: 14px;
}

.metadata div {
    display: flex;
    gap: 15px;
}

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

.metadata dd {
    margin: 0;
}

.synopsis {
    max-width: 900px;
}

.synopsis p {
    margin-top: 18px;
    line-height: 2;
}

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

.chapter-grid > a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 23px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 9px;
}

.chapter-no {
    font-family: Georgia, serif;
    font-size: 30px;
    color: #8c9a81;
}

.chapter-grid time {
    font-size: 13px;
    color: var(--muted);
}

.chapter-grid .icon {
    margin-left: auto;
}

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

.reader-heading {
    text-align: center;
    margin: 38px 0 25px;
}

.reader-heading h1 {
    font-size: 34px;
}

.reader-heading h1 span {
    display: block;
    font-size: 23px;
    margin: 10px 0 15px;
}

.reader-heading > p:last-child {
    font-size: 13px;
    color: var(--muted);
}

.reader-notice {
    max-width: 800px;
    margin: 0 auto 20px;
    background: #e9eee3;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 14px;
}

.reader-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.reader-tools button, .reader-tools a {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    padding: 9px 14px;
    color: var(--ink);
    font-size: 14px;
}

.reader-content {
    width: min(760px, 100%);
    margin: auto;
    background: white;
    border: 1px solid var(--line);
}

.chapter-section-title {
    padding: 25px;
    font-size: 22px;
    text-align: center;
}

.story-panel {
    margin: 0 0 25px;
}

.story-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #edf0e8;
}

.story-panel figcaption {
    padding: 27px 35px 35px;
}

.panel-label {
    display: inline-block;
    color: #657c63;
    font-size: 12px;
    letter-spacing: 3px;
    border-bottom: 2px solid var(--orange);
    margin-bottom: 12px;
}

.story-panel figcaption p {
    font-size: var(--reading-size);
    line-height: 2.15;
}

.warm-paper .reader-content, .warm-paper .story-panel img {
    background: #f4e9d1;
}

.chapter-end {
    text-align: center;
    padding: 30px;
    background: #f1f4ed;
}

.chapter-end span {
    letter-spacing: 5px;
}

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

.chapter-navigation {
    margin: 28px auto 12px;
    max-width: 760px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.reader-back {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

.search-results, .saved-books {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.result-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 18px;
}

.result-card p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--muted);
}

.result-card .button {
    margin: 8px 8px 0 0;
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 32px);
    padding: 14px 23px;
    border-radius: 9px;
    background: #183b34;
    color: white;
    box-shadow: 0 5px 30px #0002;
    z-index: 20;
    font-size: 14px;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 15px;
    background: white;
    padding: 12px;
    z-index: 30;
}

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

@media (max-width: 1050px) {
    .hero-copy {
        padding: 30px;
    }
    .covers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 28px;
    }
    .card-copy h3, .card-copy > p:not(.eyebrow) {
        min-height: 0;
    }
    .korean-layout {
        grid-template-columns: 1fr;
    }
    .korean-editorial {
        flex-direction: row;
        align-items: center;
    }
    .large-mark {
        font-size: 33px;
    }
    .korean-item img {
        width: 120px;
        height: 160px;
    }
    .complete-item {
        gap: 15px;
        padding: 15px;
    }
    .complete-item > img {
        width: 95px;
        height: 150px;
    }
    .bookshelf-promo {
        padding: 26px;
    }
    .shelf-mark {
        display: none;
    }
    .detail-hero {
        grid-template-columns: 210px 1fr;
        gap: 30px;
    }
    .metadata div {
        flex-direction: column;
        gap: 3px;
    }
}

@media (max-width: 760px) {
    .wrap {
        width: calc(100% - 32px);
    }
    .header-top {
        min-height: 75px;
        gap: 10px;
    }
    .brand-note {
        display: none;
    }
    .brand img {
        width: 160px;
        height: auto;
    }
    .shelf-link {
        padding: 7px 10px;
        font-size: 12px;
    }
    .main-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px;
    }
    .main-nav a {
        font-size: 13px;
        gap: 5px;
    }
    .main-nav .icon {
        width: 17px;
        height: 17px;
    }
    .hero {
        margin-top: 22px;
        grid-template-columns: 1fr;
    }
    .hero-copy {
        padding: 27px 25px;
    }
    .hero h1 {
        margin-top: 20px;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-art {
        min-height: 300px;
    }
    .hero-feature {
        left: 24px;
        bottom: 24px;
    }
    .hero-feature strong {
        font-size: 25px;
    }
    .hero-foot {
        gap: 7px;
        font-size: 12px;
    }
    .search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .discovery > p {
        margin-left: 0;
    }
    .search-input {
        gap: 8px;
        padding-left: 10px;
    }
    .search-input .button {
        padding-inline: 12px;
    }
    .module {
        margin-top: 44px;
    }
    .section-heading {
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    h2 {
        font-size: 23px;
    }
    .section-heading > .text-link {
        font-size: 13px;
    }
    .covers, .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }
    .card-copy h3 {
        font-size: 16px;
        min-height: 46px;
    }
    .card-copy > p:not(.eyebrow) {
        min-height: 74px;
    }
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .category-tile {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 19px;
    }
    .category-tile > span {
        display: none;
    }
    .category-tile h3 {
        font-size: 16px;
    }
    .category-tile p {
        font-size: 12px;
    }
    .ranking-module {
        padding: 24px;
    }
    .rank-grid {
        grid-template-columns: 1fr;
    }
    .rank-item {
        gap: 16px;
        padding-block: 20px;
    }
    .korean-editorial {
        padding: 22px;
        flex-wrap: wrap;
    }
    .korean-editorial .pill {
        display: none;
    }
    .large-mark {
        font-size: 31px;
    }
    .korean-grid {
        gap: 22px 14px;
    }
    .korean-item {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .korean-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
    }
    .korean-item h3 {
        font-size: 16px;
        min-height: 46px;
    }
    .adventure-grid {
        grid-template-columns: 1fr;
    }
    .adventure-tile {
        height: 280px;
    }
    .moment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 0;
    }
    .moment {
        padding: 0 17px;
    }
    .moment:nth-child(odd) {
        border: 0;
        padding-left: 0;
    }
    .moment-no {
        margin-bottom: 10px;
    }
    .complete-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .complete-item > img {
        width: 105px;
        height: 150px;
    }
    .complete-item h3 {
        font-size: 19px;
    }
    .update-timeline article {
        gap: 15px;
        flex-wrap: wrap;
    }
    .update-timeline time {
        min-width: 55px;
        font-size: 22px;
    }
    .update-timeline article > div {
        flex: 1;
    }
    .update-timeline article > a {
        margin-left: 70px;
    }
    .bookshelf-promo {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
    }
    .bookshelf-promo > a {
        margin-left: 0;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .about-lead {
        font-size: 28px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .subscription-module {
        padding: 30px 24px;
        gap: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .subscription-module h2 {
        font-size: 26px;
    }
    .mobile-brand {
        align-self: center;
        padding-inline: 35px;
    }
    .footer-inner {
        gap: 15px 20px;
    }
    .footer-inner > p {
        width: 100%;
    }
    .collection-hero {
        padding: 26px;
    }
    .collection-hero h1 {
        font-size: 32px;
    }
    .collection-kicker {
        font-size: 19px;
    }
    .collection-meta {
        gap: 12px;
    }
    .catalog-grid .card-copy {
        padding: 13px;
    }
    .catalog-grid .card-copy p:not(.eyebrow) {
        min-height: 100px;
    }
    .detail-hero {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 24px;
    }
    .detail-cover {
        width: min(220px, 100%);
        margin: auto;
    }
    .detail-copy h1 {
        font-size: 28px;
    }
    .detail-hook {
        font-size: 16px;
    }
    .chapter-grid {
        grid-template-columns: 1fr;
    }
    .recommend-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 15px;
    }
    .reader-heading h1 {
        font-size: 27px;
    }
    .reader-heading h1 span {
        font-size: 21px;
    }
    .reader-tools {
        gap: 8px;
    }
    .reader-tools button, .reader-tools a {
        padding: 8px 12px;
    }
    .story-panel figcaption {
        padding: 22px;
    }
    .chapter-navigation {
        justify-content: center;
    }
    .chapter-navigation .button {
        flex: 1;
        padding: 10px;
    }
    .search-results, .saved-books {
        grid-template-columns: 1fr;
    }
}

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