.qc-home-stats-grid {
  align-items: stretch;
}

.qc-home-stat-card {
  display: flex !important;
  min-height: 184px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px !important;
  padding: 24px 18px !important;
  border: 1px solid #d5e2f0 !important;
  border-radius: 14px !important;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 56, 120, .07) !important;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.qc-home-stat-card:hover {
  border-color: #c8d9ee !important;
  box-shadow: 0 12px 30px rgba(16, 56, 120, .11) !important;
  transform: translateY(-5px);
}

.qc-home-stat-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  color: #0d63cb;
  background: #e8f0fb;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.qc-home-stat-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.qc-home-stat-card:hover .qc-home-stat-icon {
  color: #ffffff;
  background: #0d63cb;
  transform: translateY(-2px) scale(1.04);
}

.qc-home-stat-value {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 0;
  color: #0d63cb;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.qc-home-stat-value b {
  font: inherit;
}

.qc-home-stat-value em {
  color: #4a7ab5;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.qc-home-stat-value small {
  color: #61708a;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.qc-home-stat-label {
  margin: 0;
  color: #3e5068;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}

@media (max-width: 640px) {
  .qc-home-stat-card {
    min-height: 164px;
    padding: 20px 12px !important;
  }

  .qc-home-stat-value {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qc-home-stat-card,
  .qc-home-stat-icon {
    transition: none;
  }
}
