@charset "UTF-8";

:root {
    --ink: #19202b;
    --muted: #68707b;
    --paper: #ffffff;
    --ground: #f7f8fa;
    --line: #e5e7ec;
    --orange: #ff672d;
    --reader-size: 18px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

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

button, input {
    font: inherit;
}

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

button {
    cursor: pointer;
}

a, button {
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

a:hover {
    color: #c94313;
}

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 5px;
}

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

svg {
    flex-shrink: 0;
}

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

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

p {
    color: var(--muted);
}

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

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

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

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

.brand, .header-tools, .shelf-link {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: var(--orange);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 900;
    border-radius: 17px 17px 17px 3px;
    flex-shrink: 0;
}

.brand-mark span {
    color: var(--ink);
}

.brand-name {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1px;
}

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

.shelf-link {
    font-size: 14px;
    padding: 9px 17px;
    border: 1px solid var(--line);
    border-radius: 7px;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px;
}

.main-nav {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    padding-block: 8px 13px;
}

.main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    min-height: 44px;
    border-radius: 6px;
}

.main-nav a[aria-current="page"], .main-nav a:hover {
    background: #fff0e9;
    color: #bd3c0d;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
    background: #f2f3f6;
    border-radius: 14px;
    overflow: hidden;
    min-height: 505px;
}

.hero-copy {
    padding: 44px 42px;
    align-self: center;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #b83b0e;
}

.hero h1 {
    font-size: 19px;
    margin-top: 23px;
    margin-bottom: 8px;
}

.hero-slogan {
    font-weight: 900;
    font-size: clamp(32px, 3.5vw, 49px);
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.3;
}

.hero-desc {
    margin-top: 20px;
    max-width: 440px;
    font-size: 15px;
    line-height: 1.9;
}

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

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

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

.primary:hover {
    background: #ed5821;
    color: #171c29;
}

.outline {
    background: transparent;
    border-color: #c9cdd4;
    color: var(--ink);
}

.outline:hover {
    border-color: var(--orange);
}

.light {
    background: white;
    color: #19202b;
}

.ghost {
    border-color: #667181;
    background: transparent;
    color: white;
}

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

.hero-art {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #455262;
}

.hero-art > a, .hero-art > a img {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
}

.hero-art img {
    object-position: center 30%;
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(9,18,29,.9), transparent 80%);
}

.hero-caption {
    position: absolute;
    z-index: 1;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: white;
}

.hero-caption span {
    font-size: 12px;
    letter-spacing: 2px;
}

.hero-caption h2 {
    font-size: 28px;
    margin: 8px 0;
}

.hero-caption p {
    color: #f3f3f3;
    font-size: 14px;
}

.hero-caption a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
    font-size: 14px;
}

.vertical-label {
    position: absolute;
    right: 17px;
    top: 25px;
    color: white;
    writing-mode: vertical-rl;
    font: 11px Arial, sans-serif;
    letter-spacing: 4px;
    z-index: 1;
}

.section {
    margin-top: 76px;
}

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

.section-heading h2, .about h2, .adventure h2, .subscribe h2 {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 27px;
    margin-top: 7px;
}

.section-heading h2 .icon {
    color: #d84916;
    width: 25px;
    height: 25px;
}

.section-heading h2 + p {
    margin-top: 10px;
    font-size: 14px;
}

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

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.category-tile {
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.category-tile > .icon {
    width: 30px;
    height: 30px;
    color: #c54d22;
    margin-bottom: 15px;
}

.category-tile:nth-child(3n) > .icon {
    color: #397e9a;
}

.category-tile:nth-child(3n + 2) > .icon {
    color: #7762a6;
}

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

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

.category-tile > span {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: var(--muted);
}

.category-tile:hover {
    background: #fff8f4;
}

.six-grid, .three-grid, .two-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

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

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

.cover {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.cover img {
    aspect-ratio: 3 / 4;
    transition: transform 250ms ease;
}

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

.cover-tag {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 2px 8px;
    font-size: 12px;
    color: white;
    background: rgba(18,24,35,.85);
    border-radius: 3px;
}

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

.card-text .eyebrow {
    font-size: 11px;
    letter-spacing: 0;
}

.card-text h3 {
    font-size: 16px;
    margin-top: 5px;
    min-height: 45px;
}

.card-text > p:last-child {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 6px;
}

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

.wide-feature {
    display: grid;
    grid-template-columns: 42% 58%;
    background: #eff3f7;
    border-radius: 10px;
    overflow: hidden;
}

.wide-feature:nth-child(2) {
    background: #fff1e9;
}

.wide-feature > img {
    height: 100%;
    aspect-ratio: 3 / 4;
}

.wide-feature > div {
    padding: 25px;
    align-self: center;
}

.pill {
    display: inline-block;
    font-size: 12px;
    border: 1px solid #aeb6c1;
    padding: 2px 9px;
    border-radius: 4px;
}

.wide-feature h3 {
    font-size: 23px;
    margin: 16px 0 12px;
}

.wide-feature p {
    font-size: 14px;
}

.wide-feature .text-link {
    margin-top: 20px;
}

.korean {
    border-top: 3px solid var(--ink);
    padding-top: 28px;
}

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

.korean-grid article img {
    aspect-ratio: 4 / 3;
    border-radius: 7px;
}

.korean-grid article > div {
    margin-top: 17px;
    border-left: 3px solid #d9bdd8;
    padding-left: 15px;
}

.korean-grid h3 {
    margin: 5px 0 8px;
    font-size: 20px;
}

.korean-grid p:last-child {
    font-size: 14px;
}

.ranking {
    background: #f7f8fa;
    padding: 32px;
    border-radius: 10px;
}

.ranking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 44px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ranking-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid #dfe3e8;
}

.rank-num {
    font: italic 900 38px Arial, sans-serif;
    color: #acb3be;
}

.ranking-list li:first-child .rank-num {
    color: #e25a28;
}

.ranking-list h3 {
    font-size: 17px;
}

.ranking-list p, .ranking-list li > a {
    font-size: 12px;
}

.ranking-list li > a {
    margin-left: auto;
    flex-shrink: 0;
}

.adventure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 42px;
    gap: 38px;
    background: #1d2b3e;
    color: white;
    border-radius: 12px;
    align-items: center;
}

.adventure-copy > p {
    color: #cbd4e0;
}

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

.adventure .button {
    margin-top: 25px;
}

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

.adventure-books img {
    aspect-ratio: 3 / 4;
    border-radius: 6px;
}

.adventure-books h3 {
    font-size: 15px;
    margin-top: 10px;
    color: #fff;
}

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

.table-heading, .update-row {
    display: grid;
    grid-template-columns: 120px 1fr 150px;
    gap: 24px;
    padding: 17px 20px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.table-heading {
    background: #f7f8fa;
    color: var(--muted);
    font-size: 13px;
}

.update-row time {
    font: 700 22px Arial, sans-serif;
}

.update-row div {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.status {
    font-size: 12px;
    color: #2a755f;
}

.healing-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #e3ded4;
    background: #fffcf5;
}

.healing-strip article {
    padding: 30px;
    border-right: 1px solid #e3ded4;
}

.healing-strip article:last-child {
    border: 0;
}

.healing-number {
    font: 700 35px Georgia, serif;
    color: #be8842;
}

.healing-strip h3 {
    margin: 17px 0 12px;
    font-size: 21px;
}

.healing-strip p {
    font-size: 14px;
}

.healing-strip article > a {
    display: block;
    margin-top: 20px;
    font-size: 14px;
}

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

.guide-grid article {
    position: relative;
    border-top: 1px solid #cfd4dc;
    padding-top: 22px;
}

.guide-grid article > span {
    float: right;
    color: #939ba8;
    font: 700 20px Arial, sans-serif;
}

.guide-grid .icon {
    width: 30px;
    height: 30px;
}

.guide-grid h3 {
    font-size: 17px;
    margin: 20px 0 10px;
}

.guide-grid p {
    font-size: 14px;
}

.about {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 55px;
    border-top: 1px solid var(--line);
    padding-top: 54px;
}

.about-brand {
    border-left: 5px solid var(--orange);
    padding: 10px 0 10px 32px;
}

.about-brand p {
    margin: 20px 0;
    font-size: 14px;
}

.about-brand strong {
    font-size: 32px;
    line-height: 1.6;
}

.about > div:last-child > p:not(.eyebrow) {
    margin-top: 17px;
    font-size: 15px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 30px;
    align-items: start;
}

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

.faq summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq summary span {
    float: right;
    color: #d74c1a;
}

.faq details p {
    font-size: 14px;
    margin-top: 12px;
}

.subscribe {
    background: #19202b;
    color: white;
    padding: 44px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    gap: 70px;
}

.subscribe p, .subscribe small {
    color: #c7cbd3;
}

.subscribe h2 {
    margin-bottom: 17px;
}

.subscribe p:not(.eyebrow) {
    font-size: 15px;
}

.subscribe small {
    display: block;
    font-size: 12px;
    margin-top: 17px;
}

.subscription-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #596371;
    border-radius: 24px 24px 24px 5px;
    padding: 22px 15px;
    transform: rotate(3deg);
}

.subscription-brand > span {
    color: var(--orange);
    font: 900 75px Arial, sans-serif;
    letter-spacing: -5px;
}

.subscription-brand strong {
    font-size: 16px;
}

.subscription-brand small {
    margin-top: 4px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 40px;
    margin-top: 36px;
    border-top: 1px solid var(--line);
    font-size: 12px;
}

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

.site-footer > div:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

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

.breadcrumbs > span + span::before {
    content: "/";
    padding-right: 12px;
    color: #a7adb6;
}

.category-hero {
    margin-top: 28px;
    padding: 40px;
    border-radius: 12px;
    background: #f2f4f7;
    border-left: 5px solid var(--orange);
}

.category-hero h1 {
    font-size: 36px;
    margin: 10px 0 17px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-hero h1 .icon {
    width: 33px;
    height: 33px;
}

.category-hero p {
    max-width: 820px;
}

.category-hero .pill {
    margin-top: 21px;
}

.three-grid .comic-card, .two-grid .comic-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 19px;
}

.three-grid .card-text, .two-grid .card-text {
    padding-top: 0;
}

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

.chapter-grid article, .shelf-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 25px;
}

.chapter-grid h2 {
    font-size: 19px;
    margin: 10px 0;
}

.chapter-grid h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.chapter-grid p {
    font-size: 14px;
}

.chapter-grid article > a {
    display: block;
    margin-top: 15px;
    font-size: 14px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 47px;
    align-items: center;
    padding: 35px;
    background: #f4f5f7;
    border-radius: 12px;
}

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

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

.detail-meta {
    display: flex;
    gap: 10px 18px;
    flex-wrap: wrap;
    font-size: 13px;
    margin-bottom: 20px;
    color: #596575;
}

.detail-hero .intro {
    color: var(--ink);
    margin-bottom: 13px;
    font-size: 18px;
}

.small {
    font-size: 12px;
    margin-top: 12px;
}

.detail-chapters a {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.detail-chapters a > span {
    font: 700 35px Arial, sans-serif;
    color: #9aa3b0;
}

.detail-chapters h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.detail-chapters p {
    font-size: 14px;
}

.detail-chapters .icon {
    margin-left: auto;
}

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

.reader-heading {
    text-align: center;
    padding: 28px 0;
}

.reader-heading h1 {
    font-size: 29px;
    margin: 15px 0;
}

.reader-heading > p:last-child {
    font-size: 13px;
}

.reading-note {
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 9px;
    margin-bottom: 35px;
}

.reading-note p {
    margin-top: 8px;
    font-size: 14px;
}

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

.reader-controls button, .shelf-card button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 6px 14px;
    background: var(--paper);
    color: var(--ink);
    font-size: 14px;
}

.story-panel {
    margin: 0 0 38px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.panel-label {
    font-size: 12px;
    padding: 10px 20px;
    letter-spacing: 2px;
    color: var(--muted);
}

.story-panel img {
    aspect-ratio: 3 / 4;
    object-fit: contain;
}

.story-panel figcaption {
    padding: 28px 32px 32px;
}

.story-panel figcaption > span {
    display: block;
    color: #c4491a;
    font-size: 13px;
    margin-bottom: 12px;
}

.story-panel figcaption p {
    font-size: var(--reader-size);
    line-height: 2;
    color: var(--ink);
}

.chapter-end {
    text-align: center;
    padding: 35px 0;
}

.chapter-end > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8f6ef;
    color: #25775b;
}

.chapter-end h2 {
    font-size: 24px;
    margin: 20px 0 12px;
}

.chapter-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
}

.night {
    --paper: #171c25;
    --ink: #e3e8ef;
    --muted: #b4bdc9;
    --line: #394453;
}

.night .story-panel img {
    background: #202735;
}

.night .main-nav a[aria-current="page"] {
    background: #3b2b25;
    color: #ffb796;
}

.shelf-card h3 {
    margin: 12px 0;
}

.shelf-card button {
    display: block;
    margin-top: 20px;
}

.toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 13px 23px;
    border-radius: 8px;
    color: white;
    background: #19202b;
    max-width: calc(100% - 32px);
    width: max-content;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.toast.visible {
    opacity: 1;
}

@media (max-width: 1000px) {
    .hero-copy {
        padding: 32px;
    }

    .main-nav a {
        gap: 5px;
        font-size: 13px;
    }

    .main-nav .icon {
        width: 17px;
        height: 17px;
    }

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

    .card-text h3 {
        min-height: 0;
    }

    .feature-grid {
        gap: 18px;
    }

    .wide-feature > div {
        padding: 18px;
    }

    .wide-feature h3 {
        font-size: 20px;
    }

    .adventure {
        padding: 30px;
        gap: 25px;
    }

    .adventure h2 {
        font-size: 26px;
    }

    .three-grid .comic-card {
        display: block;
    }

    .three-grid .card-text {
        padding-top: 14px;
    }

    .detail-hero {
        grid-template-columns: 210px 1fr;
        gap: 30px;
        padding: 27px;
    }

    .subscribe {
        gap: 35px;
    }

    .site-footer {
        flex-wrap: wrap;
    }
}

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

    .header-top {
        min-height: 80px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
        font-size: 29px;
        border-radius: 12px 12px 12px 3px;
    }

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

    .brand-name small {
        display: none;
    }

    .header-tools {
        gap: 8px;
    }

    .shelf-link {
        padding: 8px;
        font-size: 12px;
        gap: 5px;
    }

    .menu-toggle {
        display: flex;
        font-size: 12px;
    }

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

    .main-nav a {
        font-size: 12px;
        flex-direction: column;
        padding-block: 7px;
        gap: 4px;
    }

    .main-nav:not(.is-open) a:nth-child(n+5) {
        display: none;
    }

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

    .hero-copy {
        padding: 30px 25px;
    }

    .hero h1 {
        margin-top: 17px;
    }

    .hero-slogan {
        font-size: clamp(27px, 8.1vw, 36px);
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-meta {
        gap: 6px 15px;
        font-size: 11px;
    }

    .hero-art {
        min-height: 330px;
    }

    .hero-caption {
        left: 24px;
        bottom: 24px;
        right: 24px;
    }

    .hero-caption h2 {
        font-size: 25px;
    }

    .section {
        margin-top: 52px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
        margin-bottom: 22px;
    }

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

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

    .category-tile {
        padding: 20px 16px;
    }

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

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

    .card-text h3 {
        font-size: 15px;
        min-height: 42px;
    }

    .feature-grid, .korean-grid, .healing-strip, .three-grid, .two-grid, .chapter-grid {
        grid-template-columns: 1fr;
    }

    .wide-feature {
        grid-template-columns: 40% 1fr;
    }

    .wide-feature > div {
        padding: 21px;
    }

    .wide-feature .text-link {
        margin-top: 15px;
    }

    .korean-grid article {
        display: grid;
        grid-template-columns: 40% 1fr;
        gap: 17px;
    }

    .korean-grid article img {
        aspect-ratio: 3 / 4;
        height: 100%;
    }

    .korean-grid article > div {
        margin-top: 0;
        border: 0;
        padding: 0;
        align-self: center;
    }

    .korean-grid h3 {
        font-size: 18px;
    }

    .korean-grid p:last-child {
        font-size: 13px;
    }

    .ranking {
        padding: 24px 19px;
    }

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

    .ranking-list li {
        gap: 15px;
    }

    .rank-num {
        font-size: 32px;
    }

    .adventure {
        grid-template-columns: 1fr;
        padding: 29px 24px;
        gap: 30px;
    }

    .adventure-books {
        gap: 18px;
    }

    .table-heading, .update-row {
        grid-template-columns: 54px minmax(0, 1fr) 66px;
        gap: 10px;
        padding: 15px 4px;
    }

    .update-row div {
        display: block;
    }

    .update-row div strong, .update-row div span {
        display: block;
        font-size: 13px;
    }

    .update-row time {
        font-size: 18px;
    }

    .status {
        font-size: 11px;
    }

    .status .icon {
        display: none;
    }

    .healing-strip article {
        border-right: 0;
        border-bottom: 1px solid #e3ded4;
        padding: 25px;
    }

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

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

    .about {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 35px;
    }

    .about-brand {
        padding-left: 22px;
    }

    .about-brand strong {
        font-size: 28px;
    }

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

    .subscribe {
        grid-template-columns: 1fr;
        padding: 30px 25px;
        gap: 30px;
    }

    .subscription-brand {
        width: 160px;
        justify-self: center;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 30px;
        gap: 22px;
    }

    .category-hero {
        padding: 26px 23px;
    }

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

    .three-grid .comic-card, .two-grid .comic-card {
        display: grid;
        grid-template-columns: 40% 1fr;
        gap: 20px;
    }

    .three-grid .card-text {
        padding-top: 0;
    }

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

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

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

    .detail-hero .intro {
        font-size: 17px;
    }

    .detail-chapters a {
        gap: 15px;
    }

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

    .reading-note {
        padding: 19px;
    }

    .story-panel figcaption {
        padding: 22px;
    }

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

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

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

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