/* 团队风采文章拼图：字号延续公司简介的 40/24/16/14px 层级。 */
.qc-team-content {
  min-height: 0;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

.qc-team-container {
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
}

.qc-team-stories {
  padding: 104px 0 120px;
  background: #f5f7fa;
}

.qc-team-section-heading {
  max-width: 760px;
  margin: 0;
}

.qc-team-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.qc-team-filter {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid #e2e7ef;
  border-radius: 6px;
  background: #ffffff;
}

.qc-team-filter button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  color: #596170;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease;
}

.qc-team-filter button:hover,
.qc-team-filter button:focus-visible { color: #0052d9; outline: none; }
.qc-team-filter button.is-active { color: #ffffff; background: #0052d9; }
.qc-team-filter button:focus-visible { box-shadow: 0 0 0 3px rgba(30, 90, 150, .18); }

.qc-team-load-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: #596170;
  font-size: 14px;
  text-align: center;
}

.qc-team-section-heading h2,
.qc-team-cta h2 {
  margin: 0;
  color: #001d3d;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.qc-team-section-heading p,
.qc-team-cta p {
  margin: 18px 0 0;
  color: #2f3744;
  font-size: 16px;
  line-height: 1.8;
}

.qc-team-mosaic {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.qc-team-story {
  position: relative;
  display: block;
  min-width: 0;
  grid-column: auto;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  background: #001d3d;
}

.qc-team-story--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.qc-team-story--feature + .qc-team-story,
.qc-team-story--feature + .qc-team-story + .qc-team-story {
  grid-column: auto;
}

.qc-team-story--wide {
  grid-column: auto;
}

@media (min-width: 981px) {
  .qc-team-story--wide[data-team-extra] {
    grid-column: span 2;
  }
}

.qc-team-more {
  display: grid;
  min-height: 250px;
  place-content: center;
  gap: 12px;
  border: 1px dashed #0052d9;
  border-radius: 8px;
  color: #0052d9;
  background: #f5f7fa;
  text-align: center;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.qc-team-more[hidden],
.qc-team-story[hidden] { display: none; }

.qc-team-more > span { font-size: 40px; font-weight: 700; letter-spacing: 0; line-height: 1; }
.qc-team-more > strong { font-size: 16px; }
.qc-team-more:hover,
.qc-team-more:focus-visible { border-color: #0052d9; color: #ffffff; background: #0052d9; outline: none; transform: translateY(-4px); }

.qc-team-story--entering { animation: qc-team-story-in .48s cubic-bezier(.22, 1, .36, 1) both; }

@keyframes qc-team-story-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.qc-team-story::after {
  position: absolute;
  inset: 30% 0 0;
  content: "";
  background: linear-gradient(to top, rgba(12, 35, 64, .92), rgba(12, 35, 64, 0));
  transition: opacity .3s ease;
}

.qc-team-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
}

.qc-team-story__content {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
}

.qc-team-story__content small {
  color: #edf3ff;
  font-size: 14px;
  font-weight: 700;
}

.qc-team-story__content strong {
  margin-top: 7px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.qc-team-story__content > span {
  max-height: 24px;
  margin-top: 10px;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height .3s ease, margin .3s ease, opacity .3s ease, transform .3s ease;
}

.qc-team-story:hover,
.qc-team-story:focus-visible {
  outline: 3px solid rgba(30, 90, 150, .28);
  outline-offset: 3px;
}

.qc-team-story:hover img,
.qc-team-story:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.qc-team-story:hover .qc-team-story__content > span,
.qc-team-story:focus-visible .qc-team-story__content > span {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(8px);
}

.qc-team-cta {
  padding: 80px 0;
  border-top: 1px solid #e2e7ef;
  background: #ffffff;
}

.qc-team-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.qc-team-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 14px;
}

.qc-team-button {
  display: inline-flex;
  min-width: 154px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #0052d9;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.qc-team-button--primary { color: #ffffff; background: #0052d9; }
.qc-team-button--secondary { color: #0052d9; background: #ffffff; }

.qc-team-button:hover,
.qc-team-button:focus-visible {
  color: #ffffff;
  background: #0052d9;
  box-shadow: 0 10px 24px rgba(30, 90, 150, .2);
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .qc-team-heading-row { align-items: flex-start; flex-direction: column; gap: 28px; }
  .qc-team-mosaic { grid-auto-rows: 240px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qc-team-story--feature { grid-column: span 2; grid-row: span 2; }
  .qc-team-more { min-height: 240px; }
}

@media (max-width: 767px) {
  .qc-team-container { width: calc(100% - 32px); }
  .qc-team-stories { padding: 64px 0; }
  .qc-team-section-heading { margin-bottom: 32px; }
  .qc-team-heading-row { margin-bottom: 32px; }
  .qc-team-section-heading { margin-bottom: 0; }
  .qc-team-filter { width: 100%; overflow-x: auto; }
  .qc-team-filter button { flex: 1 0 auto; }
  .qc-team-section-heading h2,
  .qc-team-cta h2 { font-size: 28px; }
  .qc-team-section-heading p,
  .qc-team-cta p { font-size: 15px; }
  .qc-team-mosaic { display: grid; grid-auto-rows: auto; grid-template-columns: 1fr; gap: 16px; }
  .qc-team-story,
  .qc-team-story--feature,
  .qc-team-story--feature + .qc-team-story,
  .qc-team-story--feature + .qc-team-story + .qc-team-story,
  .qc-team-story--wide { min-height: 300px; grid-column: auto; grid-row: auto; }
  .qc-team-story--feature { min-height: 420px; }
  .qc-team-more { min-height: 220px; }
  .qc-team-story__content { right: 22px; bottom: 22px; left: 22px; }
  .qc-team-story__content strong { font-size: 22px; }
  .qc-team-story__content > span { max-height: 24px; margin-top: 8px; opacity: 1; transform: none; }
  .qc-team-cta { padding: 56px 0; }
  .qc-team-cta__inner { align-items: stretch; flex-direction: column; gap: 28px; }
  .qc-team-cta__actions { flex-direction: column; }
  .qc-team-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .qc-team-story img,
  .qc-team-story__content > span,
  .qc-team-filter button,
  .qc-team-more,
  .qc-team-button { transition: none; }
  .qc-team-story:hover img,
  .qc-team-story:focus-visible img,
  .qc-team-button:hover,
  .qc-team-button:focus-visible { transform: none; }
  .qc-team-story--entering { animation: none; }
}
