
/* Container for the ticker, extended to full viewport width */
.stats-ticker-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #1d639b;
  padding: 30px 0;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  border-top: #1d639b 1px solid;
  border-bottom: #1d639b 1px solid;
}

/* Horizontal flex track for the scrolling stats */
.stats-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
}

/* Group wrapper for individual stat items */
.stat-group {
  display: flex;
  flex-shrink: 0;
}

/* Each stat item inside the ticker */
.stat-item {
  display: flex;
  align-items: center;
  padding: 0 60px;
  white-space: nowrap;
}

/* Main numeric value styling */
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-right: 15px;
  font-family: sans-serif;
}

/* Description text for each stat */
.stat-desc {
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", Sans-Serif;
}

/* Smaller explanatory text inside descriptions */
.stat-desc small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.6;
  text-transform: none;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 769px) {
  .stats-ticker-container {
    padding: 10px 0;
  }
  .stat-item {
    padding: 0 20px;
    white-space: wrap;
  }
  .stat-value {
    font-size: 22px;
  }
  .stat-desc {
    font-size: 14px;
  }
}

/* Duplicate styles removed; the first block above defines the ticker styling. */
