:root {
    color-scheme: light;
    --paper: #fcfbf8;
    --white: #ffffff;
    --ink: #292d32;
    --muted: #737771;
    --orange: #db4b21;
    --orange-light: #fff0e9;
    --line: #e8e7e1;
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

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

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

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

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

button, input {
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid #366da8;
    outline-offset: 5px;
}

button {
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    background: #e5e8e4;
    color: #555;
    font-size: 14px;
}

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

h1, h2, h3 {
    line-height: 1.4;
    letter-spacing: -0.035em;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 18px;
}

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

.icon {
    width: 21px;
    height: 21px;
    display: inline-block;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.sr-only, .skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link:focus {
    display: block;
    padding: 12px;
    background: var(--orange-light);
}

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

.header-top {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-block: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark, .subscription-mark {
    display: grid;
    place-items: center;
    background: #f16636;
    color: #fff;
    border-radius: 17px 17px 17px 5px;
    width: 51px;
    height: 51px;
    font-size: 34px;
    font-weight: 900;
}

.brand-name {
    font-size: 26px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 1px;
}

.brand-name small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 2px;
    margin-top: 6px;
}

.header-note {
    font-size: 14px;
    color: var(--muted);
    padding-left: 25px;
    border-left: 1px solid var(--line);
}

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

.primary-nav {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    padding-bottom: 13px;
    gap: 6px;
}

.primary-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 3px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.primary-nav a.active {
    color: var(--orange);
    background: var(--orange-light);
    font-weight: 700;
}

.menu-button {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 7px 10px;
}

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

main > .hero {
    margin-top: 32px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #f1e6d6;
    background: #f8f0e0;
    border-radius: 20px;
    overflow: hidden;
    min-height: 430px;
}

.hero-copy {
    padding: 38px 40px;
}

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

.hero .eyebrow {
    color: #9c6d3e;
}

.hero h1 {
    font-size: 19px;
    color: #a44726;
    margin-bottom: 9px;
}

.hero-tagline {
    font-size: clamp(32px, 3.6vw, 46px);
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: -2px;
}

.hero-description {
    max-width: 380px;
    font-size: 14px;
    line-height: 1.9;
    color: #6d6c61;
    margin-top: 17px;
}

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

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

.primary {
    background: var(--orange);
    color: #fff;
}

.primary:hover {
    background: #b93e18;
    color: #fff;
}

.secondary {
    border-color: #dcdacf;
    background: rgba(255, 255, 255, 0.6);
}

.dark {
    color: #fff;
    background: #303d43;
}

.dark:hover {
    color: #fff;
    background: #19292e;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 23px;
    font-size: 12px;
    color: #7f795f;
}

.hero-visual {
    position: relative;
    min-height: 430px;
    background: #3e5c5c;
    color: #fff;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    height: 100%;
    width: 100%;
    object-position: center 30%;
    opacity: 0.9;
}

.hero-visual::after {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14, 29, 35, 0.93), transparent 90%);
}

.hero-feature {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 25px;
    z-index: 1;
}

.pill {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #ffffff66;
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: 12px;
}

.hero-feature h2 {
    font-size: 34px;
    letter-spacing: 2px;
}

.hero-feature p {
    margin-top: 6px;
    font-size: 14px;
    color: #e2e5e5;
}

.feature-link {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
}

.hero-number {
    position: absolute;
    z-index: 1;
    right: 22px;
    top: 20px;
    font-size: 12px;
    letter-spacing: 3px;
}

main > .quick-strip {
    margin-top: 24px;
}

.quick-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 0;
}

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

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

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

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

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

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

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

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

.section-heading h2, .about h2, .subscribe h2, .editor-note h2, .reading-note h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 650;
    flex-shrink: 0;
}

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

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

.category-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color 0.2s, transform 0.2s;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: #eaa287;
}

.category-icon {
    padding: 9px;
    border-radius: 10px;
    display: inline-flex;
    margin-bottom: 15px;
}

.tone-0 {
    color: #b45828;
    background: #fff0e5;
}

.tone-1 {
    color: #4e7980;
    background: #ebf5f5;
}

.tone-2 {
    color: #716187;
    background: #f1edf7;
}

.tone-3 {
    color: #697f48;
    background: #edf2e6;
}

.category-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 9px 0 15px;
}

.category-card .text-link {
    margin-top: auto;
    color: #666b63;
}

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

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

.cover {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 11px;
    overflow: hidden;
    background: #e0e8e4;
}

.cover img {
    height: 100%;
    transition: transform 0.3s;
}

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

.cover-label {
    position: absolute;
    left: 8px;
    bottom: 8px;
    font-size: 12px;
    background: #24302edb;
    color: #fff;
    border-radius: 4px;
    padding: 2px 7px;
}

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

.card-copy .eyebrow {
    font-size: 12px;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.card-copy h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

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

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

.rank-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid #f2b590;
    border-radius: 12px;
    padding: 24px;
}

.rank-panel:nth-child(2) {
    border-top-color: #b8cfd2;
}

.rank-panel:nth-child(3) {
    border-top-color: #c9d4b5;
}

.rank-panel h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.rank-panel li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

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

.rank-number {
    color: #c36e49;
    font-size: 26px;
    font-style: italic;
    font-weight: 750;
}

.rank-panel li a {
    font-size: 15px;
    font-weight: 650;
}

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

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

.korean-feature {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    background: #e7efec;
    border-radius: 18px;
    overflow: hidden;
}

.korean-art {
    min-height: 360px;
    max-height: 420px;
    overflow: hidden;
}

.korean-art img {
    height: 100%;
    object-position: center 30%;
}

.korean-copy {
    padding: 36px 45px;
}

.korean-copy h2 {
    font-size: 30px;
}

.korean-copy > p:not(.eyebrow) {
    font-size: 14px;
    color: #5b6c67;
    margin-top: 16px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 14px;
}

.check-list li {
    margin-top: 7px;
}

.check-list .icon {
    width: 16px;
    margin-right: 7px;
}

.updates {
    display: grid;
    grid-template-columns: 240px 1fr;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.update-date {
    background: #f4efe6;
    padding: 35px 28px;
}

.update-date strong {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.update-date span {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1px;
}

.update-date p {
    margin-top: 25px;
    font-size: 15px;
}

.update-rows {
    padding: 8px 26px;
}

.update-rows a {
    display: grid;
    grid-template-columns: 55px 1fr 1.5fr 20px;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.update-rows a:last-child {
    border-bottom: 0;
}

.update-rows time, .update-rows span {
    color: var(--muted);
    font-size: 12px;
}

.mood {
    background: #f7eee6;
    border-radius: 12px;
    padding: 25px;
}

.mood-1 {
    background: #eaf0e5;
}

.mood-2 {
    background: #f6e9e8;
}

.mood-3 {
    background: #eeebf4;
}

.mood-index {
    font-size: 12px;
    color: #7b796c;
    display: block;
    margin-bottom: 18px;
}

.mood p {
    font-size: 14px;
    margin: 12px 0 22px;
    color: #696f67;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #d4d6cd;
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.search-box input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 3px;
}

.discovery-grid, .recommend-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.compact {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.compact > a {
    width: 66px;
    flex-shrink: 0;
}

.compact .cover {
    border-radius: 6px;
}

.compact .cover-label {
    display: none;
}

.compact .card-copy {
    padding: 0;
}

.compact h3 {
    font-size: 14px;
}

.compact p {
    font-size: 12px;
}

.bookshelf {
    background: #f1f2ec;
    border-radius: 15px;
    padding: 30px;
}

.shelf-empty {
    display: flex;
    align-items: center;
    gap: 23px;
    padding: 20px 0 5px;
}

.large-icon {
    color: #859174;
}

.large-icon .icon {
    width: 43px;
    height: 43px;
}

.shelf-empty p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
}

.shelf-empty .button {
    margin-left: auto;
}

.saved-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #d9ddcf;
}

.saved-row button {
    background: transparent;
    border: 0;
    color: #954025;
    font-size: 14px;
    padding: 10px;
    flex-shrink: 0;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 18px 5px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 650;
}

.faq-list details p {
    font-size: 15px;
    color: var(--muted);
    margin: 13px 0 3px 20px;
    max-width: 900px;
}

.about {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    padding-block: 15px;
}

.about-title {
    font-size: 34px;
    font-weight: 750;
    line-height: 1.5;
    margin-top: 18px;
}

.about > div:last-child p {
    color: #666e64;
    margin-bottom: 15px;
    line-height: 1.95;
}

.subscribe {
    background: #f8e9dd;
    padding: 36px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 105px 1fr auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 64px;
}

.subscription-mark {
    width: 100px;
    height: 108px;
    font-size: 56px;
    line-height: 1.1;
    padding: 10px;
    transform: rotate(-4deg);
}

.subscription-mark span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.subscribe h2 {
    font-size: 24px;
}

.subscribe p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 9px;
}

.subscribe .muted {
    font-size: 12px !important;
}

.subscribe-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.site-footer {
    margin-top: 60px;
    padding: 35px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    font-size: 12px;
}

.footer-brand {
    font-size: 18px;
    color: var(--ink);
    font-weight: 750;
    margin-bottom: 13px;
}

.footer-brand span {
    font-size: 14px;
    font-weight: 400;
    margin-left: 14px;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin: 14px 0;
    font-size: 14px;
}

.footer-note {
    color: #797e75;
}

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

main > .collection-hero {
    margin-top: 24px;
}

.collection-hero {
    padding: 32px 40px;
    background: #f4ecdf;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 50px;
    align-items: center;
}

.collection-hero h1 {
    font-size: 38px;
    margin-bottom: 18px;
}

.collection-hero h1 .icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    color: var(--orange);
}

.collection-hero p:not(.eyebrow) {
    max-width: 640px;
    color: #6c6f61;
}

.collection-cover img {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.chips span {
    background: #fff9;
    padding: 4px 11px;
    border-radius: 6px;
    font-size: 12px;
}

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

.chapter-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 27px;
}

.chapter-no {
    font-size: 32px;
    font-weight: 800;
    color: #c27755;
}

.chapter-card h2 {
    font-size: 21px;
}

.chapter-card p:not(.eyebrow) {
    font-size: 14px;
    color: var(--muted);
    margin: 12px 0;
}

.editor-note {
    background: #f0f2eb;
    padding: 30px;
    border-radius: 12px;
}

.editor-note p {
    margin-top: 18px;
    color: #68715f;
}

.reader {
    max-width: 820px;
    margin: 40px auto 0;
}

.reader-header {
    text-align: center;
}

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

.reader-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
    margin: 20px 0;
}

.chapter-intro {
    color: var(--muted);
    line-height: 1.9;
    text-align: left;
}

.reader-toolbar {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 26px 0;
}

.reader-toolbar button {
    background: #fff;
    border: 1px solid #dcded7;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.reader-toolbar button .icon {
    width: 17px;
    margin-right: 6px;
}

.reader-toolbar button[aria-pressed="true"] {
    background: #f5e3d4;
    border-color: #cd936b;
    color: #924318;
}

.reading-note {
    background: #f0efe8;
    padding: 23px;
    border-radius: 10px;
}

.reading-note h2 {
    font-size: 17px;
    margin-bottom: 10px;
}

.reading-note p {
    color: #696f63;
    font-size: 14px;
}

.scene {
    margin-top: 45px;
}

.scene h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.scene img {
    aspect-ratio: 3 / 4;
    object-fit: contain;
    border-radius: 9px;
    background: #e8eae5;
}

figcaption {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    padding-top: 10px;
}

.scene-story {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    margin-top: 20px;
    border-radius: 9px;
    font-size: 19px;
    line-height: 2;
}

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

.chapter-end > .icon {
    color: #6b8954;
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
}

.chapter-end h2 {
    font-size: 24px;
}

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

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

.eye-care {
    --paper: #e7eddf;
    --white: #f5f8ee;
}

.eye-care .scene-story {
    background: #f4f7ed;
}

.wide-reader .reader {
    max-width: 1080px;
}

.toast {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e3a33;
    color: #fff;
    padding: 12px 22px;
    border-radius: 9px;
    z-index: 20;
    max-width: calc(100% - 32px);
    width: max-content;
    box-shadow: 0 4px 24px #0002;
    font-size: 14px;
}

.toast.visible {
    display: block;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1050px) {
    .header-note {
        display: none;
    }

    .primary-nav a {
        flex-direction: column;
        gap: 4px;
    }

    .hero-copy {
        padding: 32px;
    }

    .quick-strip a {
        padding: 0 15px;
    }

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

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

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

    .rank-panel {
        padding: 18px;
    }

    .rank-panel li {
        gap: 9px;
    }

    .korean-copy {
        padding: 30px;
    }

    .subscribe {
        grid-template-columns: 85px 1fr;
    }

    .subscribe-actions {
        grid-column: 2;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .subscription-mark {
        width: 80px;
        height: 90px;
        font-size: 44px;
    }

    .updates {
        grid-template-columns: 180px 1fr;
    }
}

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

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

    .header-top {
        gap: 12px;
        padding-block: 17px;
        flex-wrap: wrap;
    }

    .brand-mark {
        width: 43px;
        height: 43px;
        font-size: 29px;
        border-radius: 13px 13px 13px 4px;
    }

    .brand-name {
        font-size: 23px;
    }

    .brand-name small {
        letter-spacing: 1px;
    }

    .shelf-link {
        padding: 8px;
        border: 0;
        margin-left: 0;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .primary-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }

    .js .primary-nav:not(.expanded) {
        display: none;
    }

    .primary-nav a {
        flex-direction: row;
        padding: 12px 0;
        gap: 7px;
    }

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

    main > .hero {
        margin-top: 24px;
    }

    .hero-copy {
        padding: 28px;
    }

    .hero-tagline {
        font-size: 36px;
    }

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

    .hero-feature {
        left: 28px;
        bottom: 25px;
    }

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

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

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

    .section-heading h2 {
        font-size: 23px;
    }

    .section-heading > .text-link {
        font-size: 12px;
        margin-top: 5px;
    }

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

    .category-card {
        padding: 18px;
    }

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

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

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

    .rank-panel {
        padding: 23px;
    }

    .rank-panel li {
        gap: 20px;
    }

    .korean-feature {
        grid-template-columns: 1fr;
    }

    .korean-art {
        min-height: 250px;
        height: 280px;
    }

    .korean-copy {
        padding: 28px;
    }

    .korean-copy h2 {
        font-size: 27px;
    }

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

    .update-date {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 17px 22px;
    }

    .update-date strong {
        font-size: 32px;
    }

    .update-date p {
        display: none;
    }

    .update-rows {
        padding: 0 18px;
    }

    .update-rows a {
        grid-template-columns: 43px 1fr 20px;
        gap: 2px 12px;
    }

    .update-rows span {
        grid-column: 2;
    }

    .update-rows .icon {
        grid-column: 3;
        grid-row: span 2;
    }

    .mood {
        padding: 20px;
    }

    .discovery-grid, .recommend-grid {
        gap: 12px;
    }

    .compact {
        display: block;
    }

    .compact > a {
        width: 100%;
        display: block;
    }

    .compact .card-copy {
        padding-top: 12px;
    }

    .bookshelf {
        padding: 24px;
    }

    .shelf-empty {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .shelf-empty .button {
        margin-left: 0;
    }

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

    .about-title {
        font-size: 30px;
    }

    .subscribe {
        padding: 26px;
        grid-template-columns: 1fr;
        gap: 23px;
        margin-bottom: 44px;
    }

    .subscribe-actions {
        grid-column: auto;
    }

    .subscribe h2 {
        font-size: 23px;
    }

    .subscribe .eyebrow {
        font-size: 12px;
    }

    .collection-hero {
        padding: 25px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .collection-hero h1 {
        font-size: 30px;
    }

    .collection-cover {
        max-width: 160px;
    }

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

    .chapter-card {
        padding: 22px;
        gap: 17px;
    }

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

    .reader-meta {
        gap: 8px 15px;
    }

    .reader-toolbar {
        gap: 8px;
    }

    .reader-toolbar button {
        padding: 9px 10px;
        font-size: 12px;
    }

    .reader-toolbar .icon {
        display: none;
    }

    .scene-story {
        padding: 22px;
        font-size: 17px;
    }

    .chapter-nav {
        gap: 8px;
    }

    .chapter-nav .button {
        font-size: 12px;
        padding: 10px 5px;
    }
}

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

    * {
        transition: none !important;
    }
}
