/**
 * Stats Row Block Styles
 * 
 * Extracted from assets/scss/templates/_homepage.scss as part of ACF Blocks integration.
 * This file contains styles for the Stats Row block displaying statistics with values and labels.
 * 
 * Note: These styles apply to both the ACF block (when used in Gutenberg)
 * and the legacy homepage template (until fully migrated).
 * 
 * WordPress block wrapper classes (wp-block-tax-court-stats-row) are
 * handled automatically by get_block_wrapper_attributes() in the template.
 * 
 * Related: ACF-016, INTERIOR-022
 */
/**
 * Brand Token System
 * 
 * Centralized design tokens for the Tax Court USWDS Theme.
 * All color, typography, spacing, layout, and accessibility values are defined here.
 */
/**
 * Apply text style from a typography token map
 * 
 * @param {Map} $style-map - Typography token map (e.g., $text-page-heading)
 */
/**
 * Apply focus ring styling for keyboard navigation
 */
/**
 * Ensure minimum touch target size for accessibility
 */
/**
 * Mobile breakpoint media query
 */
/**
 * Desktop breakpoint media query
 */
/* =============================================================================
   Stats Row Block
   ============================================================================= */
.stats-row,
.wp-block-tax-court-stats-row {
  padding: 64px 0;
  background-color: #F2F4F7;
}

.stats-row__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
@media (max-width: 767px) {
  .stats-row__container {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.stats-row__item {
  text-align: center;
}

.stats-row__value {
  font-family: "Merriweather", Georgia, serif;
  font-size: 3rem; /* 48px */
  font-weight: 700;
  line-height: 1.2;
  color: #103052;
  margin: 0 0 16px;
}
@media (max-width: 767px) {
  .stats-row__value {
    font-size: 2rem; /* 32px on mobile */
  }
}

.stats-row__label {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #6B7280;
  margin: 0;
}

.stats-row__description-text {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #6B7280;
  margin-top: 8px;
}
