/**
 * Stats Strip Widget styles.
 */

/* Desktop layout (5 columns) */
.stats-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  align-items: start;
}



.stat-number {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #003361;
  margin: 0 0 10px 0; /* Standardize bottom spacing */
}

.stat-label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #828282;
  margin: 0;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet Layout (Max Width: 1024px) */
@media (max-width: 1024px) {



  .stats-grid {
    grid-template-columns: repeat(3, 1fr); /* Switch to 3 columns */
    gap: 40px 20px;
  }

  .stat-number {
    font-size: 38px; /* Slightly smaller numbers */
  }

  .stat-label {
    font-size: 18px;
  }
}

/* Mobile Layout (Max Width: 767px) */
@media (max-width: 767px) {

    .stat-item{
  flex: 1 1 20%; 
}

  .stats-grid {
    grid-template-columns: repeat(2, 1fr); /* Switch to 2 columns */
    gap: 35px 15px;
  }

  .stat-number {
    font-size: 32px; /* Scale down for mobile screens */
  }

  .stat-label {
    font-size: 15px; /* Scale down for mobile screens */
  }
}
