/* ============================================================
     DESIGN TOKENS — 党建红主题体系
  ============================================================ */
  :root {
    --red-900: #6B0A0A;
    --red-800: #8B1A1A;
    --red-700: #A81C1C;
    --red-600: #C41212;
    --red-500: #D81B1B;
    --red-400: #E53030;
    --gold-500: #C8960C;
    --gold-400: #DBA918;
    --gold-300: #F0C437;
    --gold-200: #FAD86A;
    --gold-100: #FEF4CC;
    --cream-50: #FFFDF5;
    --cream-100: #FEF7E8;
    --neutral-900: #1A1A1A;
    --neutral-700: #3D3D3D;
    --neutral-500: #6B6B6B;
    --neutral-200: #E8E8E8;
    --neutral-100: #F5F5F5;
    --white: #FFFFFF;

    --font-display: 'Noto Serif SC', 'Source Han Serif SC', '宋体', serif;
    --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-card: 0 2px 12px rgba(0,0,0,0.10);
    --shadow-hover: 0 8px 32px rgba(168,28,28,0.20);
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream-50);
    color: var(--neutral-900);
    line-height: 1.6;
    min-width: 1200px;
  }

  /* ============================================================
     TOP NAV BAR
  ============================================================ */
  .topbar {
    background: var(--red-900);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    padding: 6px 0;
    letter-spacing: 0.04em;
  }
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topbar a { color: rgba(255,255,255,0.7); text-decoration: none; margin-left: var(--space-md); transition: color var(--transition); }
  .topbar a:hover { color: var(--gold-300); }

  /* ============================================================
     HERO BANNER
  ============================================================ */
  .banner {
    position: relative;
    width: 100%;
    min-height: 490px;
    background: url('../image/bg.jpg') center/cover no-repeat;


 overflow: hidden;
  }

  /* 底部金色装饰线 */
  .banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-200), var(--gold-500), var(--gold-300), var(--gold-400));
  }
  /* ============================================================
     MAIN LAYOUT — 单栏全宽
  ============================================================ */
  .page-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
  }

  /* ============================================================
     SECTION TITLES
  ============================================================ */
  /* 面板内主标题：红色飘带 + 渐变横线 */
  .ceremonial-header {
    text-align: center;
    position: relative;
    padding: 36px 20px 48px;
    margin-bottom: var(--space-xl);
  }
  .ceremonial-header .ch-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
  }
  .ceremonial-header .ch-line {
    flex: 1;
    max-width: 110px;
    height: 1.5px;
    background: linear-gradient(to right, transparent, var(--red-500));
    position: relative;
  }
  .ceremonial-header .ch-line.ch-line-r {
    background: linear-gradient(to left, transparent, var(--red-500));
  }
  .ceremonial-header .ch-line::before {
    content: '';
    position: absolute;
    right: -3px; top: -3.5px;
    width: 8px; height: 8px;
    background: var(--red-500);
    transform: rotate(45deg);
    border-radius: 1px;
  }
  .ceremonial-header .ch-line.ch-line-r::before {
    left: -3px; right: auto;
  }
  .ceremonial-header .ch-title-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-700);
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  /* 红色飘带 */
  .ceremonial-header .ch-ribbon {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    max-width: 520px;
    height: 24px;
    z-index: 1;
  }
  .ceremonial-header .ch-ribbon::before,
  .ceremonial-header .ch-ribbon::after {
    content: '';
    position: absolute;
    top: 0; width: 20px; height: 100%;
    background: var(--red-600);
  }
  .ceremonial-header .ch-ribbon::before {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%);
  }
  .ceremonial-header .ch-ribbon::after {
    right: 0;
    clip-path: polygon(100% 0, 0 0, 15% 50%, 0 100%, 100% 100%);
  }
  .ceremonial-header .ch-ribbon-inner {
    position: absolute;
    top: 0; left: 20px; right: 20px; height: 100%;
    background: var(--red-600);
    border-radius: 0 0 0 0;
  }

  .section-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--neutral-200);
    position: relative;
  }
  .section-header::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 64px;
    height: 2px;
    background: var(--red-500);
  }
  .section-icon {
    width: 28px;
    height: 28px;
    background: var(--red-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--red-700);
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .section-title-en {
    font-size: 0.7rem;
    color: var(--neutral-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ============================================================
     表彰通知 — 全宽文字段落样式
  ============================================================ */
  .notice-block {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: var(--space-xl);
  }
  .notice-block-header {
    background: linear-gradient(135deg, var(--red-700), var(--red-500));
    padding: var(--space-sm) var(--space-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.95rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  .notice-block-header span { color: var(--gold-300); }
  .notice-block-body {
    padding: var(--space-lg) var(--space-xl);
    font-size: 1.22rem;
    color: var(--neutral-700);
    line-height: 2;
    letter-spacing: 0.04em;
    text-indent: 2em;
    background: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)), url('') center/cover no-repeat;
  }
  .notice-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--red-700);
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-indent: 0;
    margin-bottom: var(--space-xl);
  }
  .notice-block-body p + p { margin-top: var(--space-md); }
  .notice-block-footer {
    margin-right: 2.4em;
    padding: var(--space-sm) var(--space-xl) var(--space-md);
    text-align: right;
    font-size: 1.22rem;
    color: var(--neutral-700);
    /* border-top: 1px dashed var(--neutral-200); */
  }

  /* ============================================================
     MAIN CONTENT
  ============================================================ */
  .main-content { min-width: 0; }

  /* 顶部精选 Banner 轮播区 */
  .spotlight-section {
    margin-bottom: var(--space-xl);
  }

  .spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-md);
  }

  .spotlight-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
  .spotlight-card:first-child {
    grid-row: span 1;
    aspect-ratio: 3 / 4;
  }

  .spotlight-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .spotlight-card:hover .spotlight-photo { transform: scale(1.05); }

  /* 使用CSS渐变色块模拟照片背景 */
  .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }

  .spotlight-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(80,0,0,0.92) 0%, rgba(80,0,0,0.4) 60%, transparent 100%);
    padding: var(--space-md);
    color: white;
  }
  .spotlight-honor-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(200,150,12,0.9);
    color: white;
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .spotlight-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
  }
  .spotlight-dept {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05em;
  }
  .spotlight-quote {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ============================================================
     学院分类 TAB
  ============================================================ */
  .college-section { }

  .college-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
     }
  .college-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 38px;
    border-radius: 24px;
    font-size: 1.1rem;
    cursor: pointer;
    border: 1.5px solid var(--neutral-200);
    color: var(--neutral-600);
    background: var(--white);
    transition: all var(--transition);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
  .college-tab .tab-icon {
    font-size: 1rem;
    line-height: 1;
    transition: transform var(--transition);
  }
  .college-tab:hover {
    border-color: var(--red-400);
    color: var(--red-600);
    background: linear-gradient(135deg, rgba(168,28,28,0.04), rgba(200,150,12,0.06));
    transform: translateY(-1px);
  }
  .college-tab:hover .tab-icon {
    transform: scale(1.15);
  }
  .college-tab.active {
    background: linear-gradient(135deg, var(--red-700), var(--red-500));
    border-color: var(--red-600);
    color: white;
    box-shadow: 0 3px 12px rgba(168,28,28,0.35);
    font-weight: 600;
  }
  .college-tab.active .tab-icon {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
  }

  /* ============================================================
     表彰名单 — 平铺列表
  ============================================================ */
  .honor-panel { display: none; }
  .honor-panel.active { display: block; }

  /* 部门分组标题 — 党建仪式感：菱形端点 + 横线 + ★ */
  .dept-group { margin-bottom: var(--space-xl); }
  .dept-group-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--red-700);
    letter-spacing: 0.08em;
    padding-bottom: 12px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    border-bottom: 2px solid var(--neutral-100);
  }
  /* 底部红色短下划线，居中 */
  .dept-group-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--red-500);
  }
  /* 菱形端点装饰 */
  .dgt-deco {
    font-size: 0.7rem;
    color: var(--red-400);
    letter-spacing: -2px;
    user-select: none;
    flex-shrink: 0;
  }


  /* ═══ 人员卡片（竖向个人照 + 信息） ═══ */
  .person-card {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: var(--space-sm);
    border-left: 4px solid transparent;
  }
  .person-card:hover {
    border-left-color: var(--red-600);
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
  }

  .person-photo {
    width: 120px;
    height: 160px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--neutral-100);
  }
  .person-photo .t-photo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg1), var(--bg2));
  }
  .person-photo .t-icon { font-size: 2.6rem; opacity: 0.9; }
  .person-photo .t-initial {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-top: -4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }

  .person-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xs) 0;
  }
  .person-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }
  .person-title {
    font-size: 0.82rem;
    color: var(--neutral-500);
    margin-bottom: 6px;
    line-height: 1.5;
  }
  .person-honor {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--red-700), var(--red-500));
    color: white;
    font-size: 0.68rem;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: fit-content;
  }

  /* ═══ 组织卡片（横向团体照 + 信息） ═══ */
  .org-card-new {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: var(--space-md);
    border-top: 4px solid transparent;
  }
  .org-card-new:hover {
    border-top-color: var(--red-600);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }
  .org-card-department-new:hover {
    border-top-color: #2563EB;
  }

  .org-photo {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--neutral-100);
    position: relative;
  }
  .org-photo .g-photo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg1), var(--bg2));
  }
  .org-photo .g-icon {
    font-size: 3rem;
    opacity: 0.85;
    margin-bottom: 4px;
  }
  .org-photo .g-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }
  .org-photo .g-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.92);
    color: var(--red-700);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .org-info {
    padding: var(--space-md);
    border-left: 4px solid var(--red-600);
  }
  .org-card-department-new .org-info {
    border-left-color: #2563EB;
  }
  .org-name-new {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.4;
    margin-bottom: 4px;
  }
  .org-dept-new {
    font-size: 0.78rem;
    color: var(--neutral-500);
    letter-spacing: 0.04em;
  }
  .org-desc-new {
    font-size: 0.82rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-top: var(--space-sm);
    letter-spacing: 0.03em;
  }

  /* ============================================================
     底部专题介绍区
  ============================================================ */
  .intro-section {
    max-width: 1280px;
    margin: 0 auto var(--space-2xl);
      }
  .intro-section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--red-700);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--neutral-200);
    position: relative;
  }
  .intro-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 80px;
    height: 2px;
    background: var(--red-500);
  }
  .intro-banner {
    background: #9b1818;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-2xl);
    display: grid;
    grid-template-columns: .3fr .7fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(100,0,0,0.35);
  }
  .intro-banner::before {
    content: '★';
    position: absolute;
    right: 40px; top: 50%;
    transform: translateY(-50%);
    font-size: 18rem;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
    line-height: 1;
  }
  .intro-text h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold-300);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    line-height: 1.4;
  }
  .intro-text p {
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
  .intro-counts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--space-md);
  }
  .intro-count-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(200,150,12,0.4);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
  }
  .intro-count-item:hover {
    background: rgba(255,255,255,0.18);
    border-color: var(--gold-400);
    transform: translateY(-2px);
  }
  .intro-count-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-300);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
  }
  .intro-count-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.06em;
  }

  /* ============================================================
     快速链接区（页脚上方）
  ============================================================ */
  .quicklinks-section {
    max-width: 1280px;
    margin: 0 auto var(--space-2xl);
    padding: 0 var(--space-xl);
  }
  .quicklinks-section-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--red-700);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--neutral-200);
    position: relative;
  }
  .quicklinks-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 80px;
    height: 2px;
    background: var(--red-500);
  }
  .quicklinks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  .quicklink-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--white);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    color: var(--neutral-700);
    font-size: 0.88rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    font-weight: 500;
  }
  .quicklink-item:hover {
    border-color: var(--red-400);
    color: var(--red-600);
    background: rgba(168,28,28,0.04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
  .quicklink-item::before {
    content: '▶';
    font-size: 0.6rem;
    color: var(--red-500);
  }

  /* ============================================================
     FOOTER
  ============================================================ */
  .site-footer {
    background: #a91616;
    color: rgba(255,255,255,0.55);
    padding: var(--space-xl) 0 var(--space-lg);
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
  }
  .footer-links {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
  }
  .footer-links a:hover { color: var(--gold-300); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.05em;
  }
  .footer-bottom span {color: #ffffff;}

  /* ============================================================
     SCROLL REVEAL (lightweight)
  ============================================================ */
  .reveal {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ============================================================
     MODAL LIGHTBOX
  ============================================================ */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.open { display: flex; }
  .modal-card {
    background: white;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: none;
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: none; }
  }
  .modal-header {
    background: linear-gradient(135deg, var(--red-700), var(--red-500));
    padding: var(--space-sm) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }
  .modal-header h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.08em; }
  .modal-close {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
  }
  .modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: var(--space-sm) var(--space-lg) var(--space-lg);
}
.modal-photo {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.modal-photo-img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


  .modal-photo .t-photo { width: 100%; height: 100%; }
.modal-info {
  width: 100%;
  max-width: 1900px;
  flex-shrink: 0;
}
  .modal-name {
    display: none;
  }
  .modal-title { display: none; }
  .modal-desc {text-indent: 2em;font-size: 0.95rem;color: var(--neutral-700);line-height: 1.9;letter-spacing: 0.03em;white-space: pre-line;}
  .modal-desc::-webkit-scrollbar {
    width: 5px;
  }
  .modal-desc::-webkit-scrollbar-track {
    background: var(--neutral-100);
    border-radius: 4px;
  }
  .modal-desc::-webkit-scrollbar-thumb {
    background: var(--neutral-400);
    border-radius: 4px;
  }
  .modal-desc::-webkit-scrollbar-thumb:hover {
    background: var(--neutral-500);
  }

  /* ============================================================
     网格布局 — 简化卡片（照片+名称）
  ============================================================ */
.honor-grid { gap: var(--space-md); }

.honor-grid.cols-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.honor-grid.cols-5 > * {
  width: calc((100% - 4 * var(--space-md)) / 5);
}
.honor-grid.cols-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.honor-grid.cols-4 > * {
  width: calc((100% - 3 * var(--space-md)) / 5);
}
.honor-grid.cols-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.honor-grid.cols-3 > * {
  width: calc((100% - 2 * var(--space-md)) / 3);
}
.honor-grid.cols-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.honor-grid.cols-2 {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: var(--space-md);
}
.honor-grid.cols-2 div {max-width: 230px;}

  /* 简化人员卡片（竖向照片 + 姓名） */
  .person-card-simple {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
  }
  .person-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
  .person-card-simple .pc-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--neutral-100);
  }
  .person-card-simple .pc-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .person-card-simple:hover .pc-photo-img {
    transform: scale(1.08);
  }
  /* 保留占位符样式作为回退 */
  .person-card-simple .pc-photo-inner {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--bg1), var(--bg2));
  }
  .person-card-simple .pc-icon { font-size: 2.8rem; opacity: 0.9; }
  .person-card-simple .pc-initial {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    color: white; margin-top: -4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }
  .person-card-simple .pc-name {
    padding: var(--space-sm) var(--space-xs);
    font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 700;
    color: var(--neutral-900);
    letter-spacing: 0.05em;
    line-height: 1.3;
  }

  /* 竖向集体卡（照片在上 + 名称在下 + 居中） */
  .org-card-simple {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  .org-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
  .org-card-simple .oc-photo {
    width: 100%; height: 250px;
    overflow: hidden; background: var(--neutral-100);
  }
  .org-card-simple .oc-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .org-card-simple:hover .oc-photo-img {
    transform: scale(1.06);
  }
  .org-card-simple .oc-name {
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 700;
    color: var(--neutral-900); letter-spacing: 0.05em;
    line-height: 1.4;
  }

@media (max-width: 1200px) {
  .intro-text img {width: 18rem !important;}
  .modal-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .modal-header h3 {
    font-size: 1.1rem !important;
  }
  .modal-desc {
    font-size: 0.85rem;
  }
}