/* SEO intro paragraphs — readable, not hidden from crawlers */
.seoIntro {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border, rgba(148, 163, 184, 0.22));
  background: var(--panel, rgba(15, 23, 42, 0.35));
}

.seoIntro--compact {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.seoIntro__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text, #e2e8f0);
}

.seoIntro__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted, #94a3b8);
  max-width: 72ch;
}

html[data-theme="light"] .seoIntro {
  background: #f8fafc;
  border-color: #e2e8f0;
}

html[data-theme="light"] .seoIntro__title {
  color: #0f172a;
}

html[data-theme="light"] .seoIntro__text {
  color: #475569;
}
