:root {
    --ink: #172e2a;
    --muted: #64716c;
    --green: #174e3c;
    --lime: #c4f482;
    --paper: #ffffff;
    --line: #e3e9e4;
    --wash: #f4f7f4;
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font: 16px/1.75 "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--green);
}

button,
input {
    font: inherit;
}

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

button {
    cursor: pointer;
}

button:disabled {
    cursor: default;
}

:focus-visible {
    outline: 3px solid #548f38;
    outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
    line-height: 1.45;
    text-wrap: pretty;
}

h1 {
    font-size: clamp(28px, 3.4vw, 44px);
    letter-spacing: -1.5px;
}

h2 {
    font-size: 25px;
    font-weight: 750;
}

h3 {
    font-size: 18px;
    font-weight: 650;
}

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

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

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

.skip-link {
    position: fixed;
    z-index: 100;
    top: -80px;
    left: 16px;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--green);
}

.skip-link:focus {
    top: 8px;
}

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

.header-top {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    flex-shrink: 0;
}

.brand img {
    width: 220px;
    height: 48px;
}

.header-motto {
    border-left: 1px solid var(--line);
    padding-left: 28px;
    font-size: 15px;
    color: var(--ink);
}

.header-motto span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.library-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 14px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    padding-bottom: 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

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

.nav-item:hover,
.nav-item.active {
    background: var(--green);
    color: white;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    width: 44px;
    height: 44px;
}

.hero-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    margin-top: 32px;
    border-radius: 22px;
    overflow: hidden;
    background: #142e29;
    color: white;
    min-height: 410px;
}

.hero-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 36px;
    position: relative;
    background: linear-gradient(145deg, #1d4539, #102922);
}

.hero-intro .eyebrow {
    color: var(--lime);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-intro h1 {
    white-space: nowrap;
    font-size: clamp(28px, 3vw, 41px);
}

.hero-intro h1 a:hover {
    color: var(--lime);
}

.hero-intro > p:not(.eyebrow) {
    color: #d0dfd6;
    line-height: 2;
    margin-top: 20px;
    font-size: 15px;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 38px;
}

.hero-links .text-link {
    color: var(--lime);
}

.feature {
    min-width: 0;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    border-radius: var(--radius);
    color: white;
    background: #294b42;
}

.feature-picture,
.feature-picture img,
.feature-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.feature-picture img {
    object-fit: cover;
}

.feature-shade {
    background: linear-gradient(180deg, transparent 10%, rgba(9, 29, 25, 0.85) 100%);
}

.hero-feature {
    border-radius: 0;
    min-height: 410px;
}

.feature-copy {
    padding: 32px;
    width: 100%;
}

.feature-copy h2 {
    font-size: 27px;
    margin-top: 12px;
    max-width: 560px;
}

.feature-copy h2 a:hover {
    color: var(--lime);
}

.feature-copy p {
    color: #e3eee6;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
    max-width: 520px;
}

.feature-copy .meta {
    color: #e0e9e2;
    margin: 14px 0 20px;
}

.pill {
    display: inline-block;
    background: #eaf2e7;
    color: var(--green);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.feature .pill {
    background: rgba(255, 255, 255, 0.92);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--lime);
    color: #183b27;
    font-size: 14px;
    font-weight: 650;
}

.button:hover {
    background: #afe562;
    color: #122b1a;
}

.button.secondary {
    border-color: #d6e1d7;
    background: white;
    color: var(--ink);
}

.button[aria-pressed="true"] {
    background: #e6f7d1;
    border-color: #92bf64;
}

.section {
    margin-top: 64px;
    min-width: 0;
}

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

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: #617368;
    letter-spacing: 1.3px;
    margin-bottom: 7px;
}

.section-heading h2 {
    display: flex;
    align-items: center;
    gap: 11px;
}

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

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

.text-link .icon {
    width: 17px;
    height: 17px;
}

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

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

.cover {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #d9e5db;
}

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

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

.cover-play {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #173b2c;
    box-shadow: 0 2px 12px #183e3920;
}

.cover-play .icon {
    width: 17px;
    height: 17px;
}

.duration {
    position: absolute;
    right: 10px;
    bottom: 11px;
    border-radius: 4px;
    background: #10261fe0;
    color: #fff;
    font: 12px/1.8 system-ui, sans-serif;
    padding: 0 6px;
    font-variant-numeric: tabular-nums;
}

.card-copy {
    padding: 13px 1px 0;
}

.card-copy h3 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
}

.card-copy > p {
    margin: 8px 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 12px;
    color: var(--muted);
}

.view-count {
    display: inline-block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 5px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    border-block: 1px solid var(--line);
}

.timeline article {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    min-width: 0;
}

.timeline article:nth-last-child(-n+2) {
    border-bottom: 0;
}

.timeline time {
    font: 22px/1.2 system-ui, sans-serif;
    color: #6d816d;
    flex-shrink: 0;
}

.timeline article > div {
    min-width: 0;
}

.timeline h3 {
    margin-top: 5px;
    font-size: 16px;
}

.timeline p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 5px;
    font-size: 14px;
}

.round-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid #c8d9cd;
    flex-shrink: 0;
    margin-left: auto;
}

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

.category-tile {
    min-width: 0;
    background: #f0f5ed;
    border: 1px solid #e5ede0;
    padding: 22px;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.category-tile:nth-child(4n+2) {
    background: #edf3f7;
    border-color: #e1eaf1;
}

.category-tile:nth-child(4n+3) {
    background: #faf2e7;
    border-color: #f2e9dc;
}

.category-tile:nth-child(4n) {
    background: #f3eff7;
    border-color: #e9e2f0;
}

.category-tile > .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
}

.category-tile h3 {
    margin-bottom: 7px;
}

.category-tile p {
    font-size: 14px;
    min-height: 49px;
}

.category-tile > span {
    display: block;
    font-size: 12px;
    margin-top: 18px;
}

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

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

.travel-pair .feature {
    min-height: 340px;
}

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

.city-strip article {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    border-block: 1px solid var(--line);
    padding-block: 18px;
}

.city-strip .cover {
    height: 180px;
    aspect-ratio: auto;
}

.city-strip p:not(.eyebrow) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    margin: 9px 0;
}

.food-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    padding: 28px;
    background: #f7f5ef;
    border-radius: 18px;
}

.food-notes article {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e3e0d7;
}

.food-notes article:first-child {
    padding-top: 0;
}

.food-notes article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.food-index {
    font: 28px/1.2 Georgia, serif;
    color: #9b7f48;
}

.food-notes p {
    font-size: 14px;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.rank-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    min-width: 0;
}

.rank-list li > div {
    min-width: 0;
    flex: 1;
}

.rank-number {
    font: italic 36px/1 Georgia, serif;
    color: #849283;
    width: 45px;
    flex-shrink: 0;
}

.rank-list li:first-child .rank-number,
.rank-list li:nth-child(2) .rank-number,
.rank-list li:nth-child(3) .rank-number {
    color: #2e6b42;
}

.rank-list h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.rank-list p {
    font-size: 12px;
    margin-top: 6px;
}

.heat {
    color: var(--green);
    font: 23px/1.5 system-ui, sans-serif;
    text-align: right;
    flex-shrink: 0;
}

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

.fine-print {
    margin-top: 16px;
    font-size: 12px;
}

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

.topic-grid article {
    min-width: 0;
}

.topic-cover {
    display: block;
    position: relative;
    aspect-ratio: 16 / 7;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    background: #29473e;
}

.topic-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topic-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(transparent, #102c23ed);
    color: white;
}

.topic-overlay strong {
    font-size: 22px;
    margin: 8px 0;
}

.topic-overlay small,
.topic-overlay > span {
    font-size: 12px;
    color: #e4f4d8;
}

.topic-grid article > p {
    font-size: 14px;
    margin-top: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.topic-related {
    border-top: 1px solid var(--line);
    margin-top: 12px;
    padding-top: 10px;
    font-size: 14px;
}

.editor-note {
    display: flex;
    gap: 36px;
    padding: 32px 40px;
    border-left: 4px solid var(--green);
    background: var(--wash);
}

.editor-mark {
    font: 110px/1 Georgia, serif;
    color: #7d9f72;
}

.editor-note h3 {
    font-size: 25px;
    margin-bottom: 14px;
}

.editor-note p:not(.eyebrow) {
    max-width: 850px;
    margin-bottom: 10px;
}

.tag-matrix {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-matrix a {
    border: 1px solid #dce5dc;
    border-radius: 100px;
    padding: 9px 20px;
    font-size: 14px;
    background: #fff;
}

.tag-matrix a:hover {
    background: #eff6e8;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    border-block: 1px solid var(--line);
    padding-block: 30px;
}

.about-statement {
    color: var(--green);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 3px;
}

.about-layout > div p + p {
    margin-top: 14px;
}

.subscribe {
    display: flex;
    gap: 38px;
    align-items: center;
    padding: 36px 44px;
    border-radius: 18px;
    background: #eaf3df;
    margin-bottom: 64px;
}

.subscribe-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    border: 1px solid #bdd0ab;
    border-radius: 24px;
    background: #173d2e;
    color: #d2f4a7;
    width: 166px;
    height: 144px;
    flex-shrink: 0;
    font-size: 21px;
    letter-spacing: 2px;
    line-height: 1.45;
}

.subscribe-brand .icon {
    width: 44px;
    height: 44px;
}

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

.subscribe p {
    max-width: 760px;
    font-size: 14px;
}

.subscribe-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.copy-status {
    margin-top: 12px;
    overflow-wrap: anywhere;
}

.site-footer {
    background: #f3f6f2;
    border-top: 1px solid var(--line);
    margin-top: 64px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
    gap: 50px;
    padding-block: 46px;
}

.footer-main h2 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-main p {
    font-size: 14px;
    margin-top: 14px;
}

.footer-main > div > a:not(.brand) {
    display: block;
    font-size: 14px;
    color: var(--muted);
    padding-block: 4px;
}

.footer-note .pill {
    margin-top: 16px;
    background: #e3ecdc;
}

.footer-bottom {
    border-top: 1px solid #dae3d8;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding-block: 20px;
    font-size: 12px;
}

.back-top {
    position: fixed;
    bottom: 24px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #c3d5c4;
    background: white;
    color: var(--green);
    box-shadow: 0 4px 15px #173d2e12;
    z-index: 20;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0;
    font-size: 14px;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.category-hero {
    padding: 40px;
    background: #edf3e9;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px;
}

.category-hero h1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.category-hero p:not(.eyebrow) {
    max-width: 780px;
    margin-top: 16px;
}

.category-glyph .icon {
    width: 120px;
    height: 120px;
    color: #7b9c6c;
    stroke-width: 1;
}

.category-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 13px;
    margin-top: 20px;
}

.category-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
}

.reading-guide {
    padding: 30px;
    background: var(--wash);
    border-radius: var(--radius);
}

.reading-guide p:not(.eyebrow) {
    margin-top: 14px;
}

.reading-guide ul {
    padding-left: 20px;
    font-size: 14px;
}

.reading-guide li {
    margin-bottom: 7px;
}

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

.category-list article {
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.category-list p {
    margin: 9px 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.video-heading {
    margin-bottom: 30px;
    max-width: 1000px;
}

.video-heading h1 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 18px;
}

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

.save-status {
    font-size: 14px;
    margin-top: 8px;
}

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 38px;
    align-items: start;
}

.watch-main,
.watch-aside {
    min-width: 0;
}

.player {
    overflow: hidden;
    border-radius: 14px;
    background: #112720;
    color: #eef6ef;
}

.player-screen {
    aspect-ratio: 16 / 9;
    position: relative;
    background: #27483d;
    overflow: hidden;
}

.player-screen > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #102c24d9;
    color: #f0f5ec;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
}

.big-play {
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid #ffffff77;
    background: #f2f8eae8;
    color: #214c37;
}

.big-play .icon {
    width: 38px;
    height: 38px;
}

.player.is-playing .big-play {
    opacity: 0;
}

.player.is-playing:hover .big-play,
.player.is-playing .big-play:focus-visible {
    opacity: 1;
}

.player-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 18px 12px;
    color: white;
    background: linear-gradient(transparent, #0a241bdb);
    font-size: 14px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
}

.player-controls button {
    background: none;
    border: none;
    color: white;
    min-width: 40px;
    height: 40px;
    padding: 6px;
}

.player-controls output {
    white-space: nowrap;
    font: 12px/1.5 system-ui, sans-serif;
}

.player-controls input {
    min-width: 0;
    accent-color: var(--lime);
}

.seek {
    flex: 1;
    width: 100%;
}

.volume {
    display: flex;
    align-items: center;
    gap: 7px;
}

.volume input {
    width: 50px;
}

.silent-label {
    white-space: nowrap;
    color: #c8d7ca;
    font-size: 12px;
}

.player-status {
    padding: 5px 18px 15px;
    color: #cfddcf;
    font-size: 12px;
}

.player:fullscreen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
}

.player:fullscreen .player-screen {
    max-height: calc(100vh - 110px);
    width: 100%;
    flex: 1;
    aspect-ratio: auto;
}

.player:fullscreen img {
    object-fit: contain;
}

.article-block {
    margin-top: 36px;
}

.article-block h2 {
    font-size: 23px;
    margin-bottom: 18px;
}

.article-block p + p {
    margin-top: 14px;
}

.article-block .lead {
    font-size: 17px;
    color: #3a4e42;
    line-height: 1.95;
}

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

.scene-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 9px;
}

.scene-grid figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: var(--muted);
}

.scene-grid figcaption span {
    color: var(--green);
    margin-right: 8px;
    font-weight: 700;
}

.highlight-list {
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

.highlight-list li {
    border-left: 3px solid #b1d295;
    padding-left: 18px;
}

.highlight-list p {
    font-size: 14px;
    margin-top: 7px;
}

.watch-guide {
    padding: 25px;
    border-radius: 12px;
    background: #f2f5ef;
}

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

.ending {
    border-block: 1px solid var(--line);
    padding-block: 28px;
}

.ending .button {
    margin-top: 20px;
}

.episode-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 25px;
    font-size: 14px;
}

.episode-nav > :last-child {
    text-align: right;
}

.episode-nav > span {
    color: var(--muted);
}

.watch-aside h2 {
    font-size: 19px;
    margin-bottom: 20px;
}

.watch-aside .video-card {
    margin-bottom: 28px;
}

.aside-note {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
}

.aside-note p {
    margin-top: 10px;
    font-size: 14px;
}

.plain-page {
    max-width: 880px;
    margin: 40px auto;
    min-height: 350px;
}

.plain-page h1 {
    margin-bottom: 24px;
}

.plain-page h2 {
    margin: 28px 0 16px;
}

.prose p {
    line-height: 1.95;
}

.prose .button {
    margin-top: 28px;
}

.library-section {
    padding-top: 14px;
    margin-top: 25px;
    border-top: 1px solid var(--line);
}

.library-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.library-item a {
    flex: 1;
    min-width: 0;
}

.library-item small {
    display: block;
    color: var(--muted);
}

.library-item button {
    border: 1px solid var(--line);
    background: white;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 14px;
    flex-shrink: 0;
}

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

    * {
        transition: none !important;
    }
}
