/* =========================================================================
   LOS-ANGELES-COUNTY.CSS — Los Angeles County page sections only
   (Hero + CTA band use shared component.css styles.)
   ========================================================================= */

/* ---- 02 Market Context (centered) ------------------------------------- */
.county-context {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.context-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.context-text p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.context-text p:last-child {
  margin-bottom: 0;
}

/* ---- 03 Services (four-pillar grid) ----------------------------------- */
.county-services {
  background: var(--surface-light);
  padding: var(--section-pad) 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.pillar-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--icon-bg);
  color: var(--icon);
  font-size: 1.25rem;
}

.pillar-title {
  color: var(--navy);
  margin: 0;
  font-size: 1.0625rem;
}

.pillar-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}
