:root {
    --ink: #24221f;
    --muted: #6f6a61;
    --paper: #fffdf7;
    --cream: #f7f2e7;
    --yellow: #ffc928;
    --yellow-deep: #f0ad00;
    --coral: #ff7058;
    --green: #4e9c78;
    --lavender: #8b76d8;
    --line: #e9e2d5;
    --shadow: 0 18px 50px rgba(60, 49, 28, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

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

button {
    font: inherit;
}

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

.section-space {
    margin-top: 84px;
    margin-bottom: 84px;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(233, 226, 213, 0.85);
    background: rgba(255, 253, 247, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 15px;
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--ink);
    font-size: 24px;
    transform: rotate(-3deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 19px;
    letter-spacing: 0.04em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 10px;
    border-radius: 12px;
    color: #5f5a51;
    font-size: 14px;
    font-weight: 700;
    transition: 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
    background: var(--yellow);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
}

.hero {
    padding-top: 26px;
}

.hero-grid {
    display: grid;
    min-height: 530px;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 70px;
    padding: 54px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: linear-gradient(135deg, #fff8d4 0%, #fffdf7 55%, #f6ebff 100%);
    box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    color: #7b5900;
    background: #fff0aa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 18px 0 10px;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.08;
    letter-spacing: -0.07em;
}

.hero h1 a {
    background: linear-gradient(110deg, var(--ink) 45%, #775a00);
    background-clip: text;
    color: transparent;
}

.hero-lead {
    margin: 0;
    color: #625d54;
    font-size: 18px;
}

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

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
}

.button-primary {
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--ink);
}

.button-soft {
    border: 1px solid var(--line);
    background: #ffffff;
}

.button-dark {
    color: #ffffff;
    background: var(--ink);
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 34px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 22px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 12px;
}

.hero-art {
    position: relative;
}

.hero-art > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 7px solid #ffffff;
    border-radius: 28px;
    box-shadow: 0 22px 45px rgba(73, 55, 17, 0.18);
    transform: rotate(2deg);
}

.floating-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(47, 39, 24, 0.14);
    font-size: 13px;
    font-weight: 800;
}

.note-top {
    top: -18px;
    right: 26px;
}

.note-bottom {
    bottom: 25px;
    left: -28px;
}

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

.section-heading h2,
.editor-intro h2,
.faq-layout h2,
.about-copy h2,
.subscribe-copy h2 {
    margin: 12px 0 5px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.section-heading p,
.editor-intro p,
.faq-layout > div > p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
}

.compact-heading {
    margin-bottom: 20px;
}

.text-link,
.category-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
}

.mood-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.mood-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 64px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    font-weight: 800;
    transition: 180ms ease;
}

.mood-row a:hover {
    border-color: var(--yellow-deep);
    transform: translateY(-3px);
}

.continue-panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background: #292722;
}

.continue-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 18px;
    color: var(--ink);
    background: var(--yellow);
}

.continue-panel h2 {
    margin: 4px 0 0;
}

.continue-panel p {
    margin: 4px 0 0;
    color: #cfc9be;
}

.continue-panel .button-dark {
    color: var(--ink);
    background: #ffffff;
}

.comic-grid {
    display: grid;
    gap: 22px;
}

.five-grid {
    grid-template-columns: repeat(5, 1fr);
}

.comic-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    transition: 180ms ease;
}

.comic-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.cover-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--cream);
}

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

.cover-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 4px 9px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(36, 34, 31, 0.86);
    font-size: 11px;
    font-weight: 800;
}

.comic-info {
    padding: 16px;
}

.comic-info h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
}

.comic-info p {
    display: -webkit-box;
    min-height: 66px;
    margin: 9px 0 13px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #837c71;
    font-size: 12px;
}

.meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tinted-section {
    padding: 84px 0;
    background: #f4efe4;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 60px;
    align-items: center;
}

.ranking-feature h2 {
    margin: 12px 0 6px;
    font-size: clamp(32px, 4vw, 46px);
}

.ranking-feature p {
    margin: 0 0 24px;
    color: var(--muted);
}

.ranking-feature img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
}

.ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list li {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid #ddd4c3;
}

.rank-number {
    color: var(--coral);
    font-size: 24px;
    font-weight: 900;
}

.ranking-list a {
    font-weight: 900;
}

.ranking-list p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
}

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

.category-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: 180ms ease;
}

.category-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.category-1,
.category-6 {
    background: #fff1ee;
}

.category-2,
.category-4 {
    background: #f0ecff;
}

.category-3,
.category-5 {
    background: #eff9f3;
}

.category-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    background: #ffffff;
}

.category-card h3 {
    margin: 17px 0 4px;
    font-size: 21px;
}

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

.category-more {
    margin-top: auto;
    font-size: 13px;
}

.spotlight-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: center;
    gap: 54px;
    padding: 48px;
    border-radius: 30px;
    color: #ffffff;
    background: #34303d;
}

.spotlight-copy h2 {
    margin: 14px 0 10px;
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.2;
}

.spotlight-copy p {
    margin: 0 0 24px;
    color: #d2ccd9;
}

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

.spotlight-covers a {
    overflow: hidden;
    border-radius: 17px;
    background: #ffffff;
}

.spotlight-covers img {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.spotlight-covers span {
    display: block;
    padding: 10px;
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-board {
    display: grid;
    grid-template-columns: 0.55fr 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.schedule-board > div {
    min-height: 120px;
    padding: 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.schedule-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--yellow);
}

.schedule-time.evening {
    color: #ffffff;
    background: var(--lavender);
}

.schedule-time strong {
    font-size: 28px;
}

.schedule-time span {
    font-size: 13px;
    font-weight: 800;
}

.schedule-copy h3 {
    margin: 0 0 5px;
}

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

.editor-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.editor-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.editor-list article > span {
    color: var(--yellow-deep);
    font-size: 28px;
    font-weight: 900;
}

.editor-list h3,
.editor-list p {
    margin: 0;
}

.editor-list p {
    color: var(--muted);
}

.guide-section {
    padding: 80px 0;
    background: #fff3bd;
}

.centered-heading {
    justify-content: center;
    text-align: center;
}

.centered-heading p {
    margin-inline: auto;
}

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

.steps-grid article {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(91, 69, 0, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.steps-grid article > span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(36, 34, 31, 0.18);
    font-size: 38px;
    font-weight: 900;
}

.steps-grid h3 {
    margin: 12px 0 3px;
}

.steps-grid p {
    margin: 0;
    color: var(--muted);
}

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

.voice-grid blockquote {
    margin: 0;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
}

.voice-grid p {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
}

.voice-grid footer {
    color: var(--muted);
    font-size: 13px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 70px;
}

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

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.faq-list p {
    margin: 10px 0 0;
    color: var(--muted);
}

.about-panel {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    gap: 50px;
    padding: 50px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #f5f1e8;
}

.about-badge {
    display: grid;
    min-height: 250px;
    place-items: center;
    align-content: center;
    border-radius: 24px;
    background: var(--yellow);
    transform: rotate(-2deg);
}

.about-badge span {
    font-size: 92px;
}

.about-badge small {
    font-weight: 900;
    letter-spacing: 0.28em;
}

.about-copy p {
    color: var(--muted);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.about-tags span {
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.subscribe-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    padding: 52px 60px;
    border-radius: 32px;
    color: #ffffff;
    background: linear-gradient(125deg, #292722, #4b414f);
}

.subscribe-panel::after {
    position: absolute;
    right: 22%;
    bottom: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 201, 40, 0.13);
    content: "";
}

.light-kicker {
    color: var(--ink);
}

.subscribe-copy {
    position: relative;
    z-index: 1;
}

.subscribe-copy p {
    max-width: 650px;
    color: #d2cdc5;
}

.subscribe-button {
    margin-top: 15px;
    color: var(--ink);
    background: var(--yellow);
}

.subscribe-status {
    display: inline-block;
    margin-left: 12px;
    color: #ffe78f;
    font-size: 13px;
}

.qr-placeholder {
    position: relative;
    z-index: 1;
    display: flex;
    width: 190px;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    color: var(--ink);
    background: #ffffff;
}

.qr-grid {
    display: grid;
    width: 116px;
    height: 116px;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 8px;
    border: 2px solid var(--ink);
}

.qr-grid span {
    border-radius: 2px;
    background: #f1eee7;
}

.qr-grid span.filled {
    background: var(--ink);
}

.qr-placeholder strong {
    margin-top: 12px;
    font-size: 13px;
}

.qr-placeholder small {
    color: var(--muted);
    font-size: 10px;
}

.site-footer {
    margin-top: 90px;
    padding-top: 56px;
    border-top: 1px solid var(--line);
    background: #f5f1e8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 60px;
}

.footer-note {
    max-width: 430px;
    color: var(--muted);
}

.footer-title {
    margin: 0 0 14px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 44px;
    padding: 20px 0;
    border-top: 1px solid #dfd7c8;
    color: var(--muted);
    font-size: 12px;
}

.copyright p {
    margin: 0;
}

.breadcrumb-wrap {
    padding-top: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.column-hero {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    margin-top: 30px;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(125deg, #fff2ac, #f9f6ee);
}

.column-icon {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 5px 5px 0 var(--ink);
}

.column-hero h1 {
    margin: 9px 0 2px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.2;
}

.column-hero p {
    margin: 0;
    color: var(--muted);
}

.column-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 30px;
    border-left: 1px solid rgba(70, 58, 26, 0.16);
}

.column-count strong {
    font-size: 36px;
}

.column-count span {
    color: var(--muted);
    font-size: 12px;
}

.seo-panel {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #f8f4eb;
}

.seo-panel h2 {
    margin: 0 0 8px;
}

.seo-panel p {
    margin: 0;
    color: var(--muted);
}

.seo-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.seo-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
}

.reader-page {
    background: #f4f0e8;
}

.reader-article {
    max-width: 980px;
}

.reader-header {
    margin-top: 28px;
    padding: 44px;
    border-radius: 28px;
    text-align: center;
    background: #ffffff;
}

.reader-label {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 999px;
    color: #6a5100;
    background: #fff0a8;
    font-size: 12px;
    font-weight: 800;
}

.reader-header h1 {
    margin: 14px 0 8px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.25;
}

.reader-header > p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
}

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

.reader-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.reading-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin: 26px 0;
    padding: 24px;
    border-left: 5px solid var(--yellow);
    border-radius: 16px;
    background: #fffdf7;
}

.reading-notice h2,
.reading-notice p {
    margin: 0;
}

.reading-notice h2 {
    font-size: 18px;
}

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

.chapter-content h2 {
    margin: 52px 0 18px;
    text-align: center;
}

.chapter-content figure {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(52, 43, 25, 0.08);
}

.chapter-content img {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.chapter-content figcaption {
    padding: 18px 22px;
    color: var(--muted);
    font-size: 14px;
}

.chapter-end {
    margin-top: 42px;
    padding: 42px;
    border-radius: 24px;
    text-align: center;
    background: #fff2b8;
}

.chapter-end h2 {
    margin: 10px 0 5px;
}

.chapter-end p {
    max-width: 660px;
    margin: 0 auto;
    color: var(--muted);
}

.chapter-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin: 28px 0 70px;
}

.chapter-link {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    font-weight: 800;
}

.chapter-link.next {
    justify-content: flex-end;
    text-align: right;
}

.chapter-link small {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.chapter-link.disabled {
    color: #99938a;
    background: #ebe7df;
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 1px;
    }

    .nav-link {
        padding: 9px 7px;
        font-size: 12px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-grid {
        gap: 35px;
        padding: 42px;
    }

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

    .five-grid .comic-card:nth-child(4),
    .five-grid .comic-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, 1200px);
    }

    .section-space {
        margin-top: 62px;
        margin-bottom: 62px;
    }

    .menu-toggle {
        display: grid;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        right: 14px;
        left: 14px;
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fffdf7;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: grid;
    }

    .nav-link {
        justify-content: center;
        padding: 11px;
        font-size: 14px;
    }

    .hero {
        padding-top: 10px;
    }

    .hero-grid,
    .ranking-layout,
    .spotlight-layout,
    .editor-layout,
    .faq-layout,
    .about-panel {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 34px;
    }

    .hero-art {
        margin-top: 18px;
    }

    .mood-row,
    .category-grid,
    .steps-grid,
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .continue-panel {
        grid-template-columns: auto 1fr;
    }

    .continue-panel .button {
        grid-column: 1 / -1;
    }

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

    .five-grid .comic-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 0.7fr 1.3fr;
    }

    .schedule-board {
        grid-template-columns: 0.55fr 1fr;
    }

    .spotlight-layout,
    .about-panel {
        padding: 36px;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 20px, 1200px);
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .hero-grid {
        min-height: auto;
        gap: 18px;
        padding: 26px 20px;
        border-radius: 24px;
    }

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

    .hero-lead {
        font-size: 15px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        justify-content: space-between;
        gap: 10px;
    }

    .floating-note {
        display: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .mood-row,
    .category-grid,
    .steps-grid,
    .voice-grid,
    .spotlight-covers,
    .schedule-board,
    .five-grid {
        grid-template-columns: 1fr;
    }

    .five-grid .comic-card:last-child {
        grid-column: auto;
        display: block;
    }

    .continue-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .tinted-section,
    .guide-section {
        padding: 58px 0;
    }

    .spotlight-layout,
    .about-panel {
        padding: 26px 20px;
    }

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

    .spotlight-covers span {
        display: none;
    }

    .schedule-board > div {
        border-right: 0;
    }

    .subscribe-panel {
        grid-template-columns: 1fr;
        padding: 34px 22px;
    }

    .qr-placeholder {
        width: 100%;
    }

    .column-hero {
        grid-template-columns: auto 1fr;
        padding: 26px 20px;
    }

    .column-count {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 16px 0 0;
        border-top: 1px solid rgba(70, 58, 26, 0.16);
        border-left: 0;
    }

    .reader-header {
        padding: 30px 20px;
    }

    .reader-meta {
        align-items: center;
        flex-direction: column;
        gap: 8px;
    }

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

    .chapter-nav .button {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .chapter-link {
        min-width: 0;
        font-size: 12px;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .copyright {
        flex-direction: column;
        gap: 4px;
    }
}
