:root {
    --ink: #111827;
    --paper: #f7f8fc;
    --white: #ffffff;
    --muted: #667085;
    --line: #dfe3ea;
    --accent: #ff5b4d;
    --accent-soft: #fff0ed;
    --blue: #2f66ff;
    --navy: #0b1739;
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    border-radius: 10px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.section-shell,
.header-shell,
.footer-shell {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 248, 252, 0.94);
    border-bottom: 1px solid rgba(223, 227, 234, 0.85);
    backdrop-filter: blur(16px);
}

.header-shell {
    display: flex;
    align-items: center;
    min-height: 82px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    gap: 10px;
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--ink);
    border: 3px solid var(--ink);
    border-radius: 14px 6px 14px 6px;
    place-items: center;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.08em;
    box-shadow: inset -6px -6px 0 var(--accent);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 1.15rem;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.75rem;
}

.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 4px;
}

.main-nav a {
    display: flex;
    align-items: center;
    padding: 9px 10px;
    border-radius: 12px;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
    background: var(--ink);
}

.nav-icon {
    color: var(--accent);
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    padding: 9px 14px;
    color: var(--white);
    background: var(--ink);
    border: 0;
    border-radius: 10px;
    font-weight: 700;
}

main {
    display: block;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
    min-height: 590px;
    margin-top: 48px;
    padding: 68px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 34px;
    gap: 42px;
    box-shadow: var(--shadow);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: clamp(4.8rem, 8vw, 7.2rem);
    line-height: 0.94;
    letter-spacing: -0.09em;
}

.hero h1 a {
    position: relative;
}

.hero h1 a::after {
    position: absolute;
    right: -24px;
    bottom: 10px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    content: "";
}

.hero-lead {
    max-width: 620px;
    margin: 28px 0 30px;
    color: #3c465b;
    font-size: 1.08rem;
}

.story-search label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 800;
}

.story-search > div {
    display: flex;
    padding: 6px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.story-search input {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    outline: none;
}

.story-search button,
.subscribe-button {
    padding: 12px 20px;
    color: var(--white);
    background: var(--ink);
    border: 0;
    border-radius: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.search-feedback,
.subscribe-feedback {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.hero-stack {
    position: relative;
    min-height: 450px;
}

.hero-cover {
    position: absolute;
    display: block;
    width: 240px;
    overflow: hidden;
    background: var(--white);
    border: 7px solid var(--white);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.2);
    transition: transform 180ms ease;
}

.hero-cover:hover {
    z-index: 5;
    transform: translateY(-8px) rotate(0deg);
}

.hero-cover img {
    aspect-ratio: 3 / 4;
}

.hero-cover span {
    display: block;
    padding: 12px 10px 8px;
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-cover-1 {
    top: 22px;
    left: 10px;
    z-index: 3;
    transform: rotate(-8deg);
}

.hero-cover-2 {
    top: 82px;
    right: 6px;
    z-index: 2;
    transform: rotate(8deg);
}

.hero-cover-3 {
    bottom: 0;
    left: 124px;
    z-index: 4;
    transform: rotate(1deg);
}

.section-shell:not(.hero):not(.breadcrumbs) {
    margin-top: 96px;
}

.section-heading h2,
.pulse-copy h2,
.focus-copy h2,
.mood-copy h2,
.about-title-block h2,
.reader-guide h2,
.app-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.18;
    letter-spacing: -0.05em;
}

.split-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 34px;
    gap: 28px;
}

.split-heading p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}

.centered-heading {
    max-width: 680px;
    margin: 0 auto 38px;
    text-align: center;
}

.centered-heading p {
    color: var(--muted);
}

.text-link,
.dark-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.text-link::after,
.dark-link::after {
    content: "→";
}

.reading-pulse {
    display: grid;
    grid-template-columns: 120px 1fr 320px;
    align-items: center;
    padding: 42px 48px;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius);
    gap: 36px;
}

.pulse-number {
    color: var(--accent);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.pulse-copy p {
    max-width: 580px;
    color: #c8d1e8;
}

.pulse-stats {
    margin: 0;
    padding-left: 30px;
    border-left: 1px solid #344260;
}

.pulse-stats div {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #263450;
    gap: 16px;
}

.pulse-stats dt {
    color: #9aa9c7;
}

.pulse-stats dd {
    margin: 0;
    font-weight: 800;
}

.comic-grid {
    display: grid;
    gap: 20px;
}

.five-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.comic-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.comic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.comic-cover {
    position: relative;
    display: block;
}

.comic-cover img {
    aspect-ratio: 3 / 4;
}

.cover-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(17, 24, 39, 0.86);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
}

.comic-card-body {
    padding: 18px;
}

.comic-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.4;
}

.comic-card p {
    display: -webkit-box;
    min-height: 4.8em;
    margin: 10px 0 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.86rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.card-meta,
.collection-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.75rem;
    gap: 10px;
}

.ranking-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
}

.ranking-intro {
    padding: 58px;
    color: var(--white);
    background: var(--accent);
}

.ranking-intro h2 {
    margin: 0;
    font-size: 3.2rem;
    line-height: 1.1;
}

.ranking-intro .eyebrow,
.ranking-intro p {
    color: #fff5f2;
}

.ranking-intro .dark-link {
    margin-top: 12px;
    padding: 12px 16px;
    color: var(--white);
    background: var(--ink);
    border-radius: 12px;
}

.ranking-list {
    margin: 0;
    padding: 22px 36px;
    list-style: none;
}

.ranking-list li {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    gap: 12px;
}

.ranking-list li:last-child {
    border-bottom: 0;
}

.rank-number {
    color: var(--accent);
    font-weight: 900;
}

.ranking-list a {
    display: flex;
    flex-direction: column;
}

.ranking-list small {
    margin-top: 3px;
    color: var(--muted);
}

.rank-score {
    color: var(--blue);
    font-weight: 900;
    text-align: right;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: transform 180ms ease;
}

.category-card::after {
    position: absolute;
    right: -25px;
    bottom: -25px;
    width: 100px;
    height: 100px;
    background: var(--category-color);
    border-radius: 50%;
    opacity: 0.12;
    content: "";
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon,
.collection-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    color: var(--white);
    background: var(--category-color);
    border-radius: 15px;
    place-items: center;
    font-size: 1.35rem;
    font-weight: 900;
}

.category-card h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.category-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.88rem;
}

.category-card small {
    color: var(--category-color);
    font-weight: 800;
}

.korean-focus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: #ffe9ed;
    border-radius: 30px;
}

.focus-art img {
    height: 100%;
    min-height: 510px;
}

.focus-copy {
    align-self: center;
    padding: 64px;
}

.focus-copy p {
    color: #5d4850;
}

.focus-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.focus-list li {
    padding: 12px 0;
    border-top: 1px solid rgba(17, 24, 39, 0.13);
    font-weight: 800;
}

.schedule-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: var(--ink);
    border-radius: 24px;
}

.schedule-track article {
    min-height: 210px;
    padding: 28px 22px;
    color: var(--white);
    border-right: 1px solid #30394a;
}

.schedule-track article:last-child {
    border-right: 0;
}

.schedule-track span {
    color: var(--accent);
    font-weight: 900;
}

.schedule-track h3 {
    margin: 34px 0 6px;
    font-size: 1rem;
}

.schedule-track p {
    margin: 0;
    color: #aeb7c9;
    font-size: 0.86rem;
}

.mood-section {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 56px;
}

.mood-copy {
    position: sticky;
    top: 120px;
}

.mood-copy p {
    color: var(--muted);
}

.mood-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mood-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    padding: 28px;
    border-radius: 22px;
}

.mood-item strong {
    font-size: 1.4rem;
}

.mood-item span {
    max-width: 280px;
    color: #344054;
}

.mood-1 {
    background: #dff5ec;
}

.mood-2 {
    background: #ffe5ec;
}

.mood-3 {
    background: #e7ebff;
}

.mood-4 {
    background: #fff0d6;
}

.editorial-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.editor-note {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 240px;
    padding: 34px;
    color: var(--white);
    background: var(--navy);
    border-radius: 24px;
}

.note-1 {
    grid-row: 1 / span 2;
    min-height: 498px;
    background: var(--blue);
}

.note-2 {
    background: var(--accent);
}

.note-3 {
    color: var(--ink);
    background: #ffe7a8;
}

.editor-note > span {
    margin-bottom: auto;
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.45;
}

.editor-note h3 {
    margin: 0;
    font-size: 1.7rem;
}

.editor-note p {
    margin: 10px 0 16px;
}

.editor-note a {
    font-weight: 800;
}

.reader-guide {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    padding: 56px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    gap: 60px;
}

.guide-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    gap: 18px;
}

.guide-list li:first-child {
    padding-top: 0;
}

.guide-list span {
    color: var(--accent);
    font-weight: 900;
}

.guide-list h3,
.guide-list p {
    margin: 0;
}

.guide-list p {
    margin-top: 5px;
    color: var(--muted);
}

.about-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 58px;
    color: var(--white);
    background: var(--navy);
    border-radius: 30px;
    gap: 54px;
}

.about-copy p {
    margin-top: 0;
    color: #c3cce0;
}

.about-facts {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    margin: 8px 0 0;
    border-top: 1px solid #344260;
}

.about-facts div {
    padding: 26px 0;
}

.about-facts dt {
    color: var(--accent);
    font-size: 2.5rem;
    font-weight: 900;
}

.about-facts dd {
    margin: 0;
    color: #c3cce0;
}

.app-subscribe {
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: center;
    margin-bottom: 96px;
    padding: 52px 62px;
    background: #ffe7a8;
    border-radius: 30px;
    gap: 50px;
}

.app-copy p {
    max-width: 700px;
}

.brand-code {
    display: grid;
    width: 200px;
    height: 200px;
    justify-self: end;
    color: var(--white);
    background-color: var(--ink);
    background-image: linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52%), linear-gradient(transparent 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52%);
    background-size: 28px 28px;
    border: 12px solid var(--white);
    border-radius: 26px;
    place-content: center;
    text-align: center;
    box-shadow: var(--shadow);
}

.brand-code span {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
}

.brand-code small {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 0.15em;
}

.site-footer {
    padding: 54px 0;
    color: var(--white);
    background: #090f20;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
}

.footer-shell strong {
    font-size: 1.4rem;
}

.footer-shell p {
    margin: 6px 0 0;
    color: #9aa6bd;
}

.footer-shell nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-shell nav a:hover {
    color: var(--accent);
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid #263046;
    font-size: 0.82rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    margin-top: 32px;
    color: var(--muted);
    gap: 10px;
    font-size: 0.88rem;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.collection-hero {
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: end;
    min-height: 360px;
    padding: 56px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 8px solid var(--category-color);
    border-radius: 28px;
    gap: 50px;
}

.collection-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.07em;
}

.collection-hero p {
    max-width: 690px;
    color: var(--muted);
}

.collection-hero dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.collection-hero dl div {
    padding: 18px;
    border-right: 1px solid var(--line);
}

.collection-hero dl div:last-child {
    border-right: 0;
}

.collection-hero dt {
    color: var(--muted);
    font-size: 0.75rem;
}

.collection-hero dd {
    margin: 5px 0 0;
    font-size: 0.9rem;
    font-weight: 800;
}

.collection-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.collection-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 285px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.collection-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 300px 1fr;
}

.collection-cover {
    position: relative;
    min-height: 100%;
}

.collection-cover img {
    height: 100%;
    aspect-ratio: 3 / 4;
}

.collection-cover span {
    position: absolute;
    top: 16px;
    left: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--ink);
    border-radius: 12px;
    place-items: center;
    font-weight: 900;
}

.collection-card > div {
    padding: 26px;
}

.collection-card h2 {
    margin: 14px 0 8px;
    font-size: 1.45rem;
}

.collection-card p {
    margin: 0;
    color: var(--muted);
}

.collection-card ul {
    display: flex;
    margin: 14px 0 18px;
    padding: 0;
    color: #465166;
    list-style: none;
    gap: 18px;
    font-size: 0.84rem;
}

.read-button {
    display: inline-flex;
    padding: 9px 14px;
    color: var(--white);
    background: var(--ink);
    border-radius: 10px;
    font-weight: 800;
}

.collection-note {
    display: grid;
    grid-template-columns: 120px 1fr;
    margin-bottom: 96px;
    padding: 28px 34px;
    background: #e7ebff;
    border-radius: 18px;
    gap: 20px;
}

.collection-note p {
    margin: 0;
}

.reader-shell {
    max-width: 980px;
    margin-bottom: 96px;
}

.reader-header {
    padding: 58px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    text-align: center;
}

.reader-header h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.reader-summary {
    max-width: 700px;
    margin: 22px auto;
    color: var(--muted);
    font-size: 1.05rem;
}

.reader-meta {
    display: flex;
    justify-content: center;
    margin: 28px 0;
    gap: 46px;
}

.reader-meta dt {
    color: var(--muted);
    font-size: 0.76rem;
}

.reader-meta dd {
    margin: 3px 0 0;
    font-weight: 800;
}

.reader-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.reader-actions button,
.reader-actions a {
    padding: 11px 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 11px;
    font-weight: 800;
}

.reader-actions button.is-saved {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.reading-note {
    margin: 32px 0;
    padding: 28px 34px;
    background: #fff1d6;
    border-left: 6px solid #ffb020;
    border-radius: 14px;
}

.reading-note h2 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}

.reading-note p {
    margin: 0;
}

.comic-chapter {
    overflow: hidden;
    background: #090f20;
    border-radius: 28px;
}

.chapter-heading {
    padding: 46px;
    color: var(--white);
    text-align: center;
}

.chapter-heading span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.chapter-heading h2 {
    margin: 8px 0 0;
    font-size: 2rem;
}

.chapter-panel {
    margin: 0;
    padding: 0 46px 54px;
}

.chapter-panel img {
    max-height: 1050px;
    aspect-ratio: 4 / 5;
    background: #1d273b;
    border-radius: 18px;
}

.chapter-panel figcaption {
    max-width: 760px;
    margin: 22px auto 0;
    color: #ced5e3;
    font-size: 1rem;
}

.chapter-end {
    margin-top: 32px;
    padding: 48px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    text-align: center;
}

.chapter-end > span {
    color: var(--accent);
    font-size: 2rem;
}

.chapter-end h2 {
    margin: 8px 0;
}

.chapter-end p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
}

.chapter-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    gap: 16px;
}

.chapter-nav a {
    display: flex;
    flex-direction: column;
    padding: 22px 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.chapter-nav a:last-child {
    text-align: right;
}

.chapter-nav span {
    color: var(--muted);
    font-size: 0.78rem;
}

@media (max-width: 1080px) {
    .header-shell {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .brand {
        margin-right: auto;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        flex-basis: 100%;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .main-nav a {
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-stack {
        min-height: 490px;
    }

    .hero-cover-2 {
        right: 15%;
    }

    .hero-cover-3 {
        left: 38%;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-cards {
        grid-template-columns: 1fr;
    }

    .collection-card:last-child {
        grid-column: auto;
        grid-template-columns: 180px 1fr;
    }
}

@media (max-width: 760px) {
    .section-shell,
    .header-shell,
    .footer-shell {
        width: min(100% - 24px, 1200px);
    }

    .brand-copy small {
        display: none;
    }

    .main-nav ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: auto;
        margin-top: 24px;
        padding: 36px 22px;
        border-radius: 24px;
    }

    .hero h1 {
        font-size: 4.2rem;
    }

    .story-search > div {
        flex-direction: column;
    }

    .hero-stack {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        min-height: auto;
        gap: 8px;
    }

    .hero-cover {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        border-width: 3px;
        border-radius: 12px;
        transform: none;
    }

    .hero-cover span {
        display: none;
    }

    .section-shell:not(.hero):not(.breadcrumbs) {
        margin-top: 64px;
    }

    .reading-pulse,
    .ranking-section,
    .korean-focus,
    .mood-section,
    .reader-guide,
    .about-section,
    .app-subscribe,
    .collection-hero {
        grid-template-columns: 1fr;
    }

    .reading-pulse,
    .reader-guide,
    .about-section,
    .app-subscribe,
    .collection-hero {
        padding: 34px 24px;
    }

    .pulse-stats {
        padding: 22px 0 0;
        border-top: 1px solid #344260;
        border-left: 0;
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-grid,
    .mood-board,
    .editorial-mosaic,
    .about-facts,
    .collection-hero dl {
        grid-template-columns: 1fr 1fr;
    }

    .five-grid {
        grid-template-columns: 1fr;
    }

    .ranking-intro,
    .focus-copy {
        padding: 36px 26px;
    }

    .focus-art img {
        min-height: 360px;
        aspect-ratio: 4 / 5;
    }

    .schedule-track {
        grid-template-columns: 1fr;
    }

    .schedule-track article {
        min-height: 150px;
        border-top: 1px solid #30394a;
        border-right: 0;
    }

    .schedule-track article:first-child {
        border-top: 0;
    }

    .mood-copy {
        position: static;
    }

    .editorial-mosaic {
        grid-template-rows: auto;
    }

    .note-1 {
        grid-row: auto;
        min-height: 280px;
    }

    .editor-note {
        min-height: 280px;
    }

    .app-subscribe {
        text-align: center;
    }

    .brand-code {
        justify-self: center;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }

    .footer-shell nav {
        flex-wrap: wrap;
    }

    .copyright {
        grid-column: auto;
    }

    .collection-hero dl {
        width: 100%;
    }

    .collection-hero dl div:nth-child(2) {
        border-right: 0;
    }

    .collection-hero dl div:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
    }

    .collection-card,
    .collection-card:last-child {
        grid-template-columns: 135px 1fr;
    }

    .collection-card > div {
        padding: 20px;
    }

    .collection-card ul {
        flex-direction: column;
        gap: 2px;
    }

    .reader-header {
        padding: 38px 22px;
    }

    .reader-meta {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .chapter-panel {
        padding: 0 12px 40px;
    }

    .chapter-panel figcaption {
        padding: 0 10px;
    }
}

@media (max-width: 520px) {
    .main-nav a {
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .five-grid,
    .category-grid,
    .mood-board,
    .editorial-mosaic,
    .about-facts,
    .chapter-nav {
        grid-template-columns: 1fr;
    }

    .five-grid .comic-card {
        display: grid;
        grid-template-columns: 125px 1fr;
    }

    .five-grid .comic-cover img {
        height: 100%;
    }

    .comic-card p {
        min-height: auto;
    }

    .about-facts div {
        border-bottom: 1px solid #344260;
    }

    .collection-card,
    .collection-card:last-child {
        grid-template-columns: 1fr;
    }

    .collection-cover img {
        aspect-ratio: 16 / 10;
    }

    .collection-note {
        grid-template-columns: 1fr;
    }

    .reader-meta {
        grid-template-columns: 1fr;
    }

    .reader-actions {
        flex-direction: column;
    }

    .reader-actions button,
    .reader-actions a {
        width: 100%;
    }

    .chapter-nav a:last-child {
        text-align: left;
    }
}