:root {
    --ink: #163e35;
    --text: #283e37;
    --muted: #69756e;
    --yellow: #ffda58;
    --paper: #fafbf8;
    --line: #e0e6df;
    --mint: #e7f1ea;
    --surface: #fff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font: 16px/1.75 "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #618035;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid #ad7900;
    outline-offset: 5px;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    background: #dae5db;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    line-height: 1.4;
}

h2 {
    font-size: 28px;
    letter-spacing: -0.6px;
}

h3 {
    font-size: 18px;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.icon {
    display: inline-block;
    width: 21px;
    height: 21px;
    vertical-align: -4px;
    flex-shrink: 0;
}

h2 > .icon,
h1 > .icon {
    margin-right: 12px;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.topbar {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 91px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand img {
    border-radius: 13px;
}

.brand small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--muted);
    margin-top: -3px;
}

.header-note {
    color: var(--muted);
    font-size: 14px;
    border-left: 1px solid var(--line);
    padding-left: 28px;
}

.shelf-link {
    margin-left: auto;
    padding: 9px 17px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
}

.shelf-link .icon {
    margin-left: 12px;
}

.navigation {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 9px;
    padding-bottom: 14px;
}

.navigation a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 3px;
    border-radius: 8px;
    font-size: 15px;
    white-space: nowrap;
}

.navigation a:hover {
    background: var(--mint);
}

.navigation .active {
    color: var(--ink);
    background: var(--yellow);
    font-weight: 700;
}

.home {
    padding-top: 30px;
}

.home > section {
    margin-bottom: 68px;
}

.hero {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    background: #edf2e6;
    border-radius: 20px;
    overflow: hidden;
    min-height: 455px;
}

.hero-copy {
    padding: 42px 42px 30px;
    background: linear-gradient(125deg, #eff4e8, #e3ebdb);
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 1.7px;
    font-weight: 700;
    color: #65745b;
    margin-bottom: 11px;
}

.hero h1 {
    font-size: 17px;
    margin: 17px 0 13px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(30px, 3.5vw, 45px);
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--ink);
}

.hero-description {
    margin-top: 20px;
    color: #5d6b5a;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 11px 20px;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.dark {
    background: var(--ink);
    color: #fff;
}

.dark:hover {
    background: #2c5843;
    color: #fff;
}

.plain {
    background: transparent;
    border-color: #b7c6b9;
    color: var(--ink);
}

.hero-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: #607255;
    margin-top: 27px;
}

.hero-art {
    position: relative;
    min-width: 0;
}

.hero-art > img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, #142e2be6);
    pointer-events: none;
}

.hero-story {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 25px;
    z-index: 1;
    color: white;
}

.hero-story span,
.hero-story strong,
.hero-story a {
    display: block;
}

.hero-story span {
    font-size: 12px;
    letter-spacing: 2px;
}

.hero-story strong {
    font-size: 25px;
    margin: 7px 0 9px;
}

.hero-story a {
    font-size: 14px;
}

.sticker {
    position: absolute;
    right: 24px;
    top: 26px;
    background: var(--yellow);
    border-radius: 50%;
    width: 88px;
    height: 88px;
    display: grid;
    place-content: center;
    text-align: center;
    transform: rotate(11deg);
    font-weight: 700;
    line-height: 1.5;
    font-size: 14px;
}

.home > .quick-picks {
    margin-top: -45px;
    margin-bottom: 55px;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 19px 22px;
    border-bottom: 1px solid var(--line);
}

.quick-picks > p {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
}

.quick-picks > div {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-picks a {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.section-heading .eyebrow {
    margin-bottom: 5px;
}

.text-link {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.cover-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.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 250ms;
}

.cover:hover img {
    transform: scale(1.035);
}

.cover-label {
    position: absolute;
    left: 9px;
    bottom: 9px;
    background: #ffffffeb;
    color: #214a3b;
    border-radius: 5px;
    font-size: 12px;
    padding: 3px 7px;
}

.comic-card h3 {
    margin-top: 12px;
    font-size: 16px;
}

.comic-card > p {
    margin-top: 5px;
    font-size: 12px;
    color: var(--muted);
}

.editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.editor-card {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 20px;
    padding: 28px;
    border-radius: 12px;
    align-items: center;
}

.mint {
    background: #e2ede8;
}

.yellow {
    background: #f7eecf;
}

.pill {
    font-size: 12px;
    color: #58684d;
    letter-spacing: 0.5px;
}

.editor-card h3 {
    margin: 13px 0;
    font-size: 23px;
}

.editor-card p {
    font-size: 14px;
    color: #526353;
    margin-bottom: 20px;
}

.editor-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    border-radius: 6px;
    transform: rotate(4deg);
    box-shadow: 5px 9px 0 #163e3517;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.category-card {
    padding: 22px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.category-card > .icon {
    width: 38px;
    height: 38px;
    padding: 8px;
    border-radius: 10px;
    background: var(--mint);
    margin-bottom: 16px;
}

.category-card:nth-child(2n) > .icon {
    background: #fff0bb;
}

.category-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 8px 0 17px;
    min-height: 49px;
}

.category-card > span {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.section-intro {
    margin: -12px 0 25px;
    color: var(--muted);
    font-size: 14px;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.rank-list {
    border-top: 2px solid var(--ink);
}

.rank-list > h3 {
    padding: 20px 0 5px;
    font-size: 16px;
}

.rank-list ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rank-list li {
    display: flex;
    gap: 17px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.rank-number {
    font-family: Georgia, serif;
    font-size: 31px;
    font-style: italic;
    color: #718161;
    width: 32px;
}

.rank-list img {
    width: 53px;
    height: 69px;
    border-radius: 5px;
}

.rank-list li > div {
    flex: 1;
}

.rank-list h4 {
    font-size: 16px;
}

.rank-list p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 5px;
}

.korean-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    border-radius: 16px;
    overflow: hidden;
    background: #163e35;
    color: #e0e9e2;
}

.korean-photo {
    min-width: 0;
}

.korean-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

.korean-copy {
    padding: 38px 42px;
}

.korean-copy h2 {
    color: #fff;
    margin-bottom: 17px;
}

.korean-copy .eyebrow {
    color: #d7d99b;
}

.korean-copy > p:not(.eyebrow) {
    font-size: 14px;
    color: #c4d5c7;
}

.korean-links {
    margin: 22px 0 18px;
}

.korean-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff26;
    padding: 11px 0;
    font-size: 15px;
}

.korean-copy a:hover {
    color: #ffda58;
}

.update-table {
    border-top: 1px solid var(--line);
}

.update-table article {
    display: grid;
    grid-template-columns: 95px 1fr 1.2fr 110px;
    gap: 24px;
    padding: 20px 15px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.update-table time {
    font: 24px/1.4 Georgia, serif;
}

.update-table time span {
    display: block;
    font: 12px/1.7 "Microsoft YaHei", sans-serif;
    color: var(--muted);
}

.update-table p {
    font-size: 12px;
    color: var(--muted);
}

.chapter-link {
    font-size: 14px;
}

.status {
    font-size: 12px;
    color: #477458;
    background: #e8f0e8;
    padding: 4px 11px;
    border-radius: 5px;
    text-align: center;
}

.finished-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.finished-grid article {
    border-left: 3px solid #dbbb55;
    padding: 9px 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.finish-tag {
    font-size: 12px;
    color: #7d692c;
    margin-bottom: 14px;
}

.finished-grid p {
    font-size: 14px;
    color: var(--muted);
    margin: 12px 0 18px;
    flex: 1;
}

.reading-note {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #f0f2e8;
    padding: 38px;
    gap: 45px;
    border-radius: 13px;
    align-items: center;
}

.reading-note > div > p:last-child {
    color: var(--muted);
    margin-top: 18px;
    font-size: 14px;
}

.reading-note ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reading-note li {
    display: flex;
    gap: 25px;
    margin: 19px 0;
}

.reading-note li > strong {
    color: #89977a;
    font: italic 30px Georgia, serif;
}

.reading-note li p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 5px;
}

.about-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    padding: 15px 0;
}

.about-lead {
    font-size: 23px;
    margin-top: 22px;
    color: #64765c;
}

.about-section > div:last-child p {
    margin-bottom: 19px;
    color: var(--muted);
    line-height: 2;
}

.subscribe-section {
    display: flex;
    gap: 34px;
    background: var(--yellow);
    padding: 38px;
    border-radius: 16px;
    align-items: center;
}

.subscribe-section h2 {
    margin-bottom: 12px;
}

.subscribe-section p:not(.eyebrow) {
    font-size: 14px;
}

.brand-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 17px;
    border: 1px solid #163e3540;
    border-radius: 14px;
    min-width: 145px;
    transform: rotate(-3deg);
    font-weight: 800;
}

.brand-tile img {
    background: transparent;
}

.feedback:empty {
    display: none;
}

.feedback {
    margin-top: 10px;
    font-size: 14px;
}

.site-footer {
    background: #eef2ec;
    border-top: 1px solid var(--line);
    padding: 33px 0 18px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding-bottom: 25px;
}

.footer-row strong {
    font-size: 22px;
    color: var(--ink);
}

.footer-row p {
    font-size: 14px;
    margin-top: 7px;
    color: var(--muted);
}

.footer-row > div:last-child {
    display: flex;
    gap: 24px;
    font-size: 14px;
    flex-wrap: wrap;
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid #d9e1d7;
    font-size: 12px;
    color: var(--muted);
}

.interior {
    padding-top: 24px;
    padding-bottom: 70px;
}

.interior > section {
    margin-top: 54px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}

.interior > .category-hero {
    margin-top: 0;
}

.category-hero {
    background: var(--mint);
    padding: 38px 44px;
    border-radius: 16px;
}

.category-hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.category-hero > p:last-child {
    max-width: 860px;
    margin-top: 15px;
    color: #5b6e60;
}

.page-subtitle {
    font-size: 22px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.catalog-card {
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    gap: 24px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.catalog-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
}

.catalog-card h3 {
    margin: 10px 0;
    font-size: 22px;
}

.catalog-card p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.directory-grid article {
    padding: 24px;
    background: var(--surface);
    border-top: 2px solid var(--ink);
}

.directory-grid h3 {
    margin-bottom: 12px;
}

.directory-grid article > a {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 44px;
    padding: 36px;
    border-radius: 18px;
    background: var(--mint);
    align-items: center;
}

.detail-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    box-shadow: 8px 10px 0 #163e3517;
}

.detail-hero h1 {
    font-size: 36px;
}

.meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.meta-pills span {
    border: 1px solid #b9cbbc;
    padding: 3px 11px;
    border-radius: 5px;
    font-size: 13px;
}

.synopsis {
    line-height: 1.95;
    margin-bottom: 17px;
}

.muted {
    color: var(--muted);
    font-size: 14px;
}

.story-intro > p {
    line-height: 2;
    margin-bottom: 15px;
}

.chapter-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.chapter-buttons > a {
    display: flex;
    align-items: center;
    gap: 23px;
    border: 1px solid var(--line);
    padding: 24px;
    border-radius: 10px;
    background: var(--surface);
}

.chapter-buttons > a > span {
    font: italic 35px Georgia, serif;
    color: #829374;
}

.chapter-buttons > a > div {
    flex: 1;
}

.chapter-buttons p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 5px;
}

.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reader {
    max-width: 800px;
    margin: auto;
}

.reader-heading {
    text-align: center;
    padding: 22px 0;
}

.reader-heading h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.reader-heading > p:last-child {
    font-size: 14px;
    color: var(--muted);
}

.reader-tools,
.reader-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.reading-instructions {
    padding: 22px;
    border-left: 3px solid #d2b241;
    background: #f4f1e3;
    margin: 28px 0;
}

.reading-instructions h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.reading-instructions p {
    font-size: 14px;
    color: #596553;
}

.comic-panel {
    margin: 36px 0;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    padding: 13px 25px;
    background: var(--mint);
    font-size: 14px;
    color: var(--ink);
}

.comic-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #e4ebe5;
}

.comic-panel figcaption {
    padding: 30px 35px;
    font-size: 19px;
    line-height: 2.1;
}

.large-text .comic-panel figcaption {
    font-size: 24px;
}

.chapter-end {
    text-align: center;
    padding: 24px 0;
}

.chapter-end > span {
    font-size: 38px;
    color: #a78822;
}

.chapter-end h2 {
    font-size: 24px;
    margin: 14px 0;
}

.chapter-end p {
    color: var(--muted);
}

.reader-return {
    text-align: center;
    margin-top: 25px;
}

.shelf-section > p {
    margin: 17px 0 24px;
    color: var(--muted);
}

.shelf-section button {
    margin-top: 10px;
}

.night {
    --ink: #e1ebdf;
    --text: #d4dfd4;
    --muted: #afbcaf;
    --paper: #17251f;
    --surface: #22352b;
    --line: #3b5041;
    --mint: #314638;
}

.night .site-footer,
.night .reading-instructions {
    background: #28382c;
}

.night .reading-instructions p {
    color: #c5d1c0;
}

.night .dark,
.night .navigation .active {
    background: #e5cc6a;
    color: #173d31;
}

@media (max-width: 1000px) {
    .hero-copy {
        padding: 30px;
    }

    .hero-bottom {
        gap: 11px;
    }

    .cover-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .four,
    .finished-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editor-card {
        padding: 22px;
        grid-template-columns: 1fr;
    }

    .editor-card > a {
        display: none;
    }

    .catalog-card {
        grid-template-columns: 1fr;
    }

    .catalog-card > a img {
        aspect-ratio: 4 / 3;
    }

    .korean-copy {
        padding: 30px;
    }

    .about-section {
        gap: 35px;
    }

    .detail-hero {
        grid-template-columns: 220px 1fr;
        gap: 30px;
        padding: 28px;
    }
}

@media (max-width: 700px) {
    .container {
        width: calc(100% - 32px);
    }

    h2 {
        font-size: 23px;
    }

    .topbar {
        min-height: 82px;
        gap: 10px;
    }

    .brand {
        font-size: 21px;
    }

    .brand small {
        letter-spacing: 1px;
    }

    .header-note {
        display: none;
    }

    .shelf-link {
        font-size: 12px;
        padding: 8px 10px;
    }

    .shelf-link .icon {
        margin-left: 4px;
        width: 16px;
    }

    .navigation {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    .navigation a:first-child {
        grid-column: 1 / -1;
        padding-block: 6px;
    }

    .navigation a:not(:first-child) {
        grid-column: span 2;
    }

    .navigation a {
        font-size: 14px;
        padding: 8px 0;
    }

    .home {
        padding-top: 20px;
    }

    .home > section {
        margin-bottom: 44px;
    }

    .hero {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .hero-copy {
        padding: 26px 23px;
    }

    .hero-title {
        font-size: 35px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-description br {
        display: none;
    }

    .hero-art {
        height: 280px;
    }

    .hero-art > img {
        aspect-ratio: 4 / 3;
    }

    .hero-story {
        bottom: 22px;
        left: 23px;
    }

    .hero-story strong {
        font-size: 23px;
    }

    .home > .quick-picks {
        margin-top: -24px;
        display: block;
        padding: 17px 0;
    }

    .quick-picks > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 25px;
        margin-top: 16px;
    }

    .section-heading {
        align-items: center;
        gap: 10px;
    }

    .section-heading > .text-link {
        font-size: 12px;
        gap: 3px;
        flex-shrink: 0;
    }

    .section-heading > .text-link .icon {
        width: 15px;
    }

    .cover-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
    }

    .comic-card h3 {
        font-size: 15px;
    }

    .editor-grid,
    .ranking-grid,
    .korean-section,
    .reading-note,
    .about-section,
    .catalog-grid,
    .directory-grid,
    .chapter-buttons {
        grid-template-columns: 1fr;
    }

    .editor-card {
        grid-template-columns: 1.4fr 0.6fr;
        gap: 15px;
    }

    .editor-card > a {
        display: block;
    }

    .editor-card h3 {
        font-size: 21px;
    }

    .editor-card p {
        font-size: 14px;
    }

    .category-card {
        padding: 19px 16px;
    }

    .category-card p {
        min-height: 49px;
    }

    .korean-photo img {
        height: 240px;
        aspect-ratio: 4 / 3;
    }

    .korean-copy {
        padding: 26px 23px;
    }

    .update-table article {
        grid-template-columns: 58px 1fr;
        gap: 9px 16px;
        padding: 17px 0;
    }

    .update-table h3 {
        font-size: 16px;
    }

    .update-table .chapter-link {
        grid-column: 2;
    }

    .update-table .status {
        grid-column: 2;
        justify-self: start;
    }

    .finished-grid {
        gap: 25px 13px;
    }

    .finished-grid article {
        padding: 6px 10px;
    }

    .finished-grid h3 {
        font-size: 17px;
    }

    .finished-grid .text-link {
        font-size: 12px;
        gap: 4px;
    }

    .reading-note {
        padding: 27px 23px;
        gap: 10px;
    }

    .about-section {
        gap: 22px;
    }

    .subscribe-section {
        padding: 27px 23px;
        gap: 23px;
        flex-direction: column;
        align-items: start;
    }

    .brand-tile {
        min-width: 105px;
        padding: 8px 12px;
    }

    .brand-tile img {
        width: 60px;
        height: 60px;
    }

    .footer-row,
    .copyright {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }

    .footer-row > div:last-child {
        gap: 17px;
    }

    .category-hero {
        padding: 28px 23px;
    }

    .category-hero h1 {
        font-size: 29px;
    }

    .category-hero .page-subtitle {
        font-size: 20px;
    }

    .catalog-card {
        grid-template-columns: 0.6fr 1fr;
        padding: 18px;
        gap: 16px;
    }

    .catalog-card > a img {
        aspect-ratio: 3 / 4;
    }

    .catalog-card h3 {
        font-size: 19px;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 24px;
    }

    .detail-cover {
        width: 185px;
        margin: auto;
    }

    .detail-hero h1 {
        font-size: 28px;
    }

    .interior > section {
        margin-top: 40px;
    }

    .interior .section-heading > span {
        font-size: 12px;
    }

    .reader-heading h1 {
        font-size: 27px;
    }

    .reader-tools,
    .reader-nav {
        gap: 8px;
    }

    .reader-tools .button,
    .reader-nav .button {
        padding: 9px 11px;
        font-size: 13px;
    }

    .comic-panel figcaption {
        padding: 24px 21px;
        font-size: 18px;
    }

    .large-text .comic-panel figcaption {
        font-size: 22px;
    }

    .chapter-end h2 {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cover img {
        transition: none;
    }
}
