/* 华嫂之家 · 独立子页（新闻 / 照片墙）共用样式 */
:root{
  --bg:#F7F3EC;
  --bg-2:#FAF8F3;
  --bg-3:#EFE9DC;
  --ink:#1A1614;
  --ink-2:#2B2724;
  --red:#C8102E;
  --red-deep:#A60E24;
  --red-soft:#E84157;
  --gold:#C9A961;
  --gold-deep:#A88B3F;
  --text-2:#5C534A;
  --text-3:#8A8178;
  --border:#E8E2D6;
  --border-2:#D9D0C0;
  --shadow-warm:rgba(26,22,20,.06);
  --shadow-warm-2:rgba(26,22,20,.1);
  --serif:"Noto Serif SC",serif;
  --sans:"Noto Sans SC",system-ui,sans-serif;
  --latin:"Cormorant Garamond",Georgia,serif;
  --ease:cubic-bezier(.22,1,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--sans);background:var(--bg);color:var(--ink);
  line-height:1.6;overflow-x:hidden;min-height:100vh;
  display:flex;flex-direction:column;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font-family:inherit;border:none;background:none;cursor:pointer}
body::after{
  content:'';position:fixed;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .15 0 0 0 0 .12 0 0 0 0 .1 0 0 0 .04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:.5;pointer-events:none;z-index:1;mix-blend-mode:multiply;
}
main{position:relative;z-index:2;flex:1}

/* 导航：全宽固定 + text-align 居中（最简、微信稳） */
.nav-dock{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:10050;
  padding:max(10px, env(safe-area-inset-top, 0px)) 12px 0;
  box-sizing:border-box;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  text-align:center;
  pointer-events:none;
  background:transparent;
}
.nav-dock.is-scrolled{
  padding-top:max(6px, env(safe-area-inset-top, 0px));
}
.nav-dock .nav,
#nav.nav{
  position:relative !important;
  display:inline-flex !important;
  left:auto !important;
  right:auto !important;
  top:auto !important;
  transform:none !important;
  margin:0 auto !important;
  width:auto !important;
  max-width:calc(100vw - 24px);
  vertical-align:top;
  pointer-events:auto;
  align-items:center;
  gap:8px;
  padding:8px 8px 8px 20px;
  background:rgba(247,243,236,.95);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  border:1px solid rgba(232,226,214,.7);
  border-radius:999px;
  box-shadow:0 8px 32px var(--shadow-warm),0 0 0 1px rgba(255,255,255,.5) inset;
  box-sizing:border-box;
  text-align:left;
}
.nav-dock.is-scrolled .nav,
.nav.scrolled{
  background:rgba(247,243,236,.98);
  box-shadow:0 12px 40px var(--shadow-warm-2);
}
.nav-brand{display:flex;align-items:center;gap:10px;flex-shrink:0}
.nav-seal{
  width:34px;height:34px;border-radius:9px;background:var(--red);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-family:var(--serif);font-weight:700;font-size:20px;
  box-shadow:0 2px 8px rgba(200,16,46,.35),inset 0 0 0 1px rgba(255,255,255,.15);
}
.nav-brand-text{font-family:var(--serif);font-weight:600;font-size:17px;letter-spacing:1px;color:var(--ink)}
.nav-brand-text small{display:block;font-family:var(--latin);font-style:italic;font-weight:400;font-size:9px;letter-spacing:2px;color:var(--text-3);margin-top:-2px}
.nav-links{display:flex;align-items:center;gap:2px;margin-left:8px}
.nav-links a{
  padding:8px 14px;border-radius:999px;font-size:13.5px;color:var(--text-2);
  transition:all .35s var(--ease);font-weight:500;
}
.nav-links a:hover,.nav-links a.is-active{color:var(--ink);background:rgba(200,16,46,.07)}
.nav-links a.is-active{font-weight:600;color:var(--red-deep)}
.nav-cta{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 18px 10px 20px;background:var(--red-deep);color:#fff;
  border-radius:999px;font-size:13.5px;font-weight:500;transition:all .4s var(--ease);
}
.nav-cta:hover{background:var(--red);transform:translateY(-1px);box-shadow:0 6px 18px rgba(200,16,46,.35)}
.nav-cta .dot{width:6px;height:6px;border-radius:50%;background:var(--red-soft);transition:all .4s}
.nav-cta:hover .dot{background:#fff;transform:scale(1.3)}
.nav-burger{display:none;flex-direction:column;gap:5px;padding:10px;cursor:pointer}
.nav-burger span{width:20px;height:2px;background:var(--ink);border-radius:2px;transition:all .4s var(--ease)}
.nav-burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-burger.open span:nth-child(2){opacity:0}
.nav-burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.nav-menu{
  position:fixed;inset:0;z-index:99;
  background:rgba(247,243,236,.97);backdrop-filter:blur(24px);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  opacity:0;pointer-events:none;transition:opacity .5s var(--ease);
}
.nav-menu.open{opacity:1;pointer-events:auto}
.nav-menu a{
  font-family:var(--serif);font-size:28px;font-weight:500;color:var(--ink);
  padding:14px 32px;opacity:0;transform:translateY(20px);transition:all .5s var(--ease);
}
.nav-menu.open a{opacity:1;transform:translateY(0)}
.nav-menu a.is-active{color:var(--red)}
.nav-menu.open a:nth-child(1){transition-delay:.1s}
.nav-menu.open a:nth-child(2){transition-delay:.15s}
.nav-menu.open a:nth-child(3){transition-delay:.2s}
.nav-menu.open a:nth-child(4){transition-delay:.25s}
.nav-menu.open a:nth-child(5){transition-delay:.3s}
.nav-menu.open a:nth-child(6){transition-delay:.35s}

.container{max-width:1180px;margin:0 auto;position:relative}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;border-radius:999px;
  background:rgba(200,16,46,.07);color:var(--red-deep);
  font-size:11px;font-weight:600;letter-spacing:2.5px;text-transform:uppercase;
  margin-bottom:24px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--red)}
.eyebrow.gold{background:rgba(201,169,97,.12);color:var(--gold-deep)}
.eyebrow.gold::before{background:var(--gold)}
h1,h2,h3,h4{font-family:var(--serif);font-weight:600;line-height:1.18;color:var(--ink)}
.h-section{font-size:clamp(30px,4.5vw,52px);font-weight:600;line-height:1.2}
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease-out),transform .8s var(--ease-out)}
.reveal.in{opacity:1;transform:translateY(0)}

/* 子页顶区 */
.page-hero{
  padding:140px 24px 40px;text-align:center;
}
.page-hero .crumb{
  font-size:13px;color:var(--text-3);margin-bottom:20px;
}
.page-hero .crumb a{color:var(--text-2)}
.page-hero .crumb a:hover{color:var(--red)}
.page-hero .crumb span{margin:0 8px;opacity:.5}

/* 新闻 */
.news-sec{padding:24px 24px 100px;background:var(--bg)}
.news-head{text-align:center;max-width:680px;margin:0 auto 56px}
.news-head h2{margin-bottom:16px}
.news-head p{color:var(--text-2);font-size:16px;line-height:1.7}
.news-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
  max-width:1180px;margin:0 auto;
}
.news-card{
  background:var(--bg-2);border:1px solid var(--border);border-radius:22px;
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform .45s var(--ease),box-shadow .45s var(--ease);
}
.news-card:hover{transform:translateY(-6px);box-shadow:0 22px 48px var(--shadow-warm-2)}
.news-card-img{aspect-ratio:16/10;overflow:hidden;background:var(--ink)}
.news-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s var(--ease)}
.news-card:hover .news-card-img img{transform:scale(1.04)}
.news-card-body{padding:22px 22px 24px;display:flex;flex-direction:column;gap:10px;flex:1}
.news-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.news-date{font-family:var(--latin);font-size:12px;color:var(--text-3);letter-spacing:.5px}
.news-tag{
  font-size:11px;font-weight:600;padding:3px 10px;border-radius:999px;
  background:rgba(200,16,46,.08);color:var(--red);
}
.news-card-title{font-family:var(--serif);font-size:18px;font-weight:600;color:var(--ink);line-height:1.4}
.news-card-summary{font-size:13.5px;color:var(--text-2);line-height:1.7;flex:1}
.news-more{font-size:13px;font-weight:600;color:var(--red);margin-top:4px}
.news-more:hover{text-decoration:underline}
.cms-empty{text-align:center;color:var(--text-3);padding:48px 16px;grid-column:1/-1;font-size:15px}

/* 照片墙 · 瀑布流（原图比例 · 乱序） */
.gallery-sec{
  padding:8px 20px 100px;
  background:var(--bg);
  position:relative;
}
.gallery-head{text-align:center;max-width:640px;margin:0 auto 40px}
.gallery-head .h-section{
  font-weight:600;
  font-size:clamp(30px,4.5vw,48px);
}
.gallery-head p{
  color:var(--text-2);font-size:15px;line-height:1.75;
  max-width:28em;margin:0 auto;
}
.gallery-head .gh-rule{
  width:40px;height:1px;margin:18px auto 0;
  background:linear-gradient(90deg,transparent,rgba(200,16,46,.45),transparent);
}

/* 多列瀑布流：高度随原图比例自然堆叠 */
.gallery-wall{
  max-width:1320px;
  margin:0 auto;
  column-count:5;
  column-gap:10px;
}
.gallery-wall[data-count="1"]{column-count:1;max-width:420px}
.gallery-wall[data-count="2"]{column-count:2;max-width:780px}

.gallery-timeline{
  max-width:760px;
  margin:0 auto 42px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:start;
  position:relative;
}
.gallery-timeline::before{
  content:'';
  position:absolute;
  top:13px;
  left:12%;
  right:12%;
  height:1px;
  background:linear-gradient(90deg,rgba(200,16,46,.12),rgba(200,16,46,.42),rgba(201,169,97,.38));
}
.gt-node{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
  color:var(--text-2);
}
.gt-dot{
  width:27px;
  height:27px;
  border-radius:50%;
  background:var(--bg);
  border:2px solid var(--red);
  box-shadow:0 0 0 8px var(--bg);
}
.gt-meta{display:flex;flex-direction:column;gap:2px}
.gt-label{
  font-family:var(--serif);
  font-size:16px;
  font-weight:600;
  color:var(--ink);
}
.gt-sub{
  font-family:var(--latin);
  font-style:italic;
  font-size:12px;
  color:var(--text-3);
  letter-spacing:.5px;
}
.gallery-era{
  max-width:1320px;
  margin:0 auto 44px;
  scroll-margin-top:110px;
}
.gallery-era:last-child{margin-bottom:0}
.gallery-era-head{
  display:flex;
  align-items:center;
  gap:16px;
  margin:0 0 18px;
}
.gallery-era-line{
  width:42px;
  height:1px;
  background:linear-gradient(90deg,var(--red),rgba(200,16,46,0));
  flex-shrink:0;
}
.gallery-era-head h2{
  font-size:22px;
  font-weight:600;
  margin-bottom:2px;
}
.gallery-era-head p{
  font-family:var(--latin);
  font-style:italic;
  color:var(--text-3);
  font-size:13px;
}
.gallery-era-wall{
  column-count:5;
  column-gap:10px;
}
.gallery-sections{
  max-width:1320px;
  margin:0 auto;
}

.gallery-pin{
  break-inside:avoid;
  -webkit-column-break-inside:avoid;
  page-break-inside:avoid;
  margin:0 0 10px;
  display:inline-block;
  width:100%;
  vertical-align:top;
  position:relative;
  border-radius:8px;
  overflow:hidden;
  background:var(--bg-2);
  border:1px solid rgba(232,226,214,.9);
  box-shadow:0 5px 14px rgba(26,22,20,.055);
  transition:transform .35s var(--ease),box-shadow .35s var(--ease);
  /* 轻微随机旋转由 inline style / data-tilt 控制 */
}
.gallery-pin.is-ready{opacity:1}
.gallery-open{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
}
.gallery-pin:hover{
  transform:translateY(-3px) rotate(0deg)!important;
  box-shadow:0 16px 36px rgba(26,22,20,.12);
  z-index:2;
}
.gallery-pin img{
  width:100%;
  height:auto;
  display:block;
  vertical-align:middle;
  /* 保持原始比例，不做裁切 */
  object-fit:contain;
  background:#f0ebe3;
}
.gallery-pin figcaption{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:28px 12px 10px;
  background:linear-gradient(transparent,rgba(26,22,20,.72));
  color:#fff;
  font-family:var(--serif);
  font-size:14px;
  font-weight:500;
  letter-spacing:.06em;
  opacity:0;
  transform:translateY(4px);
  transition:opacity .3s ease,transform .3s ease;
  pointer-events:none;
}
.gallery-pin:hover figcaption,
.gallery-pin:focus-within figcaption{
  opacity:1;
  transform:translateY(0);
}
.gallery-pin .gp-cap-sub{
  display:block;
  font-family:var(--sans);
  font-size:11px;
  font-weight:400;
  letter-spacing:.12em;
  opacity:.75;
  margin-top:3px;
}
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:20000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(12,10,9,.86);
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}
.gallery-lightbox.open{
  opacity:1;
  pointer-events:auto;
}
.glb-stage{
  max-width:min(92vw,1100px);
  max-height:90vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.glb-stage img{
  max-width:100%;
  max-height:84vh;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 24px 80px rgba(0,0,0,.45);
}
.glb-stage figcaption{
  min-height:18px;
  color:rgba(255,255,255,.72);
  font-size:13px;
}
.glb-close,
.glb-nav{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.glb-close{
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border-radius:50%;
  font-size:28px;
  line-height:1;
}
.glb-nav{
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:64px;
  border-radius:999px;
  font-size:38px;
}
.glb-prev{left:18px}
.glb-next{right:18px}

/* 兼容旧 class */
.gallery-grid{display:contents}
.gallery-item,.gallery-frame{display:none}

body[data-page="gallery"] .page-hero{padding-bottom:8px}
body[data-page="gallery"] .page-hero .crumb{font-size:12px;color:var(--text-3)}

/* 页脚 */
footer{
  background:var(--ink);color:rgba(255,255,255,.6);
  padding:20px 24px;position:relative;z-index:2;
}
.footer-inner{max-width:1180px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px}
.footer-grid{margin:0;display:flex;align-items:center;justify-content:flex-start}
.footer-brand{display:flex;flex-direction:column;gap:16px}
.footer-brand .fb-logo{display:flex;align-items:center;gap:12px}
.footer-brand .fb-seal{
  width:38px;height:38px;border-radius:10px;background:var(--red);
  display:flex;align-items:center;justify-content:center;color:#fff;
  font-family:var(--serif);font-weight:700;font-size:22px;
}
.footer-brand .fb-name{font-family:var(--serif);font-size:18px;font-weight:600;color:#fff}
.footer-brand .fb-name small{display:inline-block;font-family:var(--latin);font-style:italic;font-size:10px;color:rgba(255,255,255,.4);letter-spacing:1.2px;margin-left:8px}
.footer-bottom{
  margin:0;padding:0;border-top:0;
  display:flex;justify-content:flex-end;align-items:center;flex-wrap:wrap;gap:14px;
  font-size:12px;color:rgba(255,255,255,.4);
}
.footer-bottom .fb-icp a{color:rgba(255,255,255,.4)}
.footer-bottom .fb-icp a:hover{color:var(--gold)}

@media(max-width:980px){
  .nav-links{display:none}
  .nav-burger{display:flex}
  .nav-dock .nav,#nav.nav{padding:8px 8px 8px 16px}
  .nav-dock{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
    align-items:flex-start !important;
    text-align:center !important;
    z-index:10050 !important;
  }
  .news-grid{grid-template-columns:1fr}
  .gallery-wall{column-count:4;max-width:900px}
  .gallery-wall[data-count="1"]{column-count:1;max-width:420px}
  .gallery-wall[data-count="2"]{column-count:2;max-width:720px}
  .gallery-timeline{max-width:680px}
  .gallery-era{max-width:900px}
  .gallery-era-wall{column-count:4;column-gap:9px}
}
@media(max-width:560px){
  footer{padding:14px 18px}
  .footer-inner{flex-direction:column;gap:8px;text-align:center}
  .footer-grid{justify-content:center}
  .footer-brand .fb-seal{width:34px;height:34px;border-radius:9px;font-size:20px}
  .footer-brand .fb-name{font-size:16px}
  .footer-brand .fb-name small{font-size:9px;margin-left:6px}
  .footer-bottom{justify-content:center;gap:6px 12px;text-align:center;font-size:11.5px}
  .gallery-wall,
  .gallery-wall[data-count="2"]{
    column-count:3;
    column-gap:8px;
    max-width:100%;
  }
  .gallery-wall[data-count="1"]{column-count:1;max-width:100%}
  .gallery-timeline{
    grid-template-columns:1fr;
    gap:18px;
    max-width:300px;
    margin-bottom:34px;
  }
  .gallery-timeline::before{
    top:13px;
    bottom:13px;
    left:13px;
    right:auto;
    width:1px;
    height:auto;
  }
  .gt-node{
    flex-direction:row;
    align-items:flex-start;
    text-align:left;
    gap:12px;
  }
  .gt-dot{flex:0 0 auto}
  .gallery-era{margin-bottom:40px}
  .gallery-era-head{gap:10px;margin-bottom:14px}
  .gallery-era-line{width:24px}
  .gallery-era-head h2{font-size:18px}
  .gallery-era-wall{
    column-count:3;
    column-gap:8px;
  }
  .gallery-pin{margin-bottom:8px;border-radius:7px}
  .gallery-sec{padding:8px 10px 72px}
  .gallery-lightbox{padding:14px}
  .glb-stage img{max-height:82vh}
  .glb-close{top:10px;right:10px;width:38px;height:38px}
  .glb-nav{width:38px;height:54px;font-size:30px}
  .glb-prev{left:8px}
  .glb-next{right:8px}
}
@media(max-width:360px){
  .gallery-wall,
  .gallery-wall[data-count="2"],
  .gallery-era-wall{column-count:2}
}
@media(max-width:480px){
  .nav-brand-text{font-size:15px}
  .page-hero{padding:120px 20px 24px}
}
/* 团队风采 */
.team-sec{padding:24px 24px 100px;background:var(--bg)}
.team-head{text-align:center;max-width:680px;margin:0 auto 56px}
.team-head h1,.team-head h2{margin-bottom:16px}
.team-head p{color:var(--text-2);font-size:16px;line-height:1.7}
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  max-width:1180px;
  margin:0 auto;
}
.team-card{
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .45s var(--ease),box-shadow .45s var(--ease);
  box-shadow:0 8px 24px var(--shadow-warm);
}
.team-card:hover{transform:translateY(-6px);box-shadow:0 22px 48px var(--shadow-warm-2)}
.team-card-photo{
  position:relative;
  /* 略偏竖构图，给头顶留裁切缓冲 */
  aspect-ratio:3/4;
  overflow:hidden;
  background:#ebe4d8;
}
.team-card-photo img{
  width:100%;height:100%;
  /* 优先保证头顶/脸部完整，不从中间硬裁 */
  object-fit:cover;
  object-position:center top;
  display:block;
  transition:transform .6s var(--ease);
}
.team-card:hover .team-card-photo img{transform:scale(1.03)}
.team-card-photo .team-seal{
  position:absolute;top:12px;right:12px;
  width:32px;height:32px;border-radius:9px;
  background:rgba(200,16,46,.88);color:#fff;
  font-family:var(--serif);font-weight:700;font-size:15px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(200,16,46,.3);
  /* 不挡脸：右上角小印章 */
  z-index:2;
}
.team-card-body{padding:18px 18px 22px;display:flex;flex-direction:column;gap:6px;flex:1}
/* 姓名 + 称谓同一行 */
.team-card-name{
  font-family:var(--serif);
  font-size:18px;font-weight:600;color:var(--ink);line-height:1.35;margin:0;
  display:flex;align-items:baseline;flex-wrap:wrap;gap:6px 8px;
}
.team-card-name .tc-name{font-size:20px;font-weight:600;color:var(--ink)}
.team-card-name .tc-dot{color:var(--text-3);font-weight:400;font-size:14px}
.team-card-name .tc-role{
  font-family:var(--sans);
  font-size:13px;font-weight:600;letter-spacing:.04em;
  color:var(--red-deep);
}
.team-card-meta{
  display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;
  margin-top:4px;padding-top:8px;
  border-top:1px solid rgba(232,226,214,.95);
}
.team-served{
  font-size:12.5px;color:var(--text-2);letter-spacing:.02em;
}
.team-served em{
  font-style:normal;
  font-family:var(--serif);
  font-weight:700;
  font-size:16px;
  color:var(--red-deep);
  margin:0 2px;
}
.team-stars{
  display:inline-flex;gap:1px;line-height:1;
  letter-spacing:0;
}
.team-stars .ts-star{
  font-size:14px;
  color:rgba(201,169,97,.28);
  text-shadow:none;
}
.team-stars .ts-star.is-on{
  color:#C9A961;
  text-shadow:0 0 8px rgba(201,169,97,.35);
}
.team-card-desc{font-size:13.5px;color:var(--text-2);line-height:1.7;margin-top:4px}
.team-card.is-placeholder .team-card-photo{
  display:flex;align-items:center;justify-content:center;
}
.team-card.is-placeholder .team-ph{
  font-family:var(--serif);font-size:64px;color:rgba(255,255,255,.18);font-weight:700;
}

@media(min-width:1180px){
  .team-sec .container{max-width:1320px}
  .team-grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
    justify-content:center;
    gap:16px;
    max-width:1240px;
  }
  .team-grid:has(.team-card:nth-child(4):last-child){
    grid-template-columns:repeat(4,220px);
    max-width:928px;
  }
  .team-grid:has(.team-card:nth-child(5):last-child){
    grid-template-columns:repeat(5,220px);
    max-width:1164px;
  }
  .team-card{border-radius:18px}
  .team-card-photo .team-seal{
    top:10px;right:10px;
    width:30px;height:30px;border-radius:8px;
    font-size:14px;
  }
  .team-card-body{padding:15px 14px 18px;gap:5px}
  .team-card-name{gap:4px 6px}
  .team-card-name .tc-name{font-size:18px}
  .team-card-name .tc-role{font-size:12px}
  .team-card-desc{font-size:12.8px;line-height:1.65}
}
@media(max-width:980px){
  .team-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .team-sec{padding-left:14px;padding-right:14px}
  .team-head{margin-bottom:34px}
  .team-head p{font-size:14px}
  .team-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .team-card{border-radius:14px}
  .team-card-photo{aspect-ratio:4/5}
  .team-card-photo .team-seal{
    top:8px;right:8px;
    width:26px;height:26px;border-radius:7px;
    font-size:12px;
  }
  .team-card-body{padding:12px 10px 14px;gap:4px}
  .team-card-name{gap:2px 4px;line-height:1.28}
  .team-card-name .tc-name{font-size:16px}
  .team-card-name .tc-dot{display:none}
  .team-card-name .tc-role{font-size:11px;letter-spacing:0}
  .team-card-meta{gap:5px;margin-top:3px;padding-top:6px}
  .team-served{font-size:11px}
  .team-served em{font-size:14px;margin:0 1px}
  .team-stars .ts-star{font-size:11px}
  .team-card-desc{
    font-size:11.5px;
    line-height:1.55;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
}

/* 文章详情 */
.article-page{padding-bottom:80px}
.article-shell{max-width:760px;margin:0 auto;padding:0 24px 40px}
.article-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:16px}
.article-title{font-size:clamp(28px,4vw,42px);font-weight:700;line-height:1.25;margin-bottom:16px}
.article-lead{font-size:17px;color:var(--text-2);line-height:1.75;margin-bottom:28px}
.article-cover{
  border-radius:20px;overflow:hidden;margin-bottom:32px;
  aspect-ratio:16/9;background:var(--ink);
  box-shadow:0 16px 40px var(--shadow-warm-2);
}
.article-cover img{width:100%;height:100%;object-fit:cover}
.article-body{font-size:16.5px;line-height:1.9;color:var(--ink-2)}
.article-body p{margin-bottom:1.15em}
.article-back{margin-top:40px;padding-top:24px;border-top:1px solid var(--border)}
.article-back a{font-weight:600;color:var(--red);font-size:14px}
.article-back a:hover{text-decoration:underline}

.news-card{cursor:default}
.news-card-link{display:flex;flex-direction:column;flex:1;color:inherit;height:100%}
.news-card-link:hover .news-card-title{color:var(--red)}

@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none}
}
