/* ==========================================================================
   xyggxh 模板内页扩展样式 page.css
   依赖 styles.css 的 CSS 变量与基础类（.container/.kicker/.button/.reveal 等）
   覆盖：page-hero / subnav / pagination / breadcrumb / sidebar / article / gallery
   ========================================================================== */

/* 页面顶部 hero（内页通用） ---------------------------------------------- */
.page-main {
  padding-top: 90px;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(199, 169, 107, 0.18), transparent 38%),
    var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-inner {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(70px, 9vw, 130px) 0 clamp(54px, 6vw, 84px);
}

.page-hero .kicker {
  color: var(--gold-light);
}

.page-hero .kicker > span {
  color: var(--gold);
}

.page-hero h1 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.page-hero-lead {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.page-hero-lead .fa {
  margin-right: 6px;
  color: var(--gold-light);
}

/* 内页 section 间距 ------------------------------------------------------- */
.page-section {
  padding-block: clamp(70px, 7vw, 110px);
}

/* 二级导航 / 子分类 ------------------------------------------------------- */
.page-toolbar {
  margin-bottom: 56px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subnav a {
  padding: 9px 22px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, border 180ms ease;
}

.subnav a:hover,
.subnav a.on {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

/* 面包屑 ----------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.breadcrumb .fa {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--navy);
}

/* 纯文字列表（法律法规/广告监管等） --------------------------------------- */
.text-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text-list-item {
  border-bottom: 1px solid var(--line);
}

.text-list-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 4px;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, padding 220ms ease;
}

.text-list-link:hover {
  background: rgba(7, 17, 31, 0.02);
  padding-left: 12px;
  padding-right: 12px;
}

.text-list-main {
  min-width: 0;
}

.text-list-cat {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(199, 169, 107, 0.1);
}

.text-list-main h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 180ms ease;
}

.text-list-link:hover .text-list-main h3 {
  color: var(--gold);
}

.text-list-main p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-list-date {
  text-align: right;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  flex-shrink: 0;
  min-width: 100px;
  position: relative;
}

.text-list-date strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.text-list-date small {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

.text-list-date .fa {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--line);
  transition: color 180ms ease, transform 220ms ease;
}

.text-list-link:hover .text-list-date .fa {
  color: var(--gold);
  transform: translateY(-50%) translateX(3px);
}

@media (max-width: 760px) {
  .text-list-link {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 2px;
  }
  .text-list-date {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 12px;
    text-align: left;
    min-width: 0;
  }
  .text-list-date .fa {
    right: auto;
    left: auto;
    top: 22px;
  }
}

/* 列表页 insight-grid 微调 ------------------------------------------------ */
.insight-grid-list {
  grid-template-columns: repeat(3, 1fr);
}

.insight-grid-list .insight-visual {
  height: 220px;
}

.insight-grid-list .insight-visual::before,
.insight-grid-list .insight-visual::after {
  display: none;
}

/* 分页 ------------------------------------------------------------------- */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.pagination a {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  transition: color 180ms ease, background 180ms ease, border 180ms ease;
}

.pagination a:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.pagination span {
  /* 当前页 numbar 高亮 */
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
}

/* 空状态 ----------------------------------------------------------------- */
.empty-state {
  padding: 80px 0;
  text-align: center;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.08em;
}

/* 文章详情 --------------------------------------------------------------- */
.article {
  max-width: 860px;
  margin-inline: auto;
}

.article-content {
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.article-content :where(h1, h2, h3, h4) {
  margin: 1.8em 0 0.8em;
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy);
}

.article-content h2 { font-size: 28px; }
.article-content h3 { font-size: 23px; }

.article-content p {
  margin: 0 0 1.4em;
}

.article-content :where(ul, ol) {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}

.article-content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  margin: 1.6em auto;
  display: block;
}

.article-content blockquote {
  margin: 1.8em 0;
  padding: 18px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(199, 169, 107, 0.08);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.8;
}

.article-content a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
}

.article-content a:hover {
  color: var(--gold);
}

/* 纯文本容错：未排版的裸 p / 长串 / 嵌入媒体 自动适配 ------------------- */
.article-content p {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.article-content :where(pre, code) {
  white-space: pre-wrap;
  word-break: break-all;
  overflow-wrap: break-word;
}

.article-content :where(iframe, video, embed, object) {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
}

.article-content :where(table) {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article-content :where(ul, ol) {
  padding-left: 1.2em;
}

.article-content li {
  margin: 0.4em 0;
}

.article-foot {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.prevnext p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.prevnext p:last-child {
  margin-bottom: 0;
}

.prevnext .fa {
  margin-right: 8px;
  color: var(--gold);
}

.prevnext a {
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border 180ms ease;
}

.prevnext a:hover {
  border-color: var(--gold);
}

/* 关于/单页 双栏布局 ----------------------------------------------------- */
.about-layout-page {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(50px, 6vw, 90px);
  padding-top: 0;
  align-items: start;
}

.page-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  margin-bottom: 28px;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
}

.sidebar-title .fa {
  color: var(--gold);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav a {
  display: flex;
  padding: 11px 6px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 180ms ease, padding 180ms ease;
}

.sidebar-nav a:last-child {
  border-bottom: 0;
}

.sidebar-nav a .fa {
  color: var(--gold);
  font-size: 12px;
}

.sidebar-nav a:hover,
.sidebar-nav a.on {
  color: var(--navy);
  padding-left: 12px;
  font-weight: 600;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.sidebar-list a:last-child {
  border-bottom: 0;
}

.sidebar-list a span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-list a:hover span {
  color: var(--gold);
}

.sidebar-list a small {
  color: var(--ink-soft);
  font-size: 12px;
}

.page-content-main {
  min-width: 0;
}

.page-content-text {
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.page-content-text :where(h1, h2, h3, h4) {
  margin: 1.8em 0 0.8em;
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy);
}

.page-content-text h2 { font-size: 28px; }
.page-content-text h3 { font-size: 23px; }

.page-content-text img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  margin: 1.6em auto;
  display: block;
}

.page-content-text blockquote {
  margin: 1.8em 0;
  padding: 18px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(199, 169, 107, 0.08);
  color: var(--ink-soft);
  font-family: var(--display);
}

/* 图集网格 --------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border 180ms ease, transform 180ms ease, box-shadow 220ms ease;
}

.gallery-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(7, 17, 31, 0.12);
}

.gallery-visual {
  position: relative;
  height: 240px;
  background-color: var(--navy-2);
  background-size: cover;
  background-position: center;
  transition: transform 400ms ease;
}

.gallery-card:hover .gallery-visual {
  transform: scale(1.05);
}

.gallery-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 17, 31, 0.55) 100%);
}

.gallery-visual span {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 14px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.gallery-body {
  padding: 20px 22px 24px;
}

.gallery-body small {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.gallery-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 在线申请表单 ----------------------------------------------------------- */
.apply-tabs {
  margin-top: 48px;
}

.apply-tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--line);
}

.apply-tab {
  padding: 14px 32px;
  border: none;
  background: none;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 180ms ease;
  position: relative;
}

.apply-tab.on {
  color: var(--navy);
}

.apply-tab.on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.apply-panel {
  display: none;
  padding-top: 32px;
}

.apply-panel.on {
  display: block;
}

.apply-form {
  max-width: 640px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-row > label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.form-row > label small {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-row input[type="text"],
.form-row textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border 180ms ease;
}

.form-row input[type="text"]:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row textarea {
  resize: vertical;
}

.form-radios {
  display: flex;
  gap: 24px;
  padding: 10px 0;
}

.form-radios label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}

.form-code {
  display: flex;
  gap: 12px;
  align-items: center;
}

.form-code input {
  max-width: 160px;
}

.form-code img {
  height: 42px;
  cursor: pointer;
  border: 1px solid var(--line);
}

.apply-form .button-primary {
  margin-top: 8px;
  padding: 14px 48px;
}

.form-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(199, 169, 107, 0.08);
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* 联系我们 --------------------------------------------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border 180ms ease, box-shadow 220ms ease;
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.08);
}

.contact-card .fa {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-value {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* 返回顶部 --------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228, 206, 152, 0.66);
  background: rgba(7, 17, 31, 0.88);
  color: var(--gold-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
}

.back-to-top i {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg) translate(2px, 2px);
}

/* 响应式 ----------------------------------------------------------------- */
@media (max-width: 1180px) {
  .insight-grid-list { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .about-layout-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-sidebar {
    position: static;
  }
  .page-main { padding-top: 78px; }
}

@media (max-width: 760px) {
  .insight-grid-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* 专题/单页：侧边栏重排为横向滑动胶囊导航，正文紧跟其后 */
  .page-hero-inner { padding: 46px 0 38px; }
  .page-section { padding-block: 44px; }
  .about-layout-page { gap: 26px; }
  .sidebar-news { display: none; }
  .page-sidebar .sidebar-card {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .page-sidebar .sidebar-title { display: none; }
  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .sidebar-nav a,
  .sidebar-nav a:last-child {
    flex: 0 0 auto;
    padding: 9px 16px;
    border: 1px solid var(--line);
    background: var(--white);
    white-space: nowrap;
    font-size: 13px;
  }
  .sidebar-nav a .fa { display: none; }
  .sidebar-nav a:hover,
  .sidebar-nav a.on {
    padding-left: 16px;
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
    font-weight: 500;
  }

  .article-content,
  .page-content-text {
    font-size: 15px;
  }
  .page-hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .pagination { gap: 6px; }
  .pagination a,
  .pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
}

/* 组织架构专题 ----------------------------------------------------------- */
.org-section { padding-block: clamp(60px, 6vw, 100px); }

.org-intro {
  max-width: 680px;
  margin: 0 auto clamp(50px, 5vw, 80px);
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
}

.org-tier {
  margin-bottom: clamp(50px, 5vw, 80px);
}
.org-tier:last-child { margin-bottom: 0; }

.org-tier-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.org-tier-label::before,
.org-tier-label::after {
  content: '';
  flex: 0 0 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.org-tier-label::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.org-tier-label small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 4px;
}

.org-grid {
  display: grid;
  gap: 28px;
}
.org-grid-1 { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
.org-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; }
.org-grid-4 { grid-template-columns: repeat(4, 1fr); }

.org-card {
  text-align: center;
  padding: 34px 22px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.org-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(7, 17, 31, 0.1);
  transform: translateY(-4px);
}

.org-card-lg {
  padding: 48px 34px 40px;
}

.org-photo {
  width: 150px;
  height: 200px;
  margin: 0 auto 22px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 260ms ease;
}
.org-card:hover .org-photo { border-color: var(--gold); }
.org-photo-lg { width: 200px; height: 267px; }

.org-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.org-card:hover .org-photo img { transform: scale(1.04); }

.org-name {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.org-card-lg .org-name { font-size: 26px; }

.org-role {
  display: inline-block;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(199, 169, 107, 0.1);
  border-radius: 2px;
}
.org-card-lg .org-role { font-size: 13px; }

@media (max-width: 980px) {
  .org-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .org-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .org-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: none; gap: 20px; }
  .org-card { padding: 26px 16px 22px; }
  .org-photo { width: 120px; height: 160px; }
  .org-card-lg { padding: 36px 24px 32px; }
  .org-photo-lg { width: 160px; height: 213px; }
  .org-name { font-size: 17px; }
  .org-card-lg .org-name { font-size: 22px; }
}

@media (max-width: 480px) {
  .org-grid-4,
  .org-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: none; gap: 14px; }
  .org-card { padding: 18px 10px 16px; }
  .org-photo { width: 100px; height: 133px; }
  .org-name { font-size: 15px; }
  .org-role { font-size: 10px; padding: 2px 8px; }
}

/* 组织架构 v2（横向卡片：照片左 + 文字右）-------------------------------- */
.org2-section { padding-block: clamp(12px, 1.5vw, 24px); }

.org2-intro {
  max-width: 680px;
  margin: 0 auto clamp(40px, 4vw, 64px);
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
}

.org2-tier { margin-bottom: clamp(12px, 1.5vw, 24px); }
.org2-tier:last-child { margin-bottom: 0; }

.org2-tier-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.org2-tier-label::before,
.org2-tier-label::after {
  content: '';
  flex: 0 0 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.org2-tier-label::after { background: linear-gradient(90deg, var(--gold), transparent); }
.org2-tier-label small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 2px;
}

.org2-grid { display: grid; gap: 18px; }
.org2-grid-1 { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
.org2-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 660px; margin-inline: auto; }
.org2-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 840px; margin-inline: auto; }
.org2-grid-4 { grid-template-columns: repeat(4, 1fr); }

.org2-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 260ms ease, box-shadow 260ms ease;
}
.org2-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(7, 17, 31, 0.08);
}

.org2-card-lg { flex-direction: row; text-align: left; padding: 28px 34px; gap: 24px; justify-content: center; }

.org2-photo {
  flex: 0 0 auto;
  width: 110px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 260ms ease;
}
.org2-card:hover .org2-photo { border-color: var(--gold); }
.org2-photo-lg { width: 160px; }

.org2-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 600ms ease;
}
.org2-card:hover .org2-photo img { transform: scale(1.04); }

.org2-info { min-width: 0; }
.org2-name {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.org2-card-lg .org2-name { font-size: 24px; }

.org2-role {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(199, 169, 107, 0.1);
  border-radius: 2px;
}
.org2-card-lg .org2-role { font-size: 18px; }

.org2-company {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-soft);
  word-break: break-word;
}
.org2-title {
  margin: 0;
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.75;
}
.org2-card-lg .org2-company { font-size: 14px; }
.org2-card-lg .org2-title { font-size: 12px; }

@media (max-width: 980px) {
  .org2-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .org2-grid-4,
  .org2-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: none; gap: 14px; }
  .org2-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: none; gap: 14px; }
  .org2-card { padding: 14px 14px; gap: 14px; }
  .org2-photo { width: 80px; }
  .org2-name { font-size: 15px; }
  .org2-role { font-size: 14px; padding: 2px 8px; }
  .org2-card-lg { padding: 22px 24px; gap: 18px; }
  .org2-photo-lg { width: 120px; }
  .org2-card-lg .org2-name { font-size: 20px; }
  .org2-company { font-size: 11px; }
  .org2-title { font-size: 10px; }
  .org2-card-lg .org2-company { font-size: 13px; }
  .org2-card-lg .org2-title { font-size: 11px; }
  .dwgk-banner { padding: 28px 14px 24px; margin-bottom: 28px; }
  .dwgk-banner-title { font-size: 18px; letter-spacing: 1px; }
}

@media (max-width: 380px) {
  .org2-grid-4,
  .org2-grid-3,
  .org2-grid-2 { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}

/* 党务公开 - 支部委员会标题横幅 */
.dwgk-banner {
  text-align: center;
  padding: 36px 24px 32px;
  margin-bottom: 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 40, 28, 0.06), transparent 60%),
    linear-gradient(180deg, #fef9f6 0%, #ffffff 100%);
  border: 1px solid rgba(192, 40, 28, 0.14);
  border-radius: 12px;
}
.dwgk-banner-star {
  font-size: 20px;
  color: #c0281c;
  line-height: 1;
  margin-bottom: 10px;
}
.dwgk-banner-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: #a02818;
  letter-spacing: 2px;
  margin: 0 0 8px;
  line-height: 1.3;
}
.dwgk-banner-sub {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 1px;
  margin: 0;
}
.dwgk-banner-line {
  width: 40px;
  height: 2px;
  background: #c0281c;
  border-radius: 2px;
  margin: 10px auto 0;
}
