/* ==========================================
   荣誉资质页样式 - 河南新唯思教育
   全新设计：数据总览 + 精选荣誉 + 时间轴 + 合作伙伴 + 媒体关注
   ========================================== */

/* ========== Banner 区域 ========== */
.honors-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.honors-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1266DE 0%, #1a4db5 50%, #0d3a8a 100%);
  z-index: 1;
}

.honors-banner .banner-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,212,170,0.15) 0%, transparent 50%),
    linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  z-index: 2;
}

.honors-banner .container {
  position: relative;
  z-index: 3;
}

.banner-content {
  text-align: center;
  color: #fff;
}

.banner-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: titleFadeIn 0.6s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }

@keyframes titleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-subtitle {
  font-size: 20px;
  opacity: 0.9;
  font-weight: 300;
  animation: subtitleFadeIn 0.8s ease 0.6s forwards;
  opacity: 0;
}

@keyframes subtitleFadeIn {
  to {
    opacity: 0.9;
  }
}

/* 滚动指示器 */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  margin-bottom: 8px;
  position: relative;
}

.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 1.5s infinite;
}

@keyframes wheelScroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== 实力数据总览区 ========== */
.stats-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bar-color, var(--primary-color));
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-family: var(--font-family-number);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stat-unit {
  font-size: 32px;
  color: var(--accent-color);
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== 荣誉类型导航 ========== */
.honors-filter-section {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.filter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.filter-tab:hover {
  background: rgba(18,102,222,0.05);
  color: var(--primary-color);
}

.filter-tab.active {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.filter-tab i {
  font-size: 16px;
}

.filter-line {
  width: 100%;
  max-width: 600px;
  height: 2px;
  background: rgba(0,0,0,0.05);
  margin-top: 16px;
  border-radius: 1px;
  position: relative;
}

.filter-line-active {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

/* ========== 精选荣誉展示 ========== */
.featured-honors-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.honor-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
}

.honor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* ========== 多图卡片堆叠效果 ========== */
.honor-card[data-images]::before,
.honor-card[data-images]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  z-index: -1;
  transition: all var(--transition-base);
}

.honor-card[data-images]::before {
  transform: rotate(2deg) translate(4px, 4px);
  opacity: 0.7;
}

.honor-card[data-images]::after {
  transform: rotate(-1.5deg) translate(-3px, 6px);
  opacity: 0.5;
}

/* 悬停时轻微展开 */
.honor-card[data-images]:hover::before {
  transform: rotate(4deg) translate(8px, 8px);
  opacity: 0.8;
}

.honor-card[data-images]:hover::after {
  transform: rotate(-3deg) translate(-6px, 10px);
  opacity: 0.6;
}

/* 多图角标 */
.honor-image-count {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 3;
}

.honor-image-count i {
  font-size: 11px;
}

.honor-card-featured {
  grid-column: span 2;
  grid-row: span 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.honor-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.honor-card-featured .honor-image-wrapper {
  aspect-ratio: auto;
  height: 100%;
}

.honor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.honor-card:hover .honor-image {
  transform: scale(1.05);
}

.honor-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.honor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18,102,222,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.honor-card:hover .honor-overlay {
  opacity: 1;
}

.honor-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.honor-card:hover .honor-btn {
  transform: translateY(0);
  opacity: 1;
}

.honor-btn:nth-child(2) {
  transition-delay: 0.1s;
}

.honor-btn:hover {
  background: var(--accent-color);
  color: #fff;
}

.honor-content {
  padding: 24px;
}

.honor-card-featured .honor-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.honor-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.honor-type {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary-color);
  background: rgba(18,102,222,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.honor-year {
  font-size: 13px;
  color: var(--text-muted);
}

.honor-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.honor-card-featured .honor-name {
  font-size: 24px;
}

.honor-issuer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.honor-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 查看更多按钮 */
.view-more-wrapper {
  text-align: center;
  margin-top: 48px;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-full);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition-base);
}

.btn-view-more:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-view-more i {
  transition: transform var(--transition-base);
}

.btn-view-more:hover i {
  transform: translateY(3px);
}

/* ========== 时间轴区域 ========== */
.timeline-section {
  padding: 80px 0;
  background: #fff;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.timeline-year {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-family-number);
}

.timeline-content {
  width: calc(50% - 60px);
  padding: 24px;
  background: var(--bg-color);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-honors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-honor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.timeline-honor:hover {
  background: var(--primary-color);
  color: #fff;
}

.timeline-honor i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,102,222,0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 12px;
}

.timeline-honor:hover i {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ========== 合作伙伴区域 ========== */
.partners-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.partners-marquee {
  overflow: hidden;
  margin-bottom: 48px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.partner-logo:hover img {
  transform: scale(0.88) translateY(-6px);
}

/* Logo 悬停显示名称 */
.partner-logo .partner-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partner-logo:hover .partner-name {
  transform: translateY(0);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.partner-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 28px;
}

.partner-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.partner-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== 媒体关注区域 ========== */
.media-section {
  padding: 80px 0;
  background: #fff;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  background: var(--bg-color);
  border-radius: 16px;
  padding: 32px;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.media-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.media-logo {
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.media-logo img {
  max-height: 100%;
  width: auto;
}

.media-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.media-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.media-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.media-name {
  color: var(--primary-color);
  font-weight: 500;
}

.media-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.media-link i {
  transition: transform var(--transition-base);
}

.media-card:hover .media-link i {
  transform: translateX(4px);
}

/* ========== 商务合作 CTA ========== */
.cooperation-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(18,102,222,0.95) 0%, rgba(13,58,138,0.95) 100%),
              url('https://iph.href.lu/1920x600?text=Background') center/cover;
  z-index: 1;
}

.cooperation-cta .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-base);
}

.cta-buttons .btn-primary {
  background: #fff;
  color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.cta-buttons .btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
  transform: scale(1.05);
}

/* ========== 荣誉详情侧边面板 ========== */
.honor-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-base);
}

.honor-panel.active {
  visibility: visible;
  opacity: 1;
}

.panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.panel-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 600px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.honor-panel.active .panel-content {
  transform: translateX(0);
}

.panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
  z-index: 10;
  transition: all var(--transition-fast);
}

.panel-close:hover {
  background: var(--primary-color);
  color: #fff;
}

.panel-body {
  padding: 0;
}

/* ========== 详情面板图片轮播 ========== */
.panel-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-color);
}

.panel-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.panel-carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.panel-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.panel-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 14px;
  z-index: 10;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 0;
}

.panel-carousel:hover .panel-carousel-nav {
  opacity: 1;
}

.panel-carousel-nav:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.panel-carousel-nav.disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
}

.panel-carousel-nav.disabled:hover {
  background: rgba(255,255,255,0.9);
  color: var(--text-dark);
  transform: translateY(-50%);
}

.panel-carousel-prev {
  left: 12px;
}

.panel-carousel-next {
  right: 12px;
}

/* 圆点指示器 */
.panel-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.panel-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.panel-carousel-dot:hover {
  background: rgba(255,255,255,0.8);
}

.panel-carousel-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* 单图时隐藏导航 */
.panel-carousel.single-image .panel-carousel-nav,
.panel-carousel.single-image .panel-carousel-dots {
  display: none;
}

.panel-info {
  padding: 32px;
}

.panel-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary-color);
  background: rgba(18,102,222,0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.panel-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.panel-issuer {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.panel-divider {
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 20px 0;
}

.panel-detail {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.panel-actions {
  margin: 20px 0;
}

.btn-view-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-base);
}

.btn-view-large:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.panel-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.panel-year {
  font-size: 14px;
  color: var(--text-muted);
  background: var(--bg-color);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

/* ========== 图片灯箱 ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-base);
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.lightbox-content {
  position: relative;
  z-index: 5;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* 灯箱翻页按钮 */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  z-index: 10;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox-nav.disabled:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* 灯箱页码 */
.lightbox-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 20px;
  z-index: 10;
  font-family: var(--font-family-number);
}

/* ========== 响应式设计 ========== */
@media (max-width: 1199px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .honor-card-featured {
    grid-column: span 2;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .banner-title {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
  
  .timeline-dot {
    left: 20px;
    width: 60px;
    height: 60px;
  }
  
  .timeline-year {
    font-size: 14px;
  }
  
  .timeline-content {
    width: calc(100% - 100px);
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 767px) {
  .honors-banner {
    min-height: 400px;
  }
  
  .banner-title {
    font-size: 32px;
    flex-wrap: wrap;
  }
  
  .banner-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .filter-tabs {
    gap: 8px;
  }
  
  .filter-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .honor-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .honor-card-featured .honor-image-wrapper {
    aspect-ratio: 16/9;
    height: auto;
  }
  
  .honor-name {
    font-size: 18px;
  }
  
  .honor-card-featured .honor-name {
    font-size: 20px;
  }
  
  /* 移动端 Logo 滚动加速 + 缩小 */
  .marquee-track {
    gap: 20px;
    animation-duration: 12s;
  }
  
  .partner-logo {
    width: 100px;
    height: 100px;
    padding: 14px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* 移动端合作伙伴卡片紧凑样式 */
  .partner-card {
    padding: 16px 12px;
    border-radius: 12px;
    cursor: pointer;
  }
  
  .partner-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .partner-card h4 {
    font-size: 14px;
    margin-bottom: 0;
    transition: margin 0.3s ease;
  }
  
  /* 默认隐藏描述，点击展开 */
  .partner-card p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    transition: all 0.3s ease;
  }
  
  /* 展开状态 */
  .partner-card.expanded {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
  }
  
  .partner-card.expanded h4 {
    margin-bottom: 8px;
  }
  
  .partner-card.expanded p {
    max-height: 100px;
    opacity: 1;
    margin-top: 0;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .panel-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .honors-filter-section {
    top: 70px;
  }
  
  .filter-wrapper {
    align-items: stretch;
    width: 100%;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .filter-tab {
    flex-shrink: 0;
  }
  
  .timeline-content {
    padding: 16px;
  }
  
  .timeline-honor {
    padding: 10px 12px;
    font-size: 13px;
  }
}
