/* ===== utilities.css (single-purpose helpers) ===== */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto;
  width: 100%;
  max-width: clamp(200px, 40%, 500px);
  gap: 8px;
  opacity: 0.85;
}

.section-divider .fleur {
  font-size: 1.2rem;
  color: var(--accent);
}

.section-divider .line {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.15);
  border-radius: 2px;
}

/* ==========================
   NARROW CONTENT WRAPPER
   Centers and limits text width for readability
   ========================== */
.content-narrow {
  display: block;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.evidence {
  margin: 2rem auto;
  text-align: center;
  max-width: 700px;
}
.evidence img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.evidence figcaption {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.evidence a {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--accent, #0056b3);
  text-decoration: underline;
}
.evidence a:hover {
  text-decoration: none;
}


