@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  /* Target standard WordPress content areas in Kadence */
  .entry-content h1 {
    @apply text-4xl font-extrabold text-slate-900 mb-6 mt-8;
  }
  .entry-content h2 {
    @apply text-3xl font-bold text-slate-800 mb-4 mt-8;
  }
  .entry-content h3 {
    @apply text-2xl font-bold text-slate-800 mb-4 mt-6;
  }
  .entry-content p {
    @apply text-lg text-slate-600 mb-4 leading-relaxed;
  }
  .entry-content a {
    @apply text-primary font-bold hover:underline;
  }
  .entry-content ul {
    @apply list-disc list-inside mb-4 text-slate-600 text-lg;
  }
  .entry-content ol {
    @apply list-decimal list-inside mb-4 text-slate-600 text-lg;
  }
}