/**
 * Shared section-heading style for the Signature Event page — Signaturee
 * 2026's own display face + color, not Kolabora's. One place to adjust the
 * look for every section at once (About/Denah&Tanggal/Lineup/Project/Brand/
 * Dokumentasi all use this).
 */
export function SignatureSectionHeading({
  children,
  className = "",
}: {
  children: React.ReactNode;
  className?: string;
}) {
  return (
    <h2 className={`font-signaturee text-2xl font-semibold text-signaturee-red sm:text-3xl ${className}`}>
      {children}
    </h2>
  );
}
