@charset "UTF-8";

:root {
    --ink: #162c2a;
    --muted: #60706f;
    --green: #165c51;
    --deep: #123d38;
    --paper: #f6f8f7;
    --line: #dce5e1;
    --yellow: #f5dc68;
    --radius: 18px;
    --reader-size: 18px;
    color-scheme: light;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

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

button,
input {
    font: inherit;
}

button,
summary {
    cursor: pointer;
}

button {
    color: inherit;
}

button:disabled {
    cursor: default;
}

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

:focus-visible {
    outline: 3px solid #208675;
    outline-offset: 5px;
}

[hidden] {
    display: none !important;
}

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

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

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

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

h3 {
    font-size: 19px;
}

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

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

.icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    vertical-align: middle;
}

.sr-only,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    inset: 12px auto auto 12px;
    z-index: 10;
    background: white;
    padding: 12px;
}

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

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand img {
    border-radius: 13px;
    background: transparent;
}

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

.header-tools,
.book-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.book-link {
    font-size: 14px;
    padding: 10px 17px;
    border: 1px solid var(--line);
    border-radius: 50px;
}

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

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

.main-nav a:hover {
    background: #f0f6f3;
}

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

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

.menu-toggle {
    display: none;
}

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

.hero-copy {
    padding: 38px 40px 32px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--green);
}

.hero .eyebrow {
    color: #bcdbcd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 5px #f5dc6814;
}

.hero h1 {
    font-size: 20px;
    margin-top: 20px;
    color: var(--yellow);
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: clamp(32px, 3.4vw, 45px);
    color: #fff;
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.38;
    margin-block: 9px 18px;
}

.hero-description {
    color: #c4d8d1;
    font-size: 15px;
    line-height: 1.9;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    min-height: 46px;
    transition: background .16s, transform .16s;
}

.button:hover {
    transform: translateY(-1px);
}

.yellow {
    background: var(--yellow);
    color: #172f29;
}

.glass {
    color: #fff;
    background: #ffffff0d;
    border-color: #ffffff38;
}

.primary {
    color: #fff;
    background: var(--green);
}

.border {
    background: #fff;
    border-color: #ccd9d2;
}

.small {
    padding: 9px 13px;
    min-height: 42px;
}

.hero-bottom {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    padding-top: 21px;
    border-top: 1px solid #ffffff22;
    color: #b6cec3;
    font-size: 12px;
}

.hero-bottom strong {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-right: 3px;
}

.hero-art {
    position: relative;
    margin: 20px 20px 20px 0;
    overflow: hidden;
    border-radius: 15px;
    min-width: 0;
    isolation: isolate;
}

.hero-art img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-position: center 35%;
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #092f35c9, transparent 55%);
    z-index: 0;
}

.hero-art-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 1px;
}

.hero-sticker {
    position: absolute;
    top: 24px;
    right: 22px;
    background: var(--yellow);
    color: var(--ink);
    padding: 16px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: grid;
    place-content: center;
    font-size: 16px;
    font-weight: bold;
    transform: rotate(9deg);
    z-index: 1;
}

.section {
    margin-top: 68px;
}

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

.section-head h2 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
}

.section-head h2 .icon {
    color: var(--green);
    width: 25px;
    height: 25px;
}

.section-head h2 + p {
    font-size: 14px;
    margin-top: 12px;
    max-width: 690px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
    flex-shrink: 0;
}

.text-link .icon {
    width: 18px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid > *,
.rank-grid > *,
.shelf-layout > * {
    min-width: 0;
}

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

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

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

.cover {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    background: #dce7e1;
    aspect-ratio: 3 / 4;
}

.cover img {
    width: 100%;
    height: 100%;
    transition: transform .28s;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 5px;
    background: #edf2ee;
    font-size: 12px;
    color: #416051;
}

.cover-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #ffffffed;
    color: #213d30;
}

.card-copy {
    padding-top: 15px;
}

.card-copy h3 {
    margin-block: 5px 7px;
}

.card-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.7;
}

.clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.updates {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.update-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid #e6ece7;
    min-width: 0;
}

.update-row img {
    width: 66px;
    height: 90px;
    border-radius: 7px;
    flex: 0 0 auto;
}

.update-row h3 {
    font-size: 16px;
    margin-block: 4px;
}

.update-row p,
.update-row time {
    font-size: 12px;
}

.update-row time {
    color: #8a9891;
}

.update-row > .icon {
    width: 17px;
    margin-left: auto;
    color: #8ca499;
}

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

.category-tile {
    padding: 23px 15px 18px;
    background: #e9f0eb;
    border-radius: 12px;
    border: 1px solid transparent;
}

.category-tile:nth-child(3n+2) {
    background: #eef0f6;
}

.category-tile:nth-child(3n) {
    background: #f4f0df;
}

.category-tile:hover {
    border-color: #98b4a5;
}

.category-tile > .icon {
    width: 29px;
    height: 29px;
    margin-bottom: 16px;
    color: var(--green);
}

.category-tile h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.category-tile p {
    font-size: 12px;
    line-height: 1.8;
    min-height: 110px;
}

.category-tile > span {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 16px;
    color: var(--green);
}

.category-tile > span .icon {
    width: 16px;
}

.ranking {
    border-top: 2px solid var(--ink);
    padding-top: 26px;
}

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

.rank-row {
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.rank-number {
    font-size: 36px;
    color: #a1b8aa;
    font-weight: 800;
    font-style: italic;
}

.rank-row:nth-child(1) .rank-number {
    color: #ae7c16;
}

.rank-row img {
    width: 78px;
    height: 106px;
    border-radius: 7px;
    flex: 0 0 auto;
}

.rank-row p {
    font-size: 14px;
    margin-block: 7px 10px;
}

.landscape-story {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 330px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    isolation: isolate;
}

.landscape-story > img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -2;
}

.landscape-story::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #142f3720 0%, #102b36ef 100%);
    z-index: -1;
}

.landscape-story > div {
    padding: 30px;
    width: 100%;
}

.landscape-story .badge {
    background: #ffffffdc;
}

.landscape-story h3 {
    font-size: 26px;
    margin-top: 13px;
}

.landscape-story p {
    color: #eef4f3;
    font-size: 14px;
    margin-block: 10px 18px;
}

.landscape-story div > span:last-child {
    font-size: 14px;
}

.campus {
    border-radius: 18px;
    padding: 34px;
    background: #ebf2eb;
}

.campus-item img {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    margin: 0 auto 22px;
    border: 5px solid #fff;
}

.campus-item {
    text-align: center;
}

.campus-item h3 {
    margin-block: 7px 12px;
}

.campus-item p {
    text-align: left;
    font-size: 14px;
}

.journey-stop {
    border-top: 1px dashed #82a391;
    padding: 23px 18px 4px 0;
}

.stop-number {
    display: inline-block;
    background: var(--yellow);
    color: var(--deep);
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
}

.journey-stop h3 {
    margin-block: 16px 12px;
    font-size: 22px;
}

.journey-stop p {
    font-size: 14px;
    margin-bottom: 20px;
}

.dossier {
    display: block;
    border: 1px solid #d9dfde;
    border-radius: 0 14px 14px 14px;
    background: #fff;
    margin-top: 16px;
}

.dossier-tab {
    width: fit-content;
    background: var(--deep);
    color: #fff;
    padding: 7px 20px;
    border-radius: 6px 6px 0 0;
    font-size: 12px;
    margin-top: -18px;
    margin-left: -1px;
}

.dossier-body {
    display: grid;
    grid-template-columns: 1fr 120px;
    padding: 25px;
    gap: 24px;
    align-items: center;
}

.dossier-body img {
    width: 120px;
    height: 156px;
    border-radius: 4px;
    transform: rotate(3deg);
}

.dossier h3 {
    margin-block: 7px 12px;
}

.dossier p {
    font-size: 14px;
    margin-bottom: 16px;
}

.korean-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}

.korean-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 14px;
    border-radius: 70px 14px 14px 70px;
    border: 1px solid var(--line);
}

.korean-item img {
    width: 102px;
    height: 130px;
    border-radius: 60px;
    flex: 0 0 auto;
}

.korean-item span,
.korean-item p {
    font-size: 12px;
}

.korean-item h3 {
    margin-block: 6px 8px;
}

.korean-item > .icon {
    width: 18px;
    color: var(--green);
}

.shelf-section {
    background: #fff;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.shelf-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
}

.shelf-intro p {
    margin-top: 12px;
    font-size: 14px;
}

.subtle {
    font-size: 12px !important;
    color: #728279;
}

.shelf-empty {
    font-size: 14px;
    margin-bottom: 10px;
}

.shelf-suggestions,
.saved-list {
    display: grid;
    gap: 8px;
}

.shelf-suggestions a,
.saved-entry {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 8px;
    background: #f3f6f3;
}

.shelf-suggestions small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.shelf-suggestions a > .icon:last-child {
    margin-left: auto;
}

.saved-entry a {
    flex: 1;
}

.saved-entry button {
    border: 0;
    border-radius: 5px;
    color: #576b61;
    padding: 7px 9px;
    background: #e7eee8;
    font-size: 14px;
}

.reading-tips details {
    border-top: 3px solid #b6c9bd;
    padding: 23px 0;
}

.reading-tips summary {
    font-weight: bold;
    font-size: 17px;
}

.reading-tips p {
    margin-top: 15px;
    font-size: 14px;
}

.about {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    padding-block: 34px 12px;
    border-top: 1px solid var(--line);
}

.about h2 {
    margin-block: 14px 24px;
    line-height: 1.6;
}

.about p + p {
    margin-top: 17px;
}

.about > div:last-child p {
    font-size: 14px;
    line-height: 1.95;
}

.subscribe {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 100px 1fr 185px;
    gap: 32px;
    align-items: center;
    background: var(--deep);
    color: #fff;
    padding: 40px;
    border-radius: 18px;
}

.subscribe-mark img {
    background: transparent;
    border-radius: 22px;
}

.subscribe .eyebrow {
    color: #e3d898;
}

.subscribe h2 {
    font-size: 26px;
    margin-block: 6px 12px;
}

.subscribe-copy p:not(.eyebrow) {
    color: #c0d2cb;
    font-size: 14px;
}

.subscribe-copy .subtle {
    margin-top: 12px;
}

.subscribe-actions {
    display: grid;
    gap: 10px;
}

.subscribe-actions .button {
    padding-inline: 12px;
}

.outline-light {
    color: #fff;
    background: transparent;
    border: 1px solid #52746a;
}

.feed-feedback {
    color: #e1efdf;
    font-size: 12px;
    overflow-wrap: anywhere;
}

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

.footer-brand {
    font-size: 18px;
    font-weight: 800;
}

.site-footer > div {
    display: flex;
    gap: 20px;
    color: var(--muted);
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 32px);
    width: max-content;
    background: #173c32;
    color: #fff;
    padding: 13px 22px;
    border-radius: 10px;
    box-shadow: 0 5px 25px #132e3726;
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    transition: opacity .2s;
    font-size: 14px;
}

.toast.visible {
    opacity: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    padding-block: 25px;
}

.breadcrumbs a:hover {
    color: var(--green);
    text-decoration: underline;
}

.collection-hero {
    background: #e6eeE8;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.collection-hero h1 {
    font-size: 38px;
    margin-block: 10px 15px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.collection-hero h1 .icon {
    width: 34px;
    height: 34px;
}

.collection-number {
    font-size: 84px;
    font-weight: 800;
    line-height: 1;
    color: #a4bdae;
    align-self: center;
    padding-inline: 24px;
}

.collection-number span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-top: 10px;
    text-align: center;
    color: #486556;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.pills .badge {
    border: 1px solid #d4e0d7;
    background: #ffffffa8;
}

.pills .green {
    background: #e4f3d8;
}

.collection-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.collection-toolbar > p {
    font-size: 14px;
}

.search-box {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #cbd8d0;
    border-radius: 8px;
    padding: 9px 13px;
    background: #fff;
    max-width: 100%;
}

.search-box input {
    width: 220px;
    max-width: 100%;
    min-width: 0;
    border: none;
    padding: 3px;
    background: transparent;
    font-size: 14px;
    color: var(--ink);
}

.collection-cards {
    gap: 40px 28px;
}

.collection-cards .cover {
    aspect-ratio: 4 / 4.7;
}

.collection-note {
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.collection-note p {
    margin-top: 16px;
    line-height: 1.95;
}

.collection-note a {
    margin-top: 20px;
}

.no-results {
    padding: 40px 0;
    text-align: center;
}

.detail-hero {
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: 44px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    align-items: center;
}

.detail-cover {
    width: 255px;
    height: 340px;
    border-radius: 12px;
}

.detail-hero h1 {
    font-size: 38px;
    margin-top: 10px;
}

.synopsis {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.9;
    color: #43564c;
}

.detail-meta {
    margin-top: 18px;
    font-size: 13px;
}

.chapter-list {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.chapter-list li + li {
    border-top: 1px solid var(--line);
}

.chapter-list a {
    padding: 25px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.chapter-list a:hover {
    background: #f0f6ef;
}

.chapter-number {
    color: #7b9b86;
    font-size: 28px;
    font-weight: 700;
}

.chapter-list p {
    font-size: 14px;
    margin-top: 8px;
}

.chapter-label {
    margin-left: auto;
    white-space: nowrap;
    font-size: 14px;
    color: var(--green);
}

.detail-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    border-top: 1px solid var(--line);
    padding-top: 32px;
}

.detail-notes h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.detail-notes p {
    font-size: 15px;
    margin-top: 12px;
}

.reader {
    width: min(820px, 100%);
    margin-inline: auto;
}

.reader-heading {
    text-align: center;
    padding-block: 24px 30px;
}

.reader-heading h1 {
    font-size: 36px;
    margin-block: 12px 16px;
}

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

.reader-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
    background: #e8efe9;
    border-radius: 12px;
    font-size: 14px;
}

.reading-note {
    font-size: 14px;
    padding: 18px 10px 0;
}

.reader-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-block: 24px;
}

.disabled {
    border-color: #d8e1da;
    color: #66776c;
    background: #eef2ee;
    cursor: default;
    font-weight: 400;
}

.story-panel {
    background: #fff;
    border: 1px solid #dce5dd;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.panel-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #e7ece7;
}

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

.panel-count {
    font-size: 12px;
    font-weight: 600;
    color: #76927f;
    letter-spacing: 3px;
}

.story-panel p {
    font-size: var(--reader-size);
    line-height: 2;
    color: #273b30;
    margin-top: 10px;
}

.chapter-end {
    margin-top: 36px;
    padding: 35px 26px;
    text-align: center;
    background: #eaf1e8;
    border-radius: 14px;
}

.chapter-end > .icon {
    background: #1c6650;
    color: #fff;
    border-radius: 50%;
    padding: 8px;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

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

.chapter-end p {
    margin-top: 10px;
    font-size: 15px;
}

.back-category {
    display: block;
    text-align: center;
    color: var(--green);
    padding: 10px 0 25px;
}

body.reading-soft {
    background: #e4eddf;
}

.reading-soft .story-panel {
    background: #f1f5e9;
}

.reading-soft .panel-image {
    filter: brightness(.92) saturate(.86);
}

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

    .hero-bottom {
        gap: 14px;
    }

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

    .category-tile {
        display: grid;
        grid-template-columns: 32px 105px 1fr 105px;
        align-items: center;
        gap: 18px;
        padding: 18px 20px;
    }

    .category-tile h3,
    .category-tile > .icon,
    .category-tile > span {
        margin: 0;
    }

    .category-tile p {
        min-height: 0;
    }

    .updates {
        padding: 25px;
    }

    .update-row {
        gap: 10px;
    }

    .update-row > .icon {
        display: none;
    }

    .dossier-body {
        grid-template-columns: 1fr 90px;
        gap: 18px;
    }

    .dossier-body img {
        width: 90px;
        height: 135px;
    }

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

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

@media (max-width: 800px) {
    .main-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    .hero {
        grid-template-columns: 1.15fr 1fr;
        min-height: 440px;
    }

    .hero-copy {
        padding: 25px;
    }

    .hero-tagline {
        font-size: 31px;
    }

    .hero-bottom {
        gap: 13px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .hero-bottom strong {
        font-size: 16px;
    }

    .hero-actions .button {
        padding: 11px 14px;
    }

    .hero-sticker {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }

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

    .updates .three,
    .collection-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranking .rank-grid,
    .korean-strip {
        grid-template-columns: 1fr;
    }

    .dossier-body {
        grid-template-columns: 1fr;
    }

    .dossier-body img {
        display: none;
    }

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

    .subscribe-actions {
        grid-column: 2;
        display: flex;
        flex-wrap: wrap;
    }

    .subscribe-actions .feed-feedback {
        width: 100%;
    }

    .shelf-layout,
    .about {
        gap: 28px;
    }

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

    .detail-cover {
        width: 190px;
        height: 260px;
    }

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

    .synopsis {
        font-size: 15px;
    }

    .detail-actions {
        gap: 8px;
    }

    .detail-actions .button {
        padding-inline: 13px;
    }
}

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

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

    .brand {
        font-size: 20px;
        gap: 8px;
    }

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

    .brand small {
        letter-spacing: .2px;
    }

    .book-link {
        border: 0;
        padding: 10px 6px;
    }

    .book-link span {
        display: none;
    }

    .header-tools {
        gap: 6px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 4px;
        border: 1px solid #d6e2d9;
        background: white;
        border-radius: 7px;
        padding: 9px 10px;
        font-size: 12px;
    }

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

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

    .main-nav.nav-collapsed {
        display: none;
    }

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

    .hero-copy {
        padding: 29px 25px 26px;
    }

    .hero-tagline {
        font-size: 37px;
    }

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

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

    .hero-actions {
        margin-top: 20px;
    }

    .hero-bottom {
        justify-content: space-between;
        gap: 6px;
        font-size: 12px;
    }

    .hero-art {
        margin: 0 15px 15px;
        height: 260px;
    }

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

    .hero-sticker {
        top: 17px;
        right: 17px;
    }

    .section {
        margin-top: 45px;
    }

    h2 {
        font-size: 22px;
    }

    .section-head {
        gap: 12px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

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

    .section-head h2 .icon {
        width: 21px;
    }

    .section-head > .text-link {
        font-size: 12px;
    }

    .eyebrow {
        letter-spacing: .8px;
    }

    .grid {
        gap: 22px 14px;
    }

    .card-copy h3 {
        font-size: 17px;
    }

    .card-copy p:not(.eyebrow) {
        font-size: 13px;
    }

    .cover-badge {
        padding: 3px 7px;
        bottom: 8px;
        left: 8px;
    }

    .updates {
        padding: 22px 18px;
    }

    .updates .three,
    .journey .three,
    .reading-tips,
    .two {
        grid-template-columns: 1fr;
    }

    .updates .three {
        gap: 0;
    }

    .update-row {
        gap: 16px;
    }

    .update-row > .icon {
        display: block;
    }

    .category-tile {
        grid-template-columns: 30px 1fr 94px;
        gap: 8px 15px;
        padding: 18px;
    }

    .category-tile > .icon {
        grid-row: 1 / 3;
    }

    .category-tile p {
        grid-column: 2 / 4;
        grid-row: 2;
    }

    .category-tile > span {
        grid-column: 3;
        grid-row: 1;
    }

    .rank-row {
        gap: 12px;
        align-items: flex-start;
    }

    .rank-number {
        font-size: 28px;
    }

    .rank-row img {
        width: 63px;
        height: 88px;
    }

    .rank-row h3 {
        font-size: 17px;
    }

    .rank-row p {
        font-size: 13px;
    }

    .landscape-story {
        min-height: 300px;
    }

    .landscape-story > div {
        padding: 24px;
    }

    .campus {
        padding: 25px 18px;
    }

    .campus-item img {
        width: 105px;
        height: 105px;
        margin-bottom: 16px;
    }

    .campus-item h3 {
        font-size: 16px;
    }

    .campus-item p {
        font-size: 13px;
    }

    .dossier-body {
        grid-template-columns: 1fr 82px;
        gap: 15px;
        padding: 20px;
    }

    .dossier-body img {
        display: block;
        width: 82px;
        height: 120px;
    }

    .korean-item {
        gap: 14px;
        border-radius: 50px 12px 12px 50px;
        padding: 10px;
    }

    .korean-item img {
        width: 80px;
        height: 118px;
    }

    .korean-item h3 {
        font-size: 17px;
    }

    .korean-item > .icon {
        display: none;
    }

    .shelf-section {
        padding: 24px 20px;
    }

    .shelf-layout,
    .about,
    .detail-notes {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reading-tips {
        gap: 6px;
    }

    .about {
        padding-top: 24px;
    }

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

    .subscribe {
        margin-top: 45px;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
    }

    .subscribe-mark img {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

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

    .subscribe-actions {
        grid-column: 1;
    }

    .site-footer {
        display: grid;
        gap: 12px;
        margin-top: 24px;
    }

    .breadcrumbs {
        font-size: 12px;
        gap: 7px;
        padding-block: 20px;
    }

    .collection-hero {
        padding: 26px 24px;
    }

    .collection-hero h1 {
        font-size: 31px;
    }

    .collection-number {
        display: none;
    }

    .collection-toolbar {
        gap: 15px;
    }

    .search-box {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .search-box input {
        width: 100%;
    }

    .collection-toolbar > p {
        margin-left: auto;
    }

    .collection-cards {
        gap: 28px 14px;
    }

    .collection-note {
        padding: 24px;
    }

    .collection-note p {
        font-size: 14px;
    }

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

    .detail-cover {
        width: 180px;
        height: 240px;
        margin-inline: auto;
    }

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

    .chapter-list a {
        padding: 20px 16px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .chapter-list a > div {
        flex: 1;
        min-width: 0;
    }

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

    .chapter-label {
        width: 100%;
        padding-left: 45px;
    }

    .reader-heading {
        padding-block: 10px 24px;
    }

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

    .reader-toolbar {
        gap: 8px;
        padding: 14px 8px;
    }

    .reader-toolbar > span {
        font-size: 12px;
    }

    .reader-toolbar .small {
        padding-inline: 10px;
    }

    .reader-nav {
        gap: 8px;
    }

    .reader-nav .button {
        padding: 11px 4px;
        font-size: 12px;
        gap: 3px;
    }

    .reader-nav .icon {
        width: 16px;
    }

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

    .chapter-end {
        padding: 28px 22px;
    }

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

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

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