/* Marin County -- Dusty Blue */
:root {
  --county:        #7BA3BC;
  --county-light:  #8fb5ca;
  --county-dim:    rgba(123,163,188,0.08);
  --county-border: rgba(123,163,188,0.32);
}

/* About page "Family Court" label above h1 */
.fc-label {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.site-header h1 {
  font-size: clamp(1.2rem, 3vw, 1.375rem);
}

/* About page header county subtitle */
.about-header-county {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  color: var(--stone);
  font-style: italic;
  line-height: 1.5;
  margin-top: 6px;
}

/* Sources and Public Record button */
.validity-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(46,41,38,0.05);
}
.validity-section p {
  font-size: 0.88rem;
  color: rgba(46,41,38,0.68);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.sources-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--county-border);
  color: var(--county);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}
.sources-btn:hover {
  background: var(--county-dim);
  border-color: var(--county);
}
.sources-list {
  display: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sources-list.open {
  display: block;
}
.sources-list ol {
  padding-left: 20px;
  margin: 0;
}
.sources-list li {
  font-size: 0.83rem;
  color: rgba(46,41,38,0.72);
  line-height: 1.7;
  margin-bottom: 10px;
}
.sources-list li:last-child {
  margin-bottom: 0;
}
