/* =============================================================================
   学员风采页（lists_single_anli.htm）
   依赖：style.css :root 与 .container
   ============================================================================= */

.page-student-cases .sc-main {
  padding-top: 0;
}

/* -----------------------------------------------------------------------------
   Hero + 面包屑
   ----------------------------------------------------------------------------- */
.sc-hero {
  position: relative;
}

.sc-hero-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #0a1628;
}

.sc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sc-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 18, 40, 0.88) 0%,
    rgba(6, 18, 40, 0.52) 50%,
    rgba(6, 18, 40, 0.35) 100%
  );
  pointer-events: none;
}

.sc-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.sc-hero-copy {
  max-width: min(580px, 94vw);
  padding: 28px 0 36px;
}

.sc-hero-title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.sc-hero-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.sc-breadcrumb {
  background: var(--zg-gray-100);
  border-bottom: 1px solid var(--zg-border);
}

.sc-breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 12px 0 13px;
  font-size: 13px;
}

.sc-bc-link {
  color: var(--zg-text-secondary);
  transition: color 0.2s;
}

.sc-bc-link:hover {
  color: var(--zg-blue);
}

.sc-bc-sep {
  color: #b0b6bf;
}

.sc-bc-current {
  color: var(--zg-text-muted);
}

/* -----------------------------------------------------------------------------
   通用区块
   ----------------------------------------------------------------------------- */
.sc-section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.sc-surface-white {
  background: var(--zg-white);
}

.sc-surface-soft {
  background: linear-gradient(180deg, #f3f5f9 0%, #eef2f7 100%);
}

.sc-surface-muted {
  background: var(--zg-gray-50);
}

.sc-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.sc-en {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--zg-blue);
}

.sc-h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--zg-text);
  line-height: 1.25;
}

.sc-sublead {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #5c6370;
}

/* -----------------------------------------------------------------------------
   数据条
   ----------------------------------------------------------------------------- */
.sc-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 0 auto 44px;
  max-width: 920px;
  padding: 20px 16px;
  background: var(--zg-white);
  border-radius: var(--zg-radius-lg);
  border: 1px solid var(--zg-border);
  box-shadow: var(--zg-shadow-card);
}

.sc-stat {
  flex: 1 1 120px;
  text-align: center;
  padding: 8px 12px;
  min-width: 0;
}

.sc-stat-num {
  display: block;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--zg-blue);
  line-height: 1.1;
}

.sc-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--zg-text-secondary);
}

.sc-stat-sep {
  width: 1px;
  align-self: stretch;
  min-height: 44px;
  background: linear-gradient(180deg, transparent, #c5cedd 12%, #c5cedd 88%, transparent);
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   成长风采轮播 + 浮层卡
   ----------------------------------------------------------------------------- */
.sc-showcase-wrap {
  position: relative;
  border-radius: var(--zg-radius-lg);
  overflow: hidden;
  box-shadow: var(--zg-shadow-float);
  background: #0a1628;
}

.sc-growth-swiper {
  width: 100%;
}

.sc-growth-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.sc-showcase-ui {
  position: absolute;
  left: clamp(16px, 4vw, 36px);
  bottom: clamp(16px, 4vw, 36px);
  right: clamp(16px, 4vw, 36px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.sc-showcase-ui > * {
  pointer-events: auto;
}

.sc-showcase-card {
  max-width: min(380px, 92vw);
  padding: 18px 20px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--zg-radius-md);
  box-shadow: 0 10px 36px rgba(12, 28, 60, 0.18);
}

.sc-showcase-card-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--zg-text);
}

.sc-showcase-card-text {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--zg-text-secondary);
}

.sc-showcase-nav {
  display: flex;
  gap: 10px;
}

.sc-showcase-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--zg-blue);
  color: #fff;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.sc-showcase-btn:hover {
  background: var(--zg-blue-hover);
}

.sc-showcase-btn:active {
  transform: scale(0.96);
}

.sc-growth-pagination {
  position: static !important;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  margin: 0 !important;
  transform: none !important;
}

.sc-growth-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.sc-growth-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 6px;
  background: #fff;
}

/* -----------------------------------------------------------------------------
   就业案例 Tab + 双栏
   ----------------------------------------------------------------------------- */
.sc-case-stage {
  max-width: none;
  width: 100%;
}

.sc-case-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.sc-case-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  min-width: 0;
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: var(--zg-text-secondary);
  transition: color 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.sc-case-tab-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zg-gray-100);
  color: var(--zg-blue);
  border: 2px solid var(--zg-border);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.sc-case-tab-icon--photo {
  padding: 0;
  background: #dfe5ee;
}

.sc-case-tab-icon--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sc-case-tab-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
  max-width: 11em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-case-tab.is-active .sc-case-tab-icon,
.sc-case-tab:hover .sc-case-tab-icon {
  background: var(--zg-blue);
  color: #fff;
  border-color: var(--zg-blue);
  box-shadow: 0 6px 20px rgba(13, 110, 220, 0.28);
}

.sc-case-tab.is-active {
  color: var(--zg-blue);
}

.sc-case-panels {
  position: relative;
}

.sc-case-panel {
  display: none;
  padding: clamp(20px, 3vw, 28px);
  background: #eceff4;
  border-radius: var(--zg-radius-lg);
  border: 1px solid #dde3ec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.sc-case-panel.is-active {
  display: block;
}

.sc-case-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.sc-case-text {
  min-width: 0;
}

.sc-case-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  padding-top: 4px;
}

.sc-case-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--zg-border);
  border-radius: 999px;
  background: #fff;
  color: var(--zg-text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.sc-case-switch:hover {
  color: var(--zg-blue);
  border-color: var(--zg-blue);
  background: var(--zg-blue-soft);
}

.sc-case-switch-meta {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--zg-text-muted);
  min-width: 3.5em;
  text-align: center;
}

.sc-case-switch-current {
  color: var(--zg-blue);
}

.sc-case-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--zg-blue);
  letter-spacing: 0.04em;
}

.sc-case-heading {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--zg-text);
  line-height: 1.3;
}

.sc-case-desc {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.85;
  color: #5c6370;
}

.sc-case-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--zg-blue);
  transition: gap 0.2s, color 0.2s;
}

.sc-case-more:hover {
  color: var(--zg-blue-hover);
  gap: 10px;
}

.sc-case-feature-fig {
  margin: 0;
  border-radius: var(--zg-radius-md);
  overflow: hidden;
  background: #dfe5ee;
  box-shadow: 0 8px 28px rgba(15, 35, 70, 0.08);
}

.sc-case-feature-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.sc-case-thumbs-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 2px;
}

.sc-case-thumbs-swiper {
  flex: 1;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.sc-case-thumbs-swiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  transform: none !important;
  transition: none !important;
  width: max-content !important;
  box-sizing: border-box;
}

.sc-case-thumbs-swiper .swiper-slide {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  flex-shrink: 0;
}

.sc-case-thumb-btn {
  display: block;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: var(--zg-radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  line-height: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.sc-case-thumb-btn img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  display: block;
}

.sc-case-thumb-btn.is-current {
  border-color: var(--zg-blue);
  box-shadow: 0 0 0 1px rgba(13, 110, 220, 0.2);
}

.sc-case-thumb-nav {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--zg-border);
  background: #fff;
  color: var(--zg-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sc-case-thumb-nav:hover {
  background: var(--zg-blue-soft);
  border-color: var(--zg-blue);
}

/* -----------------------------------------------------------------------------
   发展路径手风琴 + 配图
   ----------------------------------------------------------------------------- */
.sc-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.sc-path-col--acc .sc-en {
  text-align: left;
}

.sc-path-col--acc .sc-h2 {
  text-align: left;
  margin-bottom: 22px;
}

.sc-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-acc-item {
  border-radius: var(--zg-radius-md);
  border: 1px solid var(--zg-border);
  background: var(--zg-white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sc-acc-item.is-active {
  border-color: var(--zg-blue);
  box-shadow: 0 8px 28px rgba(13, 110, 220, 0.12);
}

.sc-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.sc-acc-item.is-active .sc-acc-trigger {
  background: linear-gradient(90deg, rgba(13, 110, 220, 0.1) 0%, rgba(13, 110, 220, 0.02) 100%);
}

.sc-acc-num {
  font-size: 28px;
  font-weight: 800;
  color: rgba(13, 110, 220, 0.22);
  line-height: 1;
  min-width: 44px;
}

.sc-acc-item.is-active .sc-acc-num {
  color: var(--zg-blue);
}

.sc-acc-label {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--zg-text);
}

.sc-acc-toggle {
  font-size: 18px;
  font-weight: 700;
  color: var(--zg-blue);
  width: 28px;
  text-align: center;
}

.sc-acc-panel {
  padding: 0 18px 16px 74px;
  font-size: 14px;
  line-height: 1.75;
  color: #5c6370;
}

.sc-acc-panel[hidden] {
  display: none;
}

.sc-path-fig {
  margin: 0;
  border-radius: var(--zg-radius-lg);
  overflow: hidden;
  box-shadow: var(--zg-shadow-float);
  background: #dfe5ee;
}

.sc-path-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* -----------------------------------------------------------------------------
   影像宫格
   ----------------------------------------------------------------------------- */
.sc-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.sc-gallery-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--zg-border);
  background: var(--zg-white);
  font-size: 14px;
  font-weight: 600;
  color: var(--zg-text-secondary);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sc-gallery-tab.is-active {
  background: var(--zg-blue);
  color: #fff;
  border-color: var(--zg-blue);
}

.sc-gallery-tab:hover:not(.is-active) {
  border-color: var(--zg-blue);
  color: var(--zg-blue);
}

.sc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 22px);
}

.sc-gallery-card {
  min-width: 0;
  background: var(--zg-white);
  border-radius: var(--zg-radius-md);
  overflow: hidden;
  border: 1px solid var(--zg-border);
  box-shadow: var(--zg-shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sc-gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--zg-shadow-float);
}

.sc-gallery-card.is-hidden {
  display: none !important;
}

.sc-gallery-card-link {
  position: relative;
  display: block;
  line-height: 0;
  background: #0a1628;
}

.sc-gallery-card-link img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  opacity: 0.96;
  transition: opacity 0.25s, transform 0.35s;
}

.sc-gallery-card:hover .sc-gallery-card-link img {
  opacity: 1;
  transform: scale(1.03);
}

.sc-gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(6, 18, 40, 0.35);
  transition: background 0.2s;
}

.sc-gallery-card:hover .sc-gallery-play {
  background: rgba(6, 18, 40, 0.48);
}

.sc-gallery-card-title {
  margin: 12px 14px 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--zg-text);
  line-height: 1.35;
}

.sc-gallery-card-desc {
  margin: 0 14px 14px;
  font-size: 13px;
  color: var(--zg-text-muted);
  line-height: 1.5;
}

/* -----------------------------------------------------------------------------
   移动端
   ----------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .sc-stats {
    padding: 16px 10px;
  }

  .sc-stat-sep {
    display: none;
  }

  .sc-stats {
    gap: 12px 20px;
  }

  .sc-stat {
    flex: 1 1 42%;
    padding: 10px 8px;
  }

  .sc-showcase-ui {
    position: static;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: linear-gradient(180deg, #0e1f3d 0%, #0a1628 100%);
  }

  .sc-showcase-card {
    max-width: none;
  }

  .sc-growth-pagination {
    justify-content: center;
  }

  .sc-case-inner {
    grid-template-columns: 1fr;
  }

  .sc-case-feature-fig {
    order: -1;
  }

  .sc-case-switcher {
    flex-wrap: wrap;
    gap: 12px;
  }

  .sc-case-switch span:not(:empty) {
    display: none;
  }

  .sc-path-grid {
    grid-template-columns: 1fr;
  }

  .sc-path-col--img {
    order: -1;
  }

  .sc-acc-panel {
    padding-left: 18px;
  }

  .sc-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .sc-case-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .sc-case-tab {
    flex-shrink: 0;
  }

  .sc-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sc-gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .sc-gallery-tab {
    flex-shrink: 0;
  }
}
