/*
 * State Module
 * ========================================================================
 * Styles for displaying statistics/state information in a horizontal
 * layout on desktop and vertical layout on mobile.
 */

/* ==========================================================================
   Base State Section Styles
   ========================================================================== */

.state-section {
  padding: 1.375rem 0;
  color: var(--bs-white);
}

.state-container {
  max-width: 100%;
  padding: 0 5rem;
}

.state-stats-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.state-stat-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.state-stat-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.875rem;
}

.state-heading {
  p {
    margin-bottom: 0;
  }
}

.state-divider {
  width: 0.0625rem;
  height: 2.25rem;
  background-color: var(--bs-white);
  opacity: 0.5;
}

/* ==========================================================================
   Mobile Styles
   ========================================================================== */

@media (max-width: 61.99875rem) {
  .state-section {
    padding: 3.125rem 0;
  }

  .state-stats-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .state-divider {
    display: none;
  }

  .state-stat-bold {
    font-size: 1.3125rem;
    line-height: 1.75rem;
  }

  .state-stat-normal {
    font-size: 1.3125rem;
    line-height: 1.75rem;
  }
}
