@charset "UTF-8";

:root {
    --ink: #202427;
    --muted: #687072;
    --paper: #f6f7f4;
    --white: #fff;
    --line: #dce1da;
    --orange: #fc5b26;
    --lime: #dff389;
    --teal: #174e50;
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

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

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

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

a:hover {
    color: #bb360e;
}

button, input {
    font: inherit;
}

button, .button {
    cursor: pointer;
}

button:disabled {
    cursor: default;
    opacity: .65;
}

a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
    outline: 3px solid #126cbe;
    outline-offset: 4px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: #dfe5df;
}

svg {
    flex-shrink: 0;
}

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

h1, h2, h3 {
    line-height: 1.35;
    overflow-wrap: anywhere;
}

h2 {
    font-size: 28px;
    letter-spacing: -.03em;
}

h3 {
    font-size: 18px;
}

p + p {
    margin-top: 14px;
}

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

[hidden] {
    display: none !important;
}

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

.icon {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

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

.skip:focus {
    top: 16px;
}

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

.header-top {
    min-height: 91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.brand img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.brand strong {
    display: block;
    font-size: 24px;
    letter-spacing: .06em;
}

.brand small {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
}

.header-note {
    color: var(--muted);
    font-size: 14px;
    margin-left: auto;
}

.header-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
}

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

.nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 6px;
    border-radius: 10px;
    font-size: 15px;
    white-space: nowrap;
}

.nav a:hover {
    background: #f7f3eb;
}

.nav a[aria-current="page"] {
    background: var(--ink);
    color: #fff;
}

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

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

.hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: var(--teal);
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
    min-height: 444px;
}

.hero-copy {
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: .08em;
    font-weight: 700;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--lime);
}

.hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: .02em;
    margin-top: 14px;
}

.hero h1 a:hover {
    color: var(--lime);
}

.hero-subtitle {
    font-size: 26px;
    margin-top: 8px;
    margin-bottom: 18px;
    font-weight: 500;
}

.hero-copy > p:not(.hero-subtitle) {
    color: #d2e4df;
    max-width: 450px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 21px;
    border-radius: 8px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: white;
    font-weight: 600;
}

.button:hover {
    background: #3a4243;
    color: white;
}

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

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

.button.lime {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--ink);
}

.hero-stage {
    position: relative;
    min-width: 0;
    padding: 35px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
    background: #225b5c;
}

.hero-book {
    background: #fff;
    color: var(--ink);
    border: 5px solid #fff;
    box-shadow: 0 15px 25px #09292c50;
    transform: rotate(-5deg);
    min-width: 0;
}

.hero-book + .hero-book {
    transform: rotate(6deg) translateY(24px);
}

.hero-book img {
    aspect-ratio: 3 / 4;
    width: 100%;
}

.hero-book strong {
    display: block;
    padding: 9px 5px;
    text-align: center;
    font-size: 16px;
}

.hero-stamp {
    position: absolute;
    right: 20px;
    top: 13px;
    background: var(--lime);
    color: #172a28;
    border: 2px solid #172a28;
    border-radius: 50%;
    width: 73px;
    height: 73px;
    display: grid;
    place-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.4;
    transform: rotate(12deg);
}

.discovery {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
    margin-top: 28px;
}

.discovery h2 {
    font-size: 19px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 7px 7px 7px 16px;
}

.search-form input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 8px;
}

.search-form button {
    white-space: nowrap;
}

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

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

.section-heading .icon {
    width: 26px;
    height: 26px;
    color: var(--orange);
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
}

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

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

.cover-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 11px;
    margin-bottom: 13px;
}

.cover-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    transition: transform .25s;
}

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

.pill {
    display: inline-flex;
    border-radius: 4px;
    padding: 2px 8px;
    background: #edf0e7;
    color: #445545;
    font-size: 12px;
    font-weight: 700;
}

.cover-link .pill {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #fff;
}

.book-card h3 {
    font-size: 16px;
    min-height: 44px;
}

.book-card .meta {
    font-size: 13px;
    margin-top: 4px;
}

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

.category-tile {
    display: grid;
    grid-template-columns: 50px 1fr 18px;
    align-items: center;
    gap: 15px;
    padding: 23px 20px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 12px;
}

.category-tile > .icon {
    width: 46px;
    height: 46px;
    padding: 10px;
    background: #f9eee6;
    color: #a8421f;
    border-radius: 12px;
}

.category-tile:nth-child(2n) > .icon {
    background: #e5f1e7;
    color: #275d43;
}

.category-tile strong {
    display: block;
}

.category-tile small {
    display: block;
    margin-top: 3px;
    font-size: 13px;
}

.ranking {
    display: grid;
    grid-template-columns: 300px 1fr;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.rank-intro {
    background: var(--lime);
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rank-intro h2 {
    font-size: 36px;
    margin: 15px 0;
}

.rank-intro p {
    font-size: 14px;
}

.rank-list {
    list-style: none;
    margin: 0;
    padding: 15px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
}

.rank-list li {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.rank-list li:nth-last-child(-n+2) {
    border-bottom: 0;
}

.rank-number {
    color: var(--orange);
    font-size: 27px;
    font-family: Georgia, serif;
    font-style: italic;
    width: 33px;
    flex-shrink: 0;
}

.rank-list small {
    display: block;
    font-size: 12px;
}

.korean-feature {
    padding: 30px;
    background: #e7efec;
    border-radius: 22px;
}

.landscape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.landscape-card {
    display: grid;
    grid-template-columns: 38% 1fr;
    overflow: hidden;
    background: white;
    border-radius: 12px;
    min-width: 0;
}

.landscape-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
}

.landscape-copy {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

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

.landscape-copy .text-link {
    margin-top: auto;
}

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

.update-row {
    display: grid;
    grid-template-columns: 84px 1fr 1.3fr 100px;
    align-items: center;
    gap: 18px;
    padding: 18px 8px;
    border-bottom: 1px solid var(--line);
}

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

.update-row > a:last-child {
    justify-self: end;
}

.spotlight {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #242c32;
    color: #fff;
    border-radius: 22px;
    overflow: hidden;
}

.spotlight > img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    aspect-ratio: 4 / 3;
}

.spotlight-copy {
    padding: 38px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.spotlight-copy h2 {
    font-size: 34px;
    margin: 15px 0;
}

.spotlight-copy p {
    color: #c9d5df;
}

.quote {
    border-left: 3px solid var(--orange);
    padding-left: 16px;
    margin: 20px 0 0;
    font-size: 18px;
}

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

.romance-card {
    border-bottom: 3px solid #f8b599;
    padding-bottom: 20px;
}

.romance-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50% 50% 12px 12px;
    margin-bottom: 16px;
}

.romance-card p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 9px;
}

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

.finish-card {
    padding: 23px;
    background: #fff;
    border-radius: 4px 18px 18px 4px;
    border: 1px solid var(--line);
    border-left: 6px solid var(--teal);
}

.finish-card h3 {
    margin: 10px 0;
}

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

.reading-paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.path-card {
    padding: 28px;
    border-right: 1px solid var(--line);
}

.path-card:last-child {
    border: 0;
}

.path-card .eyebrow {
    color: #a74720;
}

.path-card h3 {
    margin: 16px 0 8px;
}

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

.shelf {
    padding: 30px;
    background: #edf0e4;
    border: 1px dashed #84906d;
    border-radius: 18px;
}

.shelf-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.shelf-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
}

.shelf-list button {
    border: 0;
    color: #944126;
    background: transparent;
    padding: 6px;
}

.about {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 50px;
    padding: 10px 0;
}

.about h2 {
    font-size: 36px;
    margin: 15px 0;
}

.about-copy {
    color: #515b5a;
}

.about-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.about-facts span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 14px;
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 14px;
}

details {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 19px 21px;
}

summary {
    cursor: pointer;
    font-weight: 600;
}

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

.subscribe {
    background: var(--ink);
    color: white;
    padding: 34px 38px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 40px;
}

.subscribe img {
    width: 90px;
    height: 90px;
    border-radius: 20px;
}

.subscribe h2 {
    font-size: 25px;
    margin-bottom: 8px;
}

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

.subscribe .actions {
    margin: 0;
    flex-direction: column;
    align-items: stretch;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 26px 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-inner {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 0;
    color: var(--muted);
    font-size: 14px;
}

.page-intro {
    border-radius: 20px;
    background: #e8eee4;
    padding: 34px 38px;
    margin-top: 0;
}

.page-intro h1 {
    font-size: 38px;
    margin: 10px 0 15px;
}

.page-intro p {
    max-width: 850px;
    color: #566257;
}

.category-catalog {
    margin-bottom: 45px;
}

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

.catalog-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: white;
    min-width: 0;
}

.catalog-card > a > img {
    aspect-ratio: 4 / 3;
    width: 100%;
}

.catalog-copy {
    padding: 22px;
}

.catalog-copy h2 {
    font-size: 21px;
    margin: 9px 0;
}

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

.catalog-copy .actions {
    gap: 15px;
    margin-top: 16px;
}

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

.detail-hero > img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
}

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

.detail-copy .synopsis {
    margin-top: 20px;
    max-width: 710px;
}

.chapter-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.chapter-list a {
    display: flex;
    gap: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px;
    height: 100%;
}

.chapter-list strong {
    display: block;
}

.chapter-list small {
    display: block;
    margin-top: 8px;
}

.notice {
    padding: 24px;
    border-left: 4px solid #e7b16d;
    background: #f6eee0;
    border-radius: 0 12px 12px 0;
    font-size: 15px;
}

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

.reader-header {
    text-align: center;
    margin-top: 12px;
}

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

.reader-header .actions {
    justify-content: center;
}

.reader-body {
    width: min(780px, 100%);
    margin: 38px auto 0;
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    border-radius: 12px;
}

.reader-body h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

.panel + .panel {
    margin-top: 34px;
}

.panel img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    object-fit: contain;
    background: #e9eee8;
}

.panel figcaption {
    padding: 20px 5px 0;
    font-size: 18px;
    line-height: 1.95;
}

.panel figcaption .panel-number {
    font-size: 13px;
    color: #a23d1d;
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}

.reading-note {
    margin: 24px auto 0;
    max-width: 780px;
}

.end-note {
    text-align: center;
    margin: 32px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.chapter-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 24px 0 8px;
}

.chapter-nav a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    font-size: 15px;
}

.chapter-nav a:last-child {
    text-align: right;
}

.large-text .panel figcaption {
    font-size: 22px;
}

.night {
    --paper: #161c21;
    --ink: #e9eee8;
    --white: #232d35;
    --muted: #aebabc;
    --line: #3f4c52;
    color: #e9eee8;
    background: #161c21;
}

.night .site-header, .night .reader-body {
    background: #202a32;
}

.night .nav a {
    background: #303d47;
    color: #edf1eb;
}

.night .nav a:hover {
    background: #3d4e59;
}

.night .nav a[aria-current="page"], .night .button {
    background: #dbef90;
    color: #192227;
}

.night .notice {
    background: #302f27;
}

.night .panel img {
    background: #28343a;
}

.night .pill {
    color: #d5e4cd;
    background: #334439;
}

.night .subscribe {
    background: #243238;
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #202427;
    color: white;
    padding: 12px 20px;
    border: 1px solid #a4afad;
    border-radius: 10px;
    z-index: 50;
    max-width: calc(100% - 30px);
    text-align: center;
    font-size: 14px;
}

.image-error {
    object-fit: contain !important;
}

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

    .hero-copy {
        padding: 30px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-stage {
        padding: 35px 18px;
        gap: 10px;
    }

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

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

    .ranking {
        grid-template-columns: 240px 1fr;
    }

    .rank-list {
        column-gap: 18px;
        padding: 12px 20px;
    }

    .landscape-card {
        grid-template-columns: 1fr;
    }

    .landscape-card img {
        aspect-ratio: 4 / 3;
    }

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

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

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

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

    .about {
        gap: 28px;
    }
}

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

    .header-top {
        min-height: 77px;
        gap: 10px;
    }

    .brand {
        gap: 8px;
    }

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

    .brand strong {
        font-size: 19px;
    }

    .brand small {
        font-size: 10px;
    }

    .header-action {
        padding: 8px 10px;
        font-size: 13px;
        gap: 5px;
    }

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

    .nav a {
        font-size: 13px;
        padding: 8px 0;
        gap: 5px;
        background: #f5f6f3;
    }

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

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

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

    .hero {
        grid-template-columns: 1fr;
        border-radius: 17px;
    }

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

    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .hero-copy > p:not(.hero-subtitle) {
        font-size: 14px;
    }

    .hero-stage {
        padding: 25px 36px 34px;
        gap: 16px;
    }

    .hero-book img {
        aspect-ratio: 4 / 5;
    }

    .hero-book strong {
        font-size: 13px;
    }

    .hero-book + .hero-book {
        transform: rotate(5deg) translateY(5px);
    }

    .hero-stamp {
        width: 56px;
        height: 56px;
        font-size: 11px;
    }

    .discovery {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-top: 22px;
    }

    .search-form {
        gap: 3px;
        padding-left: 9px;
    }

    .search-form .button {
        padding: 9px 13px;
    }

    .section-heading {
        gap: 10px;
        margin-bottom: 19px;
        align-items: center;
    }

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

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

    .section-heading h2 {
        gap: 7px;
    }

    .section-heading .icon {
        width: 22px;
        height: 22px;
    }

    .text-link {
        font-size: 13px;
    }

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

    .category-grid {
        gap: 10px;
    }

    .category-tile {
        grid-template-columns: 1fr;
        padding: 17px;
        gap: 10px;
    }

    .category-tile > span:last-child {
        display: none;
    }

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

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

    .rank-intro {
        padding: 24px;
    }

    .rank-intro h2 {
        font-size: 28px;
    }

    .rank-list {
        padding: 8px 20px;
        grid-template-columns: 1fr 1fr;
        column-gap: 12px;
    }

    .rank-list li {
        gap: 6px;
        font-size: 13px;
    }

    .rank-number {
        width: 25px;
        font-size: 23px;
    }

    .rank-list small {
        font-size: 12px;
    }

    .korean-feature {
        padding: 22px 16px;
    }

    .landscape-grid {
        gap: 12px;
    }

    .landscape-copy {
        padding: 14px 11px;
    }

    .landscape-copy h3 {
        font-size: 16px;
        min-height: 44px;
    }

    .landscape-copy p {
        font-size: 13px;
    }

    .update-row {
        grid-template-columns: 55px 1fr;
        gap: 7px 12px;
        padding: 17px 0;
        font-size: 14px;
    }

    .update-row > a:last-child {
        justify-self: start;
        grid-column: 2;
    }

    .update-row > .meta {
        grid-column: 2;
    }

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

    .spotlight > img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .spotlight-copy {
        padding: 27px;
    }

    .spotlight-copy h2 {
        font-size: 28px;
    }

    .romance-grid {
        gap: 22px 15px;
    }

    .romance-card h3 {
        font-size: 16px;
    }

    .finish-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .finish-card {
        padding: 16px 13px;
        border-left-width: 4px;
    }

    .finish-card h3 {
        font-size: 16px;
        min-height: 44px;
    }

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

    .reading-paths {
        grid-template-columns: 1fr;
    }

    .path-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 24px;
    }

    .shelf {
        padding: 22px;
    }

    .shelf-list {
        grid-template-columns: 1fr;
    }

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

    .about h2 {
        font-size: 29px;
    }

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

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

    .subscribe img {
        width: 58px;
        height: 58px;
        border-radius: 13px;
    }

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

    .subscribe .actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
    }

    .page-intro {
        padding: 26px;
    }

    .page-intro h1 {
        font-size: 30px;
    }

    .catalog-grid {
        gap: 14px;
    }

    .catalog-card > a > img {
        aspect-ratio: 3 / 4;
    }

    .catalog-copy {
        padding: 14px;
    }

    .catalog-copy h2 {
        font-size: 17px;
        min-height: 46px;
    }

    .catalog-copy p {
        font-size: 13px;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }

    .detail-hero > img {
        width: 180px;
        margin: auto;
    }

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

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

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

    .reader-body {
        padding: 15px;
    }

    .panel figcaption {
        font-size: 17px;
    }

    .chapter-nav a {
        padding: 12px;
        font-size: 14px;
    }

    .notice {
        padding: 19px;
    }
}

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

    * {
        transition: none !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.feed-input {
    display: block;
    width: min(100%, 650px);
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-top: 10px;
}

@media (max-width: 680px) {
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}
