/* =========================================================================
   RIVERSIDE-COUNTY.CSS — Riverside County page sections only
   (Hero + CTA band use shared component.css styles.)
   ========================================================================= */

/* ---- 02 Market Context (two-column) ----------------------------------- */
.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 Home Market Callout ------------------------------------------- */
.home-callout {
  background: var(--surface-light);
  padding: var(--section-pad) 0;
}

.callout-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.callout-card .section-title {
  margin-bottom: 30px;
}

.callout-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.callout-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.callout-point i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  font-size: 1.25rem;
}

.callout-point span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.5;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .callout-points {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto;
  }
}
