/* =====================================================================
   JUVENATE 俊泰 · 品牌官网设计系统
   设计语言：高端 / 克制 / 留白充足 / 医疗美学质感
   配色：深墨绿（主）+ 米金（点缀）+ 暖米白（背景）
   ===================================================================== */

/* ---------- 1. 设计令牌（Design Tokens） ---------- */
:root {
  /* 品牌色板（墨绿 + 米金） */
  --c-ink:        #20391c;   /* 主色 · 深墨绿（标题/主按钮） */
  --c-ink-soft:   #3a5240;   /* 次级绿（次要文字/eyebrow） */
  --c-ink-2:      #338d67;   /* 辅助绿（色卡矩阵 Forest Green） */
  --c-green-1:    #edfaf7;   /* 最浅薄荷 */
  --c-green-2:    #d1dad3;   /* 浅灰绿 */
  --c-green-3:    #a3b4a7;   /* 中浅灰绿 */
  --c-green-4:    #66a98d;   /* 中绿 */
  --c-green-5:    #338d67;   /* 森林绿（已并入 c-ink-2） */
  --c-green-6:    #47694e;   /* 深森林绿 */
  --c-green-7:    #0a2f17;   /* 最深墨绿（主色备选） */
  --c-accent:     #c2a878;   /* 米金 · 点缀/链接（已调深以保证浅底可读） */
  --c-accent-soft:#d9d4c5;   /* 品牌米白 · 浅色点缀/填充 */
  --c-bg:         #ffffff;   /* 纯白背景 */
  --c-bg-soft:    #efeee9;   /* 暖米白背景（品牌背景色） */
  --c-bg-dark:    #20391c;   /* 深色区块（深墨绿） */
  --c-text:       #2e3330;   /* 正文 */
  --c-text-soft:  #6f7468;   /* 次要文字 */
  --c-line:       #e3e0d6;   /* 分隔线 */

  /* 字体 */
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
               -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Songti SC", "STSong", Georgia, "Times New Roman", serif;
  --font-en: "Helvetica Neue", Arial, sans-serif;

  /* 字号阶梯 */
  --fs-display: clamp(2.6rem, 6vw, 4.5rem);
  --fs-h1:      clamp(2rem, 4vw, 3rem);
  --fs-h2:      clamp(1.6rem, 3vw, 2.2rem);
  --fs-h3:      1.25rem;
  --fs-body:    1rem;
  --fs-small:   0.875rem;

  /* 间距系统（8px 基准） */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 96px; --sp-8: 128px;

  /* 圆角 / 阴影 / 过渡 */
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 12px rgba(20, 32, 43, 0.06);
  --shadow-md: 0 12px 40px rgba(20, 32, 43, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.4s var(--ease);

  /* 布局 */
  --container: 1200px;
  --container-narrow: 820px;
  --header-h: 72px;
}

/* ---------- 2. 基础重置 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: var(--header-h); /* 让出固定头部高度 */
}

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

/* ---------- 3. 布局工具 ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-7); }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-bg-dark); color: #fff; }

/* ---------- 4. 排版 ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.25; color: var(--c-ink); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-en);
  font-size: var(--fs-small);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: var(--sp-2);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--c-accent-soft); }
.section-title { font-size: var(--fs-h2); margin-bottom: var(--sp-3); }
.section-lead {
  color: var(--c-text-soft);
  max-width: 60ch;
  margin-bottom: var(--sp-5);
}
.section--dark .section-lead { color: rgba(255,255,255,0.7); }

.text-en { font-family: var(--font-en); letter-spacing: 0.05em; }

/* ---------- 5. 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: 14px 30px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: var(--t-fast);
  white-space: nowrap;
}
.btn--primary { background: var(--c-ink); color: var(--c-bg-soft); }
.btn--primary:hover { background: var(--c-ink-2); transform: translateY(-2px); }
.btn--outline { border: 1px solid currentColor; color: var(--c-ink); }
.btn--outline:hover { background: var(--c-ink); color: #fff; }
.section--dark .btn--outline { color: #fff; }
.section--dark .btn--outline:hover { background: #fff; color: var(--c-ink); }
.btn--ghost { color: var(--c-ink); padding-inline: 0; }
.btn--ghost::after { content: "→"; transition: var(--t-fast); }
.btn--ghost:hover::after { transform: translateX(4px); }

/* ---------- 6. 卡片 ---------- */
.card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  transition: var(--t-base);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* 栅格 */
.grid { display: grid; gap: var(--sp-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 7. 占位图块（素材到位后替换） ---------- */
.media {
  background: linear-gradient(135deg, #e9e4da 0%, #d8d0c2 100%);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.media::after {
  content: "图片占位 · 待替换";
  font-size: var(--fs-small);
  color: var(--c-text-soft);
  letter-spacing: 0.1em;
}
.media[style*="background-image"]::after { content: none; }  /* 已有真实图时隐藏占位文字 */
.media--tall { min-height: 420px; }
.media--dark { background: linear-gradient(135deg, #1c2a35 0%, #0e1820 100%); }
.media--dark::after { color: rgba(255,255,255,0.45); }

.brand-order-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-bg-soft);
  box-shadow: var(--shadow-sm);
}
.brand-order-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-order-copy .section-title { margin-bottom: 20px; }
.brand-order-copy .section-lead { margin-bottom: 20px; }
.brand-order-copy > p:not(.section-lead):not(.brand-order-actions) { line-height: 1.9; }
.brand-order-actions { margin-top: 28px; margin-bottom: 24px; }

.about-intro-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-bg-soft);
  box-shadow: var(--shadow-sm);
}
.about-intro-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.about-philosophy-visual {
  background: #fff;
}
.about-philosophy-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.about-doctor-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-bg-soft);
  box-shadow: var(--shadow-sm);
}
.about-doctor-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- 8. 导航（由 JS 注入） ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
  z-index: 100; transition: var(--t-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--sp-3); display: flex; align-items: center;
  justify-content: space-between; }
.brand { display: block; position: relative; width: 190px; height: 48px; overflow: hidden; flex: 0 0 190px; }
.brand__logo { position: absolute; left: 0; top: -21px; width: 190px; height: auto; display: block; }
.brand__en { font-family: var(--font-en); font-weight: 700; font-size: 1.2rem;
  letter-spacing: 0.12em; color: var(--c-ink); }
.brand__cn { font-size: 0.9rem; color: var(--c-ink-soft); letter-spacing: 0.2em; }
.nav__links { display: flex; gap: var(--sp-4); align-items: center; }
.nav__link { font-size: var(--fs-small); color: var(--c-ink-soft);
  position: relative; transition: var(--t-fast); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--c-accent); transition: var(--t-fast); }
.nav__link:hover, .nav__link.is-active { color: var(--c-ink); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__toggle { display: none; width: 28px; height: 20px; position: relative; }
.nav__toggle span { position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--c-ink); transition: var(--t-fast); }
.nav__toggle span:nth-child(1){ top: 0; }
.nav__toggle span:nth-child(2){ top: 9px; }
.nav__toggle span:nth-child(3){ top: 18px; }
.nav__toggle.is-open span:nth-child(1){ top: 9px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2){ opacity: 0; }
.nav__toggle.is-open span:nth-child(3){ top: 9px; transform: rotate(-45deg); }

/* ---------- 9. 页脚（由 JS 注入） ---------- */
.site-footer { background: var(--c-bg-dark); color: rgba(255,255,255,0.7);
  padding-block: var(--sp-6) var(--sp-4); font-size: var(--fs-small); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1.2fr 1fr; gap: var(--sp-4); }
.footer__title { color: #fff; font-weight: 600; margin-bottom: var(--sp-2); }
.footer__brand .brand__en { color: #fff; }
.footer__brand .brand__cn { display: block; margin-top: 4px; color: var(--c-accent); }
.footer a:hover { color: var(--c-accent); }
.footer__bottom { margin-top: var(--sp-5); padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-2); }

/* ---------- 首页 Hero 背景 ---------- */
.hero__bg {
  position: absolute; inset: 0; z-index: 1;
  background-image: url('https://wstest.juvenate.cn/jtweb/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero .btn--primary { background: var(--c-bg-soft); color: var(--c-ink); }
.hero .btn--primary:hover { background: #fff; color: var(--c-ink); }

/* 特色诊疗项目行 */
.treat { display: grid; grid-template-columns: 300px 1fr; gap: var(--sp-4); align-items: center; }
.treat .media { min-height: 220px; }
@media (max-width: 720px) {
  .treat { grid-template-columns: 1fr; }
  .treat .media { min-height: 200px; }
}

/* 首页 精·衡·信 入口卡片 */
.jhx-home-card { position: relative; overflow: hidden; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 0 !important;
  border-radius: var(--radius-lg); transition: var(--t-base); }
.jhx-home-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
/* 卡片背景层 */
.jhx-home-card .jhx-home-card__bg { position: absolute; inset: 0; border-radius: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: grayscale(1) brightness(1.15) contrast(0.9); }
.jhx-home-card__overlay { position: relative; z-index: 2; padding: var(--sp-4);
  background: linear-gradient(to top, rgba(32,57,28,0.68) 0%, rgba(32,57,28,0.18) 50%, rgba(32,57,28,0.08) 100%);
  text-align: center; }
.jhx-home-card__word { position: relative; height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-3); }
.jhx-home-card__en { font-family: var(--font-en); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; letter-spacing: 0.12em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.55); }
.jhx-home-card__char { position: absolute; font-size: clamp(3rem, 7vw, 4rem); font-weight: 700; color: #fff; }

/* 精·衡·信 二级页 Hero */
.value-hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.value-hero__bg { position: absolute; inset: 0; z-index: 1; border-radius: 0; min-height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--c-ink) !important;
  background-blend-mode: multiply; }
.value-hero__bg::after { content: ""; position: absolute; inset: 0; background: rgba(32,57,28,0.48); }
.value-hero__text { position: relative; z-index: 2; text-align: center; }
.value-hero__en { font-family: var(--font-en); font-size: clamp(2.8rem, 10vw, 7rem); font-weight: 700; letter-spacing: 0.12em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.55); }
.value-hero__char { font-size: clamp(4.5rem, 14vw, 10rem); font-weight: 700; color: #fff; line-height: 1; margin-top: -0.35em; }
.value-back { position: absolute; top: calc(var(--header-h) + 16px); left: var(--sp-3); z-index: 3; color: rgba(255,255,255,0.9); font-size: var(--fs-small); }
.value-back:hover { color: #fff; }
.value-logo { width: 44px; height: 44px; border: 1px solid var(--c-ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--c-ink); margin-top: var(--sp-3); }


/* ---------- 内页横幅（Page Hero） ---------- */
.page-hero {
  background: var(--c-bg-dark); color: #fff;
  padding-block: var(--sp-7) var(--sp-6);
  position: relative; overflow: hidden;
}
.page-hero .eyebrow { color: var(--c-accent-soft); }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 56ch; margin-top: var(--sp-2); }
.page-hero__media {
  position: absolute; inset: 0; opacity: 0.4; border-radius: 0; z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }

.about-hero__media {
  background-size: cover;
  background-position: center;
  background-color: rgba(32,57,28,0.72);
  background-blend-mode: multiply;
  opacity: 1;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(10,47,23,0.84) 0%, rgba(32,57,28,0.60) 52%, rgba(32,57,28,0.74) 100%);
  pointer-events: none;
}
.about-hero .container { z-index: 1; }

/* 浅色 Hero 变体（写在后，确保优先级高于基类） */
.page-hero--light { background: var(--c-bg-soft); color: var(--c-ink); }
.page-hero--light .page-hero__media {
  background-size: cover; background-position: center top;
  background-color: var(--c-bg-soft);
}
.page-hero--light::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(239,238,233,0.08) 0%, rgba(239,238,233,0.30) 50%, rgba(239,238,233,0.80) 100%);
}
.page-hero--light .container { position: relative; z-index: 2; }
.page-hero--light h1 { color: var(--c-ink); }
.page-hero--light .eyebrow { color: var(--c-accent); }
.page-hero--light .breadcrumb { color: var(--c-text-soft); }
.page-hero--light .breadcrumb a { color: var(--c-text-soft); }
.page-hero--light .breadcrumb a:hover { color: var(--c-ink); }

/* 面包屑 */
.breadcrumb { font-size: var(--fs-small); color: var(--c-text-soft); margin-bottom: var(--sp-2); }
.breadcrumb a:hover { color: var(--c-accent); }

/* 表单 */
.form { display: grid; gap: var(--sp-3); max-width: 560px; }
.form__row { display: grid; gap: 6px; }
.form label { font-size: var(--fs-small); color: var(--c-ink); font-weight: 600; }
.form input, .form textarea, .form select {
  font-family: inherit; font-size: var(--fs-body);
  padding: 12px 14px; border: 1px solid var(--c-line);
  border-radius: var(--radius); background: #fff; transition: var(--t-fast);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(194,168,120,0.18);
}
.form textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: var(--fs-small); color: var(--c-text-soft); }

/* ---------- 10. 入场动画 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: var(--t-base); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 11. 响应式 ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: var(--sp-3);
    background: #fff; padding: var(--sp-4) var(--sp-3);
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-120%); transition: var(--t-base);
  }
  .nav__links.is-open { transform: none; }
  .nav__toggle { display: block; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .section { padding-block: var(--sp-6); }
}

/* 页脚：门店名称用米金 */
.footer__store { color: var(--c-accent); font-weight: 600; font-size: var(--fs-body); margin: 0; }
.footer__store-detail { color: rgba(255,255,255,0.55); font-size: var(--fs-small); line-height: 1.6; margin: 4px 0 0 0; }

/* 会员等级页 · 权益清单 */
.benefit-grid { display: grid; gap: var(--sp-4); }
.benefit-cat { font-size: var(--fs-h3); color: var(--c-ink); font-weight: 600; margin-bottom: var(--sp-3); display: flex; align-items: center; gap: var(--sp-2); }
.benefit-cat::before { content: ""; width: 3px; height: 1.2em; background: var(--c-accent); border-radius: 2px; }
.benefit-cat-en { font-family: var(--font-en); font-size: var(--fs-small); color: var(--c-accent); font-weight: 400; letter-spacing: 0.08em; }
.benefit-items { display: grid; gap: 6px; }
.benefit-item { display: flex; align-items: center; gap: var(--sp-2); padding: 8px 0; border-bottom: 1px solid var(--c-line); }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; background: var(--c-ink); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: var(--c-bg-soft); font-family: var(--font-en); }
.benefit-info { flex: 1; }
.benefit-name { font-size: 0.95rem; color: var(--c-ink); font-weight: 600; }
.benefit-en { font-size: var(--fs-small); color: var(--c-accent); font-family: var(--font-en); letter-spacing: 0.05em; }
.benefit-status { font-size: 0.85rem; color: var(--c-green-5); font-weight: 600; }
.benefit-status.na { color: var(--c-text-soft); font-weight: 400; }
.benefit-item.is-unavailable .benefit-icon { background: rgba(111,116,104,0.38); }
.benefit-item.is-unavailable .benefit-name,
.benefit-item.is-unavailable .benefit-en { color: rgba(111,116,104,0.35); }

/* π | 拾光 */
.shiguang-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-7) var(--sp-6);
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(194,168,120,0.18), transparent 28%),
    linear-gradient(135deg, var(--c-green-7), var(--c-ink));
}
.shiguang-hero::after {
  content: "π";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-54%);
  color: rgba(255,255,255,0.055);
  font-family: Georgia, serif;
  font-size: clamp(10rem, 24vw, 22rem);
  line-height: 1;
}
.shiguang-hero .container { position: relative; z-index: 1; }
.shiguang-hero .breadcrumb,
.shiguang-hero .breadcrumb a,
.shiguang-hero p { color: rgba(255,255,255,0.72); }
.shiguang-hero .eyebrow { color: var(--c-accent-soft); }
.shiguang-hero h1 { color: #fff; font-size: var(--fs-h1); margin-bottom: var(--sp-2); }
.shiguang-hero > .container > p:last-child { max-width: 52ch; }
.shiguang-intro { margin-bottom: var(--sp-5); }
.shiguang-masonry { columns: 3; column-gap: var(--sp-3); }
.shiguang-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 var(--sp-3);
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--t-base);
}
.shiguang-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.shiguang-card__image-link { display: block; overflow: hidden; background: var(--c-bg-soft); }
.shiguang-card__image-link img { width: 100%; height: auto; transition: transform var(--t-base); }
.shiguang-card:hover .shiguang-card__image-link img { transform: scale(1.025); }
.shiguang-card__body { padding: var(--sp-3); }
.shiguang-card time,
.shiguang-article time { display: block; color: var(--c-accent); font-size: var(--fs-small); letter-spacing: 0.06em; }
.shiguang-card h2 { margin: 10px 0 var(--sp-2); font-size: 1.15rem; line-height: 1.45; }
.shiguang-card p { color: var(--c-text-soft); font-size: 0.94rem; line-height: 1.75; }
.shiguang-card__more { display: inline-block; margin-top: var(--sp-2); color: var(--c-ink); font-size: var(--fs-small); font-weight: 600; }
.shiguang-article { max-width: 920px; padding-top: var(--sp-7); padding-bottom: var(--sp-7); }
.shiguang-article__header { max-width: 760px; margin: 0 auto var(--sp-5); text-align: center; }
.shiguang-article__header .breadcrumb { text-align: left; margin-bottom: var(--sp-5); }
.shiguang-article__header h1 { margin: var(--sp-2) 0; font-size: var(--fs-h1); }
.shiguang-article__excerpt { margin: var(--sp-3) auto 0; color: var(--c-text-soft); font-size: 1.05rem; line-height: 1.9; }
.shiguang-article__content { overflow: hidden; border-radius: var(--radius-lg); background: var(--c-bg-soft); box-shadow: var(--shadow-sm); }
.shiguang-article__content img { width: 100%; height: auto; }
.shiguang-article__back { margin-top: var(--sp-5); text-align: center; }
.shiguang-not-found { padding-block: var(--sp-8); text-align: center; }
.shiguang-not-found p { margin: var(--sp-2) 0 var(--sp-4); color: var(--c-text-soft); }

@media (max-width: 900px) {
  .shiguang-masonry { columns: 2; }
}
@media (max-width: 620px) {
  .shiguang-masonry { columns: 1; }
  .shiguang-article { padding-top: var(--sp-6); }
  .shiguang-article__header { text-align: left; }
}
