:root{
  /* Close to the palette in the provided project */
  --kz-primary:#1e40af;  /* blue */
  --kz-accent:#fbbf24;   /* gold */
}

/* Accessibility classes (match original logic) */
.font-size-normal{font-size:100%;}
.font-size-large{font-size:125%;}
.font-size-xlarge{font-size:150%;}
.high-contrast{filter:contrast(1.25);}
.monochrome{filter:grayscale(1);}

/* Helpers used in the original Tailwind setup */
.text-balance{ text-wrap: balance; }
.line-clamp-2{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* WP content defaults to look neat with Tailwind */
.entry-content h2{margin-top:1.5rem;margin-bottom:0.75rem;font-weight:700;font-size:1.5rem;}
.entry-content h3{margin-top:1.25rem;margin-bottom:0.5rem;font-weight:600;font-size:1.25rem;}
.entry-content p{margin:0.75rem 0;line-height:1.75;}
.entry-content ul{margin:0.75rem 0 0.75rem 1.25rem;list-style:disc;}
.entry-content a{color:var(--kz-primary);text-decoration:underline;text-underline-offset:2px;}

/* Simple dropdown + drawer */
.kz-dropdown{position:relative;}
.kz-dropdown-panel{display:none;position:absolute;right:0;top:calc(100% + 0.5rem);min-width:14rem;background:#fff;border:1px solid #e2e8f0;border-radius:0.75rem;box-shadow:0 10px 25px rgba(15,23,42,.08);padding:.5rem;z-index:60;}
.kz-dropdown[data-open="1"] .kz-dropdown-panel{display:block;}

.kz-drawer{position:fixed;inset:0;display:none;z-index:70;}
.kz-drawer[data-open="1"]{display:block;}
.kz-drawer-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.5);}
.kz-drawer-panel{position:absolute;top:0;right:0;height:100%;width:20rem;max-width:90vw;background:#fff;border-left:1px solid #e2e8f0;padding:1rem;overflow:auto;}
