/* Fix Chrome deprecation warning: H1UserAgentFontSizeInSection */
/* Explicit h1 sizing prevents reliance on deprecated UA stylesheet behavior */

h1 {
  font-size: 2.25rem; /* text-4xl */
  line-height: 2.5rem;
  font-weight: 700;
}

article h1,
section h1,
aside h1,
nav h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}

/* Hero title override (already handled by .hero-title class, but explicit) */
.hero-title {
  font-size: inherit; /* Let Tailwind classes control */
}

/* Prose content h1 if needed */
.prose h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
