/* ============================================================
   今穿主题 — 主样式表
   包含：重置 / 导航 / 首屏 Banner / 功能区 / 下载区 / 文章模板 / 列表模板
   ============================================================ */

/* ─── 变量 ─── */
:root {
    --nav-h: 52px;
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
        "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua",
        "Times New Roman", "Songti SC", "STSong", serif;
    --blue:        #2997ff;
    --blue-hover:  #0077ed;
    --blue-light:  #64b0ff;
    --ink:         #1d1d1f;
    --ink-sub:     rgba(29, 29, 31, 0.65);
    --ink-muted:   rgba(29, 29, 31, 0.45);
    --line:        rgba(0, 0, 0, 0.10);
    --section-gap: clamp(6px, 1vw, 12px);
    --section-gutter: clamp(4px, 1vw, 10px);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: #fff;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

main { background: #fff; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── 导航 ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 40px);
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    color: #1d1d1f;
}

body.has-mobile-nav-open {
    overflow: hidden;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}
.nav-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}
.nav-brand svg, .nav-brand .custom-logo-link {
    display: flex;
    align-items: center;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: clamp(20px, 3.5vw, 36px);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3.5vw, 36px);
    list-style: none;
}
.nav-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.68);
    white-space: nowrap;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.nav-menu a:hover { color: #1d1d1f; }
.nav-menu li.current-menu-item a,
.nav-menu li.current-menu-item a { color: #2997ff; font-weight: 600; }

/* WP 后台自动添加的 .current-menu-item 类 */
.nav-menu .current-menu-item > a { color: #2997ff; font-weight: 600; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 1;
}
.nav-mobile-brand,
.nav-mobile-toggle,
.nav-mobile {
    display: none;
}
.nav-download {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-cta {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 980px;
    background: var(--blue);
    color: #fff;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(41, 151, 255, 0.28);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.nav-cta:hover {
    background: var(--blue-hover);
    box-shadow: 0 4px 16px rgba(41, 151, 255, 0.38);
}
.nav-cta:active { transform: scale(0.98); }

.nav-download__panel {
    position: absolute;
    right: 0;
    top: calc(100% + 14px);
    width: min(320px, calc(100vw - 24px));
    padding: 14px;
    border-radius: 22px;
    background: rgba(12, 12, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s ease;
    z-index: 2;
}
.nav-download.is-open .nav-download__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.nav-download__label {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(245, 245, 247, 0.72);
}
.nav-download__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.nav-download__item {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 12px 10px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-download__item img {
    width: 92px;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 6px;
}
.nav-download__item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(245, 245, 247, 0.92);
}

.nav-mobile__backdrop,
.nav-mobile__close {
    appearance: none;
}

/* ─── Banner ─── */
.hero--banner {
    padding-top: var(--nav-h);
    background: #000;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero--banner::before {
    content: "";
    position: absolute;
    inset: auto 50% -22% auto;
    width: min(1100px, 82vw);
    aspect-ratio: 1;
    transform: translateX(50%);
    background:
        radial-gradient(circle, rgba(120, 182, 255, 0.18) 0%, rgba(120, 182, 255, 0.08) 28%, transparent 68%);
    filter: blur(56px);
    pointer-events: none;
}

.hero__banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 40px) clamp(16px, 4vw, 40px) clamp(32px, 6vw, 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--nav-h));
    gap: clamp(16px, 3vw, 28px);
    position: relative;
    z-index: 1;
}

.hero__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

.hero__logo {
    width: clamp(72px, 15vw, 96px);
    height: clamp(72px, 15vw, 96px);
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero__slogan {
    font-size: clamp(34px, 7.5vw, 56px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #f5f5f7;
}

.hero__store-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.store-badge-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    min-height: 42px;
    border-radius: 980px;
    background: #0066DD;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 102, 221, 0.30);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.store-badge:hover {
    background: #0052B3;
    box-shadow: 0 4px 16px rgba(0, 102, 221, 0.40);
}
.store-badge:active { transform: scale(0.98); }

.store-qr {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 16px);
    transform: translate(-50%, 14px) scale(0.96);
    width: 172px;
    padding: 12px 12px 10px;
    border-radius: 22px;
    background: rgba(10, 12, 18, 0.94);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 22px 48px rgba(0,0,0,0.42),
        0 10px 20px rgba(0,0,0,0.24);
    backdrop-filter: blur(20px);
    display: grid;
    gap: 8px;
    justify-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.26s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.26s ease;
}

.store-qr::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: rgba(10, 12, 18, 0.94);
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateX(-50%) rotate(45deg);
}

.store-qr img {
    width: 100%;
    max-width: 132px;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 8px;
}

.store-qr span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(245,245,247,0.86);
    text-align: center;
}

.store-badge-wrap.is-open .store-qr {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.store-badge__icon { flex-shrink: 0; opacity: 0.92; }

.store-badge__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    text-align: left;
}
.store-badge__line1 {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.03em;
    opacity: 0.82;
}
.store-badge__line2 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 1px;
}

.hero__focus {
    width: min(420px, 86vw);
    display: grid;
    justify-items: center;
    gap: 20px;
    margin-top: 8px;
    position: relative;
    isolation: isolate;
    opacity: 0;
    transform: translateY(26px);
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero__focus::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 12% -24% -6%;
    border-radius: 999px;
    background:
        radial-gradient(ellipse at 50% 48%, rgba(255,255,255,0.12) 0%, rgba(126,182,255,0.16) 34%, transparent 72%);
    filter: blur(42px);
    animation: heroGlowPulse 7.8s ease-in-out infinite;
}

.hero-carousel {
    --hero-accent-rgb: 124 188 255;
    --hero-autoplay: 5200ms;
    --hero-dot-play-state: running;
    position: relative;
    width: min(346px, 76vw, calc((100svh - 252px) / 2.08));
    aspect-ratio: 1 / 2.24;
    overflow: visible;
    perspective: 1600px;
}

.hero-carousel::before,
.hero-carousel::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-carousel::before {
    top: 13%;
    width: 88%;
    height: 52%;
    background:
        radial-gradient(circle, rgba(var(--hero-accent-rgb), 0.24) 0%, rgba(var(--hero-accent-rgb), 0.12) 34%, transparent 72%);
    filter: blur(42px);
    opacity: 0.92;
}

.hero-carousel::after {
    bottom: 3%;
    width: 76%;
    height: 11%;
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,0.18) 0%, rgba(var(--hero-accent-rgb), 0.08) 42%, transparent 75%);
    filter: blur(24px);
    opacity: 0.72;
}

.hero-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel__slide {
    position: absolute;
    inset: 0;
    padding: clamp(16px, 2vw, 20px) clamp(4px, 0.8vw, 8px) clamp(28px, 3vw, 34px);
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.94);
    filter: blur(7px) brightness(0.78) saturate(0.84);
    transition:
        opacity 0.75s ease,
        transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.hero-carousel__slide:first-child,
.hero-carousel__slide.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) brightness(1) saturate(1);
    z-index: 3;
}

.hero-carousel__slide.is-exit {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(1.035);
    filter: blur(9px) brightness(0.82) saturate(0.88);
    z-index: 2;
}

.hero-carousel__slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter:
        drop-shadow(0 40px 54px rgba(0,0,0,0.48))
        drop-shadow(0 0 24px rgba(255,255,255,0.12));
}

.hero-carousel__dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.hero-carousel__dot {
    width: 28px;
    height: 5px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, width 0.35s ease;
}

.hero-carousel__dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(var(--hero-accent-rgb), 0.92) 100%);
    transform: scaleX(0);
    transform-origin: left center;
}

.hero-carousel__dot.is-active {
    width: 42px;
    background: rgba(255,255,255,0.18);
}

.hero-carousel__dot.is-active::after {
    animation: heroDotProgress var(--hero-autoplay) linear forwards;
    animation-play-state: var(--hero-dot-play-state);
}

.hero-carousel__dot:hover {
    background: rgba(255,255,255,0.24);
}

.hero-carousel__dot:focus-visible {
    outline: 2px solid rgba(255,255,255,0.65);
    outline-offset: 4px;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlowPulse {
    0%, 100% {
        opacity: 0.72;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes heroDotProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ─── 功能区基础 ─── */
.feat {
    --feat-bg: #f7f5ef;
    --feat-ink: #131313;
    --feat-sub: rgba(19, 19, 19, 0.62);
    --feat-glow-a: rgba(255,255,255,0.96);
    --feat-glow-b: rgba(146, 192, 255, 0.20);
    padding: clamp(72px, 10vw, 120px) 0;
    margin-left: var(--section-gutter);
    margin-right: var(--section-gutter);
    margin-bottom: var(--section-gap);
    overflow: hidden;
    background: var(--feat-bg);
}

.feat__head {
    text-align: center;
    padding: 0 clamp(24px, 6vw, 48px);
}
.feat__head h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: var(--feat-ink);
}
.feat__head p {
    margin-top: 12px;
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 400;
    color: var(--feat-sub);
    line-height: 1.5;
}

.feat--wardrobe {
    margin-top: var(--section-gap);
    --feat-bg: #f8f6f1;
    --feat-ink: #151515;
    --feat-sub: rgba(21, 21, 21, 0.62);
    --feat-glow-a: rgba(255,255,255,0.98);
    --feat-glow-b: rgba(130, 172, 255, 0.18);
}

.feat--tryon {
    --feat-bg: #000;
    --feat-ink: #f5f5f7;
    --feat-sub: rgba(245,245,247,0.62);
    --feat-glow-a: rgba(129, 169, 255, 0.24);
    --feat-glow-b: rgba(86, 129, 255, 0.15);
}

.feat--recommend {
    --feat-bg: #fff;
    --feat-ink: #111111;
    --feat-sub: rgba(17, 17, 17, 0.62);
    --feat-glow-a: rgba(255,255,255,0.98);
    --feat-glow-b: rgba(189, 164, 255, 0.16);
}

.feat--matching {
    --feat-bg: #000;
    --feat-ink: #f5f5f7;
    --feat-sub: rgba(245,245,247,0.62);
    --feat-glow-a: rgba(144, 218, 190, 0.24);
    --feat-glow-b: rgba(73, 149, 118, 0.16);
}

.feat--backup {
    --feat-bg: #f7f5ef;
    --feat-ink: #121212;
    --feat-sub: rgba(18, 18, 18, 0.62);
    --feat-glow-a: rgba(255,255,255,0.98);
    --feat-glow-b: rgba(131, 214, 236, 0.18);
}

.feat__inner {
    max-width: 1200px;
    margin: clamp(40px, 6vw, 72px) auto 0;
    padding: 0 clamp(24px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.feat__inner--center {
    grid-template-columns: 1fr;
    justify-items: center;
}
.feat__inner--center .feat__media {
    width: min(390px, 86vw, calc((100svh - 180px) / 2));
    max-width: 100%;
    aspect-ratio: 1 / 2;
    height: auto;
}

.feat__media {
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.feat__media::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: min(680px, 80%);
    aspect-ratio: 1;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 48%, var(--feat-glow-a) 0%, var(--feat-glow-b) 34%, transparent 72%);
    filter: blur(28px);
}

.feat__media img {
    width: 100%; height: auto;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.60);
}

.feat__media img.phone-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    filter:
        drop-shadow(0 34px 56px rgba(0,0,0,0.56))
        drop-shadow(0 0 22px rgba(255,255,255,0.10));
}

/* ─── 下载区 ─── */
.download {
    padding: clamp(80px, 12vw, 130px) 24px;
    margin-left: var(--section-gutter);
    margin-right: var(--section-gutter);
    margin-bottom: var(--section-gap);
    overflow: hidden;
    background: #000;
    text-align: center;
}
.download__inner {
    max-width: min(920px, calc(100vw - 32px));
    margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
    padding: 0 8px;
}
.download__icon {
    width: 64px; height: 64px;
    border-radius: 16px; object-fit: cover;
}
.download__title {
    font-size: clamp(13px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #f5f5f7;
    white-space: nowrap;
    max-width: 100%;
}

.download__title .nobreak {
    white-space: nowrap;
}

/* ─── 页脚 ─── */
.foot {
    padding: 36px 24px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    color: #b7b7bc;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot a {
    color: inherit;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.foot a:hover {
    color: #f5f5f7;
}

.foot__actions,
.foot__links,
.foot__meta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot__actions {
    gap: clamp(28px, 6vw, 56px);
}

.foot__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #f5f5f7;
}

.foot__icon {
    color: #d7d7dc;
    flex-shrink: 0;
}

.foot__icon--accent {
    color: #ff3b30;
}

.foot__links {
    gap: clamp(28px, 5vw, 48px);
    font-size: 14px;
    color: #8f8f96;
}

.foot__meta {
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #d0d0d5;
}

.foot__meta a {
    color: #d0d0d5;
}

/* ─── 内容列表页（后台发布文章后自动生成） ─── */
.content-section {
    padding: calc(var(--nav-h) + 60px) clamp(24px, 6vw, 80px) 80px;
}
.content-section__inner { max-width: 1200px; margin: 0 auto; }

.content-section__head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}
.content-section__head h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.content-section__head p {
    margin-top: 10px;
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--ink-sub);
}

/* 文章卡片网格 */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(24px, 4vw, 40px);
}

.post-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition: box-shadow 0.25s, transform 0.25s;
}
.post-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}

.post-card__image-link { display: block; }
.post-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.post-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__thumb--placeholder {
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86868b;
    font-size: 13px;
}

.post-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.post-card__cats { display: flex; gap: 6px; flex-wrap: wrap; }

.post-card__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.article-cat-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--blue);
    background: rgba(41,151,255,0.08);
    padding: 2px 8px;
    border-radius: 980px;
    text-transform: uppercase;
}

.post-card__reading-time {
    font-size: 11px;
    color: #6f6f76;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.post-card__title {
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--ink);
}
.post-card__title a:hover { color: var(--blue); }

.post-card__excerpt {
    font-size: 13px;
    color: var(--ink-sub);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.post-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f0f2;
}

.post-card__date {
    font-size: 12px;
    color: var(--ink-muted);
}

.post-card__linkhint {
    font-size: 12px;
    color: var(--blue);
    letter-spacing: 0.01em;
    transition: transform 0.24s ease;
}

.post-card:hover .post-card__linkhint {
    transform: translateX(3px);
}

/* ─── 文章详情页 ─── */
.article-single {
    padding: calc(var(--nav-h) + 60px) clamp(24px, 8vw, 120px) 80px;
}
.article-single__inner {
    max-width: 720px;
    margin: 0 auto;
}

.article-single__cats {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.article-single__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 16px;
}

.article-single__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.article-single__author::before { content: '·'; margin-right: 16px; }

.article-single__reading-time {
    margin-left: auto;
    font-size: 12px;
    color: #6f6f76;
}

.article-single__thumbnail {
    margin-bottom: 36px;
    border-radius: 16px;
    overflow: hidden;
}
.article-single__thumbnail img {
    width: 100%; height: auto;
    display: block;
}

.article-single__lead {
    margin: 0 0 30px;
    padding: 16px 18px 16px 20px;
    border-left: 3px solid var(--blue);
    background: linear-gradient(90deg, rgba(41,151,255,0.08), rgba(41,151,255,0.02));
    border-radius: 0 10px 10px 0;
    color: #2b2b31;
    line-height: 1.8;
    font-size: clamp(14px, 1.45vw, 16px);
}

.article-single__content {
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.85;
    color: #1d1d1f;
}
.article-single__content p { margin-bottom: 1.5em; }
.article-single__content h2,
.article-single__content h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 2em 0 0.6em;
    color: var(--ink);
}
.article-single__content h2 { font-size: 1.5em; }
.article-single__content h3 { font-size: 1.2em; }
.article-single__content h2 {
    padding-left: 12px;
    border-left: 3px solid rgba(41,151,255,0.45);
}
.article-single__content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 2em auto;
}
.article-single__content a { color: var(--blue); }
.article-single__content a:hover { text-decoration: underline; }
.article-single__content ul,
.article-single__content ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.article-single__content li { margin-bottom: 0.4em; }
.article-single__content blockquote {
    margin: 2em 0;
    padding: 14px 18px;
    border-left: 3px solid #d7d7db;
    background: #f7f7f9;
    border-radius: 0 10px 10px 0;
    color: #3d3d44;
}

.article-single__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.article-tag {
    font-size: 12px;
    color: var(--ink-sub);
    background: #f5f5f7;
    padding: 4px 12px;
    border-radius: 980px;
}

/* 回到列表 */
.back-to-list {
    max-width: 720px;
    margin: 0 auto 60px;
    padding: 0 clamp(24px, 8vw, 120px);
}
.back-to-list a {
    font-size: 14px;
    color: var(--blue);
}
.back-to-list a:hover { text-decoration: underline; }

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: clamp(40px, 6vw, 64px);
    flex-wrap: wrap;
}
.pagination .page-numbers {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--ink);
    background: #f5f5f7;
    transition: background 0.2s, color 0.2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--blue);
    color: #fff;
}

/* 无内容占位 */
.no-content {
    text-align: center;
    padding: 80px 0;
    color: var(--ink-muted);
    font-size: 15px;
}

/* ─── 编辑风格内容页 ─── */
.editorial-archive,
.editorial-single {
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + 26px) clamp(20px, 5vw, 64px) 88px;
    background:
        radial-gradient(circle at top left, rgba(41, 151, 255, 0.08), transparent 34%),
        radial-gradient(circle at right center, rgba(255, 214, 170, 0.10), transparent 28%),
        #fbfbfc;
}

.editorial-archive--news {
    background:
        radial-gradient(circle at top left, rgba(17, 17, 17, 0.08), transparent 30%),
        radial-gradient(circle at right top, rgba(41, 151, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #fcfcfd 0%, #f7f8fb 100%);
}

.editorial-archive--reco {
    background:
        radial-gradient(circle at top left, rgba(138, 91, 47, 0.10), transparent 30%),
        radial-gradient(circle at right top, rgba(255, 223, 200, 0.18), transparent 32%),
        linear-gradient(180deg, #fffaf5 0%, #f7f3ec 100%);
}

.editorial-archive--columns {
    background:
        radial-gradient(circle at top left, rgba(47, 58, 74, 0.10), transparent 30%),
        radial-gradient(circle at right top, rgba(41, 151, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #fcfcfd 0%, #f3f5f8 100%);
}

.editorial-archive__inner,
.editorial-single__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.editorial-archive__hero,
.editorial-single__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: stretch;
    min-height: calc(100svh - var(--nav-h) - 72px);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.72s ease,
        transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.editorial-archive__hero-copy,
.editorial-single__hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    padding: clamp(8px, 1vw, 16px) 0;
}

.editorial-archive__eyebrow,
.editorial-single__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--archive-accent, var(--blue));
    margin-bottom: 16px;
}

.editorial-archive__title,
.editorial-single__title {
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
    color: var(--ink);
}

.editorial-archive__lead,
.editorial-single__lead {
    margin-top: 20px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
    color: var(--ink-sub);
    max-width: 42ch;
}

.editorial-archive__detail {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--ink-muted);
    max-width: 52ch;
}

.editorial-archive__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.editorial-archive__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 980px;
    border: 1px solid rgba(29, 29, 31, 0.12);
    background: rgba(255, 255, 255, 0.65);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.editorial-archive__button:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 29, 31, 0.18);
}

.editorial-archive__button--primary {
    background: var(--archive-accent, var(--blue));
    color: #fff;
    border-color: transparent;
}

.editorial-archive__meta,
.editorial-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.editorial-archive__hero-media,
.editorial-single__hero-media {
    position: sticky;
    top: calc(var(--nav-h) + 18px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.18);
}

.editorial-archive__hero-frame,
.editorial-single__hero-media > img,
.editorial-single__hero-media .wp-post-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.editorial-archive__hero-frame img,
.editorial-single__hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-archive__hero-media:hover .editorial-archive__hero-frame img,
.editorial-single__hero-media:hover img {
    transform: scale(1.04);
}

.editorial-archive__hero-media::after,
.editorial-single__hero-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 52%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
    pointer-events: none;
}

.editorial-archive__hero-caption {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    color: #fff;
}

.editorial-archive__hero-caption-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.editorial-archive__hero-kicker,
.editorial-single__section-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.editorial-archive__hero-title {
    font-size: clamp(24px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #fff;
}

.editorial-archive__hero-summary {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    max-width: 40ch;
}

.editorial-archive__hero-media--empty,
.editorial-single__placeholder,
.editorial-archive__placeholder {
    display: grid;
    place-items: center;
    min-height: 420px;
    color: rgba(255, 255, 255, 0.72);
    background: linear-gradient(145deg, #0f1012, #2c2f36);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.editorial-archive__body,
.editorial-single__gallery {
    margin-top: clamp(28px, 5vw, 48px);
    padding-top: clamp(22px, 4vw, 34px);
    border-top: 1px solid var(--line);
}

.editorial-archive__section-head,
.editorial-single__section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 22px;
}

.editorial-archive__section-head h2,
.editorial-single__section-head h2 {
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.editorial-archive__section-head p,
.editorial-single__section-head p {
    max-width: 40ch;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.7;
}

.editorial-stream {
    display: grid;
}

.editorial-stream__item {
    display: grid;
    grid-template-columns: 48px minmax(240px, 360px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.editorial-stream__item:last-child {
    border-bottom: 1px solid var(--line);
}

.editorial-stream__index {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--ink-muted);
    padding-top: 4px;
}

.editorial-stream__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    background: #f5f5f7;
}

.editorial-stream__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-stream__item:hover .editorial-stream__media img {
    transform: scale(1.04);
}

.editorial-archive--title-only .editorial-stream__content {
    justify-content: center;
    min-height: 100%;
}

.editorial-stream__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.editorial-stream__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.editorial-stream__title {
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.editorial-stream__title a:hover {
    color: var(--archive-accent, var(--blue));
}

.editorial-stream__excerpt {
    max-width: 58ch;
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink-sub);
}

.editorial-stream__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.editorial-archive__empty-note {
    padding: 28px 0;
    color: var(--ink-muted);
}

.editorial-single__body {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) 280px;
    gap: clamp(28px, 5vw, 48px);
    margin-top: clamp(28px, 5vw, 44px);
}

.editorial-single__content {
    min-width: 0;
}

.editorial-single__aside {
    position: sticky;
    top: calc(var(--nav-h) + 18px);
    align-self: start;
    display: grid;
    gap: 14px;
}

.editorial-single__aside-block {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
}

.editorial-single__aside-block span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.editorial-single__aside-block strong {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink);
    word-break: break-word;
}

.editorial-single__hero-media {
    min-height: 540px;
}

.editorial-single__hero-media .wp-post-image {
    object-fit: cover;
}

.editorial-single__lead {
    max-width: 46ch;
}

.editorial-single__gallery {
    padding-top: 28px;
}

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

.editorial-gallery__item {
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    background: #f5f5f7;
}

.editorial-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-gallery__item:hover img {
    transform: scale(1.04);
}

.editorial-archive__placeholder--compact {
    min-height: 100%;
    font-size: 12px;
}

.editorial-archive__placeholder {
    text-align: center;
    padding: 24px;
    min-height: 420px;
}

.editorial-single__placeholder {
    min-height: 540px;
    text-align: center;
    padding: 24px;
}

.editorial-archive__hero-media--empty .editorial-archive__placeholder {
    min-height: 100%;
}

.editorial-single + .back-to-list,
.editorial-archive + .back-to-list {
    max-width: 1320px;
    margin: 0 auto 64px;
    padding: 0 clamp(20px, 5vw, 64px);
}

/* ─── 穿搭推荐：极简编辑页 ─── */
.editorial-reco,
.editorial-reco-single {
    background: linear-gradient(180deg, #f7f4ef 0%, #fbf9f5 100%);
}

.editorial-reco .article-cat-tag,
.editorial-reco-single .article-cat-tag {
    color: #6d563f;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: 0;
    letter-spacing: 0.16em;
}

.editorial-reco__inner,
.editorial-reco-single__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px) 88px;
}

.editorial-reco-feature__eyebrow,
.editorial-reco-single__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(109, 86, 63, 0.82);
}

.editorial-reco__title,
.editorial-reco-single__title {
    margin-top: 16px;
    font-family: var(--font-serif);
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: #1f1a16;
}

.editorial-reco__lead,
.editorial-reco-single__lead {
    margin-top: 20px;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.72;
    color: rgba(31, 26, 22, 0.72);
}

.editorial-reco__hero-meta,
.editorial-reco-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 24px;
    color: rgba(31, 26, 22, 0.48);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.editorial-reco__placeholder {
    display: grid;
    place-items: center;
    min-height: 520px;
    color: rgba(31, 26, 22, 0.42);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.editorial-reco-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: end;
    padding: 44px 0 56px;
    border-bottom: 1px solid rgba(31, 26, 22, 0.12);
}

.editorial-reco-feature--hero {
    align-items: center;
    padding-top: calc(var(--nav-h) + 36px);
}

.editorial-reco-feature__content {
    max-width: 34rem;
}

.editorial-reco-feature__eyebrow + .editorial-reco-entry__tags {
    margin-top: 14px;
}

.editorial-reco-feature__title {
    margin-top: 12px;
    font-family: var(--font-serif);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #1f1a16;
}

.editorial-reco-feature__title a:hover {
    color: #6d563f;
}

.editorial-reco-feature__summary {
    max-width: 34ch;
    margin-top: 14px;
    color: rgba(31, 26, 22, 0.64);
    font-size: 15px;
    line-height: 1.9;
}

.editorial-reco-feature__media {
    display: block;
    overflow: hidden;
    background: #ece4d8;
    aspect-ratio: 4 / 5;
}

.editorial-reco-feature__media-wrap {
    min-width: 0;
}

.editorial-reco-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-reco-feature__media:hover img {
    transform: scale(1.02);
}

.editorial-reco-feature__media--carousel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-carousel--reco {
    --hero-accent-rgb: 173 134 92;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    perspective: none;
    background: #ece4d8;
}

.hero-carousel--reco::before,
.hero-carousel--reco::after {
    display: none;
}

.hero-carousel--reco .hero-carousel__slide {
    padding: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(3px) brightness(0.92);
}

.hero-carousel--reco .hero-carousel__slide:first-child,
.hero-carousel--reco .hero-carousel__slide.is-active {
    transform: translate3d(0, 0, 0);
    filter: blur(0) brightness(1);
}

.hero-carousel--reco .hero-carousel__slide.is-exit {
    transform: translate3d(0, -12px, 0);
    filter: blur(4px) brightness(0.94);
}

.hero-carousel--reco .hero-carousel__slide img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    filter: none;
}

.editorial-reco-feature__dots {
    justify-content: flex-start;
}

.hero-carousel--reco + .editorial-reco-feature__dots .hero-carousel__dot {
    background: rgba(31, 26, 22, 0.12);
}

.hero-carousel--reco + .editorial-reco-feature__dots .hero-carousel__dot.is-active {
    background: rgba(31, 26, 22, 0.18);
}

.hero-carousel--reco + .editorial-reco-feature__dots .hero-carousel__dot::after {
    background: linear-gradient(90deg, rgba(31,26,22,0.96) 0%, rgba(138,91,47,0.88) 100%);
}

.editorial-image-carousel {
    position: relative;
    width: 100%;
    min-width: 0;
}

.editorial-image-carousel__viewport {
    --hero-accent-rgb: 29 29 31;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: inherit;
    overflow: hidden;
    perspective: none;
    background: #f5f5f7;
}

.editorial-image-carousel__viewport::before,
.editorial-image-carousel__viewport::after {
    display: none;
}

.editorial-image-carousel__viewport .hero-carousel__slide {
    padding: 0;
    transform: translate3d(0, 14px, 0) scale(1.01);
    filter: blur(3px) brightness(0.94);
}

.editorial-image-carousel__viewport .hero-carousel__slide:first-child,
.editorial-image-carousel__viewport .hero-carousel__slide.is-active {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) brightness(1);
}

.editorial-image-carousel__viewport .hero-carousel__slide.is-exit {
    transform: translate3d(0, -10px, 0) scale(1.02);
    filter: blur(4px) brightness(0.96);
}

.editorial-image-carousel__viewport .hero-carousel__slide img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    filter: none;
}

.editorial-image-carousel__dots {
    margin-top: 12px;
}

.editorial-image-carousel__dots .hero-carousel__dot {
    background: rgba(29, 29, 31, 0.12);
}

.editorial-image-carousel__dots .hero-carousel__dot.is-active {
    background: rgba(29, 29, 31, 0.18);
}

.editorial-image-carousel__dots .hero-carousel__dot::after {
    background: linear-gradient(90deg, rgba(29,29,31,0.94) 0%, rgba(41,151,255,0.86) 100%);
}

.editorial-image-carousel--hero,
.editorial-image-carousel--single-cover {
    height: 100%;
}

.editorial-image-carousel--single-cover .editorial-image-carousel__viewport {
    aspect-ratio: 4 / 5;
    height: auto;
}

.editorial-image-carousel--hero .editorial-image-carousel__dots,
.editorial-image-carousel--single-cover .editorial-image-carousel__dots {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: 20px;
    justify-content: flex-start;
    margin-top: 0;
}

.editorial-archive__hero-frame .editorial-image-carousel,
.editorial-single__hero-media .editorial-image-carousel--single-cover,
.editorial-stream__media .editorial-image-carousel,
.editorial-reco-entry__media .editorial-image-carousel {
    position: absolute;
    inset: 0;
    height: auto;
}

.editorial-archive__hero-frame .editorial-image-carousel__viewport {
    height: 100%;
}

.editorial-single__hero-media .editorial-image-carousel--single-cover .editorial-image-carousel__viewport,
.editorial-stream__media .editorial-image-carousel__viewport,
.editorial-reco-entry__media .editorial-image-carousel__viewport {
    height: 100%;
}

.editorial-archive__hero-frame .editorial-image-carousel__dots {
    bottom: 18px;
}

.editorial-image-carousel--inline {
    margin: 2.2em 0;
}

.editorial-image-carousel--inline .editorial-image-carousel__viewport {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    background: #f5f5f7;
}

.editorial-reco__list {
    padding-top: 24px;
}

.editorial-reco__list-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(31, 26, 22, 0.12);
}

.editorial-reco__list-head span {
    color: rgba(109, 86, 63, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.editorial-reco__list-head p {
    color: rgba(31, 26, 22, 0.52);
    font-size: 13px;
}

.editorial-reco-entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: clamp(22px, 4vw, 36px);
    align-items: center;
    padding: clamp(24px, 4vw, 34px) 0;
    border-bottom: 1px solid rgba(31, 26, 22, 0.12);
}

.editorial-reco-entry__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #ece4d8;
    aspect-ratio: 4 / 5;
}

.editorial-reco-entry__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-reco-entry:hover .editorial-reco-entry__media img {
    transform: scale(1.03);
}

.editorial-reco__placeholder--compact {
    min-height: 100%;
}

.editorial-reco-entry__content {
    min-width: 0;
    max-width: 42rem;
}

.editorial-reco-entry__tags,
.editorial-reco-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.editorial-reco-entry__title {
    margin-top: 10px;
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: #1f1a16;
}

.editorial-reco-entry__title a:hover {
    color: #6d563f;
}

.editorial-reco-entry__excerpt {
    max-width: 34ch;
    margin-top: 14px;
    color: rgba(31, 26, 22, 0.64);
    font-size: 15px;
    line-height: 1.9;
}

.editorial-reco-entry__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 18px;
    color: rgba(31, 26, 22, 0.48);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.editorial-reco-entry__meta a {
    color: #1f1a16;
}

.editorial-reco-entry__meta a:hover {
    color: #6d563f;
}

.editorial-reco .pagination {
    margin-top: 28px;
}

.editorial-reco-single__header {
    max-width: 860px;
    padding-top: calc(var(--nav-h) + 56px);
}

.editorial-reco-single__tags {
    margin-top: 18px;
}

.editorial-reco-single__cover {
    margin-top: 36px;
    overflow: hidden;
    background: #ece4d8;
}

.editorial-reco-single__cover img,
.editorial-reco-single__cover .wp-post-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.editorial-reco-single__body {
    max-width: 760px;
    margin: 0 auto;
    padding-top: 56px;
}

.editorial-reco-single__content {
    min-width: 0;
}

.editorial-reco-single .article-single__content {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.95;
    color: #2c241d;
}

.editorial-reco-single .article-single__content h2,
.editorial-reco-single .article-single__content h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: #1f1a16;
}

.editorial-reco-single .article-single__content h2 {
    padding-left: 0;
    border-left: 0;
    font-size: clamp(28px, 3vw, 38px);
}

.editorial-reco-single .article-single__content blockquote {
    background: transparent;
    border-left: 1px solid rgba(109, 86, 63, 0.24);
    color: rgba(44, 36, 29, 0.82);
}

.editorial-reco-single .article-single__content a {
    color: #6d563f;
}

.editorial-reco-single__gallery {
    padding-top: 72px;
}

.editorial-reco-single__section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px 24px;
    margin-bottom: 22px;
}

.editorial-reco-single__section-head span {
    color: rgba(109, 86, 63, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.editorial-reco-single__section-head h2 {
    margin-top: 10px;
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #1f1a16;
}

.editorial-reco-single__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.editorial-reco-single__gallery-item {
    display: block;
    background: #ece4d8;
}

.editorial-reco-single__gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.editorial-reco-single__back {
    padding-top: 48px;
}

.editorial-reco-single__back a {
    color: #1f1a16;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ─── 响应式 ─── */
@media (max-width: 768px) {
    :root { --nav-h: 48px; }
    .nav {
        padding: 0 16px;
        gap: 10px;
    }
    .nav-left {
        min-width: 0;
    }
    .nav-mobile-brand {
        display: flex;
    }
    .nav-mobile-brand img {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }
    .nav-center { display: none; }
    .nav-right {
        margin-left: auto;
        gap: 10px;
    }
    .nav-cta { font-size: 13px; padding: 7px 14px; }
    .nav-download__panel { width: min(282px, calc(100vw - 20px)); }
    .nav-download__grid { gap: 8px; }
    .nav-download__item img { width: 82px; }
    .nav-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    }
    .nav-mobile-toggle > span:not(.screen-reader-text) {
        display: block;
        width: 16px;
        height: 1.5px;
        border-radius: 999px;
        background: #1d1d1f;
        transition: transform 0.22s ease, opacity 0.18s ease;
    }
    .nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }
    .nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    .nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }
    .nav-mobile {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 190;
        pointer-events: none;
    }
    .nav-mobile.is-open {
        pointer-events: auto;
    }
    .nav-mobile__backdrop {
        position: fixed;
        inset: var(--nav-h) 0 0;
        background: rgba(11, 15, 22, 0.26);
        opacity: 0;
        transition: opacity 0.24s ease;
    }
    .nav-mobile__panel {
        position: fixed;
        top: calc(var(--nav-h) + 10px);
        left: 12px;
        right: 12px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 28px 56px rgba(15, 23, 42, 0.16);
        backdrop-filter: blur(18px);
        opacity: 0;
        transform: translateY(-12px) scale(0.98);
        transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
        max-height: calc(100svh - var(--nav-h) - 22px);
        overflow: auto;
    }
    .nav-mobile.is-open .nav-mobile__backdrop {
        opacity: 1;
    }
    .nav-mobile.is-open .nav-mobile__panel {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .nav-mobile__panel-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
    }
    .nav-mobile__panel-copy {
        display: grid;
        gap: 4px;
    }
    .nav-mobile__panel-copy strong {
        font-size: 16px;
        line-height: 1.35;
        color: #1d1d1f;
    }
    .nav-mobile__eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: rgba(29, 29, 31, 0.45);
    }
    .nav-mobile__close {
        flex-shrink: 0;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(41, 151, 255, 0.1);
        color: #0077ed;
        font-size: 13px;
        font-weight: 600;
    }
    .nav-mobile-menu {
        list-style: none;
        display: grid;
        gap: 10px;
    }
    .nav-mobile-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 52px;
        padding: 14px 16px;
        border-radius: 18px;
        background: #f5f7fb;
        color: #1d1d1f;
        font-size: 15px;
        font-weight: 600;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    }
    .nav-mobile-menu .current-menu-item > a {
        background: rgba(41, 151, 255, 0.12);
        color: #0077ed;
        box-shadow: inset 0 0 0 1px rgba(41, 151, 255, 0.12);
    }

    .hero__banner {
        padding: 16px 16px clamp(24px, 5vw, 48px);
        gap: 14px;
    }
    .hero__focus { gap: 14px; }
    .hero-carousel {
        width: min(236px, 60vw);
        aspect-ratio: 1 / 2.22;
    }
    .store-badge { padding: 6px 14px 6px 12px; min-height: 40px; }
    .store-qr { display: none; }
    .store-badge__line2 { font-size: 13px; }

    .feat { padding: 52px 0; margin-left: 4px; margin-right: 4px; }
    .feat__inner { grid-template-columns: 1fr; gap: 28px; }
    .feat__inner--center .feat__media {
        width: min(390px, 86vw);
        height: min(760px, calc(100svh - 112px));
    }
    .feat__media img { border-radius: 14px; }
    .feat__media img.phone-shot {
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-position: center;
    }

    .foot {
        padding: 32px 20px 40px;
        gap: 24px;
    }
    .foot__actions,
    .foot__links {
        flex-wrap: wrap;
        gap: 18px 28px;
    }
    .foot__action,
    .foot__links {
        font-size: 14px;
    }
    .foot__meta {
        font-size: 12px;
        line-height: 1.8;
        text-align: center;
    }

    .post-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .post-card__body { padding: 14px 16px 16px; }
    .post-card__title { font-size: 14px; }
    .post-card__meta-row { align-items: flex-start; }
    .article-single__reading-time { margin-left: 0; }
    .article-single__lead {
        margin-bottom: 24px;
        padding: 14px 14px 14px 16px;
    }

    .editorial-archive,
    .editorial-single {
        padding: calc(var(--nav-h) + 18px) 16px 64px;
    }

    .editorial-archive__hero,
    .editorial-single__hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .editorial-archive__hero-media,
    .editorial-single__hero-media,
    .editorial-archive__hero-media--empty,
    .editorial-archive__placeholder,
    .editorial-single__placeholder {
        position: relative;
        top: auto;
        min-height: 360px;
    }

    .editorial-archive__title,
    .editorial-single__title {
        font-size: clamp(34px, 12vw, 56px);
    }

    .editorial-stream__item,
    .editorial-single__body {
        grid-template-columns: 1fr;
    }

    .editorial-stream__item {
        gap: 16px;
    }

    .editorial-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .editorial-archive__section-head,
    .editorial-single__section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .editorial-single__aside {
        position: relative;
        top: auto;
    }

    .editorial-reco-feature,
    .editorial-reco-entry {
        grid-template-columns: 1fr;
    }

    .editorial-reco__inner,
    .editorial-reco-single__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .editorial-reco-single__title {
        font-size: clamp(36px, 13vw, 56px);
    }

    .editorial-reco__lead,
    .editorial-reco-single__lead {
        max-width: none;
    }

    .editorial-reco-feature {
        gap: 18px;
        padding: 32px 0 40px;
    }

    .editorial-reco-feature--hero {
        padding-top: calc(var(--nav-h) + 20px);
    }

    .editorial-reco-feature__media,
    .editorial-reco-entry__media {
        max-width: min(240px, 56vw);
    }

    .editorial-reco-feature--hero .editorial-reco-feature__media {
        max-width: none;
    }

    .editorial-reco-feature__media--carousel {
        gap: 12px;
    }

    .hero-carousel--reco {
        width: 100%;
        max-width: none;
    }

    .editorial-reco-entry {
        gap: 18px;
    }

    .editorial-reco-single__header {
        padding-top: calc(var(--nav-h) + 32px);
    }

    .editorial-reco-single__cover img,
    .editorial-reco-single__cover .wp-post-image,
    .editorial-reco__placeholder {
        min-height: 0;
        height: auto;
    }

    .editorial-reco-single__body {
        padding-top: 40px;
    }

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

@media (max-width: 480px) {
    .post-grid { grid-template-columns: 1fr; }
    .editorial-gallery {
        grid-template-columns: 1fr;
    }

    .editorial-reco__hero-meta,
    .editorial-reco-single__meta {
        gap: 10px;
    }

    .editorial-reco__list-head,
    .editorial-reco-single__section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .editorial-reco-single__gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__intro,
    .hero__store-row,
    .hero__focus,
    .hero__focus::before,
    .hero-carousel__dot.is-active::after {
        animation: none;
    }

    .hero-carousel__slide,
    .hero-carousel__slide img,
    .hero-carousel__dot,
    .hero-carousel::before,
    .hero-carousel::after {
        transition: none;
    }
}
