/*
 * The reference runtime loads the shared footer stylesheet after Tailwind's generated
 * utilities. Next's resource loader keeps the shared links ahead of the page
 * links, so this tiny external parity layer restores the same final cascade
 * without reintroducing inline CSS.
 */
h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--mck-navy);
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  h3 { margin-bottom: 20px; }
}
