/* "Time savings" / "Cost savings" stat cards in the Create Brand section.
   components/stat-card.html */
.stat-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fefeff;
  border: 0.625px solid var(--color-border-light);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-brand-mid);
}

.stat-card__body {
  flex: 1;
  min-width: 0;
}

.stat-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card__icon--green {
  background: linear-gradient(135deg, #e8f8ef 0%, #c6f0d8 100%);
}

.stat-card__icon--amber {
  background: linear-gradient(135deg, #fef9e7 0%, #fde68a 100%);
}

.stat-card__icon img {
  width: 15px;
  height: 15px;
}

.stat-card__label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #23b0ee;
}

.stat-card__value {
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
}

.stat-card__value span {
  color: var(--color-brand);
}
