/* ═══════════════════════════════════════════════════════════════════════
   Libertas — custom.css
   Loaded directly, NOT through Vite. No build step required.

   Edit this file, upload it, hard-refresh. That's the whole workflow.
   Anything here overrides Tailwind because it loads after the Vite CSS.
   ═══════════════════════════════════════════════════════════════════════ */


/* ═══ 1. FONT AWESOME — must win against .font-display ═══════════════════
   The layout has `.font-display, .font-display * { font-family: ... }`
   with !important, which strips the icon font from any <i> inside a
   heading. These rules claw it back.                                      */

.fa, .fas, .far, .fal, .fat, .fad,
.fa-solid, .fa-regular, .fa-light, .fa-thin, .fa-duotone,
.font-display .fa, .font-display .fas, .font-display .far,
.font-display .fa-solid, .font-display .fa-regular,
h1 .fa, h2 .fa, h3 .fa, h4 .fa, h5 .fa, h6 .fa,
h1 .fa-solid, h2 .fa-solid, h3 .fa-solid, h4 .fa-solid,
h1 .fas, h2 .fas, h3 .fas, h4 .fas {
    font-family: "Font Awesome 6 Free" !important;
}

.fab, .fa-brands,
.font-display .fab, .font-display .fa-brands,
h1 .fab, h2 .fab, h3 .fab, h4 .fab,
h1 .fa-brands, h2 .fa-brands, h3 .fa-brands, h4 .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}


/* ═══ 2. HORIZONTAL SCROLLBAR GUARDS ═════════════════════════════════════ */

html { overflow-x: clip; }

/* clip, not hidden — hidden on a sticky element breaks the stickiness */
#main-nav { overflow-x: clip; }

@media (max-width: 1180px) {
    #main-nav .group > div[style*="width:480px"] {
        width: min(480px, calc(100vw - 3rem)) !important;
    }
}


/* ═══ 3. BRAND COLOUR UTILITIES ══════════════════════════════════════════
   Tailwind equivalents that may not exist in the compiled CSS. Written
   as plain CSS so they always work, no rebuild needed.                    */

.bg-brand-navy   { background-color: #2f418f !important; }
.bg-brand-mid    { background-color: #3a5ca4 !important; }
.bg-brand-sky    { background-color: #2ea3f2 !important; }
.bg-brand-yellow { background-color: #eaef4f !important; }

.text-brand-navy   { color: #2f418f !important; }
.text-brand-mid    { color: #3a5ca4 !important; }
.text-brand-sky    { color: #2ea3f2 !important; }
.text-brand-yellow { color: #eaef4f !important; }

.border-brand-navy   { border-color: #2f418f !important; }
.border-brand-sky    { border-color: #2ea3f2 !important; }
.border-brand-yellow { border-color: #eaef4f !important; }


/* ═══ 4. QUILL / RICH TEXT CONTENT ═══════════════════════════════════════
   Applied to any admin-entered HTML rendered in .ql-content              */

.ql-content h2 { font-size: 1.5rem;  font-weight: 800; color: #2f418f; margin: 1.6em 0 .6em; }
.ql-content h3 { font-size: 1.15rem; font-weight: 700; color: #1a4f7a; margin: 1.4em 0 .5em; }
.ql-content p  { margin-bottom: 1em; line-height: 1.75; }
.ql-content a  { color: #2ea3f2; text-decoration: underline; }
.ql-content strong { font-weight: 700; }

.ql-content ul { list-style: none; padding-left: 0; margin-bottom: 1.25em; }
.ql-content ul li {
    position: relative; padding-left: 1.75em;
    margin-bottom: .6em; line-height: 1.7; color: #374151;
}
.ql-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; left: 0; top: .15em;
    font-size: .7em; color: #2ea3f2;
    width: 1.5em; height: 1.5em; border-radius: 50%;
    background: rgba(46,163,242,.1);
    display: flex; align-items: center; justify-content: center;
}

.ql-content ol { list-style: none; padding-left: 0; counter-reset: qlc; margin-bottom: 1.25em; }
.ql-content ol li {
    position: relative; padding-left: 2.25em;
    margin-bottom: .6em; line-height: 1.7; color: #374151;
    counter-increment: qlc;
}
.ql-content ol li::before {
    content: counter(qlc);
    position: absolute; left: 0; top: .1em;
    width: 1.55em; height: 1.55em; border-radius: 50%;
    background: #2f418f; color: #fff;
    font-size: .75em; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

.ql-content blockquote {
    border-left: 4px solid #2f418f;
    padding: 12px 16px; margin: 1.5em 0;
    background: rgba(47,65,143,.05);
    border-radius: 0 8px 8px 0;
    font-style: italic; color: #4a5568;
}


/* ═══ 5. ICON ALIGNMENT IN HEADINGS ══════════════════════════════════════ */

h1 > i, h2 > i, h3 > i, h4 > i {
    width: 1.05em; text-align: center; flex: 0 0 auto;
}


/* ═══ 6. SPACING UTILITIES ═══════════════════════════════════════════════
   Full Tailwind spacing scale as plain CSS.

   WHY THIS EXISTS
   Tailwind only compiles the classes it finds at build time. Without CLI
   access you cannot rebuild, so any class not already in the bundle does
   nothing — silently. This file guarantees the whole spacing scale is
   available regardless of what the last build captured.

   Generated from Tailwind's default scale, so values match exactly.
   ═══════════════════════════════════════════════════════════════════════ */


/* ── p ── */
.p-0 { padding: 0px !important; }
.p-0\.5 { padding: 0.125rem !important; }
.p-1 { padding: 0.25rem !important; }
.p-1\.5 { padding: 0.375rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-2\.5 { padding: 0.625rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-3\.5 { padding: 0.875rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-7 { padding: 1.75rem !important; }
.p-8 { padding: 2rem !important; }
.p-9 { padding: 2.25rem !important; }
.p-10 { padding: 2.5rem !important; }
.p-11 { padding: 2.75rem !important; }
.p-12 { padding: 3rem !important; }
.p-14 { padding: 3.5rem !important; }
.p-16 { padding: 4rem !important; }
.p-20 { padding: 5rem !important; }
.p-24 { padding: 6rem !important; }
.p-28 { padding: 7rem !important; }
.p-32 { padding: 8rem !important; }

/* ── px ── */
.px-0 { padding-left: 0px !important; padding-right: 0px !important; }
.px-0\.5 { padding-left: 0.125rem !important; padding-right: 0.125rem !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-1\.5 { padding-left: 0.375rem !important; padding-right: 0.375rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-2\.5 { padding-left: 0.625rem !important; padding-right: 0.625rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-3\.5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-7 { padding-left: 1.75rem !important; padding-right: 1.75rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-9 { padding-left: 2.25rem !important; padding-right: 2.25rem !important; }
.px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
.px-11 { padding-left: 2.75rem !important; padding-right: 2.75rem !important; }
.px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }
.px-14 { padding-left: 3.5rem !important; padding-right: 3.5rem !important; }
.px-16 { padding-left: 4rem !important; padding-right: 4rem !important; }
.px-20 { padding-left: 5rem !important; padding-right: 5rem !important; }
.px-24 { padding-left: 6rem !important; padding-right: 6rem !important; }
.px-28 { padding-left: 7rem !important; padding-right: 7rem !important; }
.px-32 { padding-left: 8rem !important; padding-right: 8rem !important; }

/* ── py ── */
.py-0 { padding-top: 0px !important; padding-bottom: 0px !important; }
.py-0\.5 { padding-top: 0.125rem !important; padding-bottom: 0.125rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-3\.5 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
.py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-7 { padding-top: 1.75rem !important; padding-bottom: 1.75rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-9 { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
.py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.py-11 { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-14 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-28 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
.py-32 { padding-top: 8rem !important; padding-bottom: 8rem !important; }

/* ── pt ── */
.pt-0 { padding-top: 0px !important; }
.pt-0\.5 { padding-top: 0.125rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-1\.5 { padding-top: 0.375rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-2\.5 { padding-top: 0.625rem !important; }
.pt-3 { padding-top: 0.75rem !important; }
.pt-3\.5 { padding-top: 0.875rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-5 { padding-top: 1.25rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-7 { padding-top: 1.75rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pt-9 { padding-top: 2.25rem !important; }
.pt-10 { padding-top: 2.5rem !important; }
.pt-11 { padding-top: 2.75rem !important; }
.pt-12 { padding-top: 3rem !important; }
.pt-14 { padding-top: 3.5rem !important; }
.pt-16 { padding-top: 4rem !important; }
.pt-20 { padding-top: 5rem !important; }
.pt-24 { padding-top: 6rem !important; }
.pt-28 { padding-top: 7rem !important; }
.pt-32 { padding-top: 8rem !important; }

/* ── pb ── */
.pb-0 { padding-bottom: 0px !important; }
.pb-0\.5 { padding-bottom: 0.125rem !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-1\.5 { padding-bottom: 0.375rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-2\.5 { padding-bottom: 0.625rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-3\.5 { padding-bottom: 0.875rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.25rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-7 { padding-bottom: 1.75rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-9 { padding-bottom: 2.25rem !important; }
.pb-10 { padding-bottom: 2.5rem !important; }
.pb-11 { padding-bottom: 2.75rem !important; }
.pb-12 { padding-bottom: 3rem !important; }
.pb-14 { padding-bottom: 3.5rem !important; }
.pb-16 { padding-bottom: 4rem !important; }
.pb-20 { padding-bottom: 5rem !important; }
.pb-24 { padding-bottom: 6rem !important; }
.pb-28 { padding-bottom: 7rem !important; }
.pb-32 { padding-bottom: 8rem !important; }

/* ── pl ── */
.pl-0 { padding-left: 0px !important; }
.pl-0\.5 { padding-left: 0.125rem !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-1\.5 { padding-left: 0.375rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-2\.5 { padding-left: 0.625rem !important; }
.pl-3 { padding-left: 0.75rem !important; }
.pl-3\.5 { padding-left: 0.875rem !important; }
.pl-4 { padding-left: 1rem !important; }
.pl-5 { padding-left: 1.25rem !important; }
.pl-6 { padding-left: 1.5rem !important; }
.pl-7 { padding-left: 1.75rem !important; }
.pl-8 { padding-left: 2rem !important; }
.pl-9 { padding-left: 2.25rem !important; }
.pl-10 { padding-left: 2.5rem !important; }
.pl-11 { padding-left: 2.75rem !important; }
.pl-12 { padding-left: 3rem !important; }
.pl-14 { padding-left: 3.5rem !important; }
.pl-16 { padding-left: 4rem !important; }
.pl-20 { padding-left: 5rem !important; }
.pl-24 { padding-left: 6rem !important; }
.pl-28 { padding-left: 7rem !important; }
.pl-32 { padding-left: 8rem !important; }

/* ── pr ── */
.pr-0 { padding-right: 0px !important; }
.pr-0\.5 { padding-right: 0.125rem !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-1\.5 { padding-right: 0.375rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-2\.5 { padding-right: 0.625rem !important; }
.pr-3 { padding-right: 0.75rem !important; }
.pr-3\.5 { padding-right: 0.875rem !important; }
.pr-4 { padding-right: 1rem !important; }
.pr-5 { padding-right: 1.25rem !important; }
.pr-6 { padding-right: 1.5rem !important; }
.pr-7 { padding-right: 1.75rem !important; }
.pr-8 { padding-right: 2rem !important; }
.pr-9 { padding-right: 2.25rem !important; }
.pr-10 { padding-right: 2.5rem !important; }
.pr-11 { padding-right: 2.75rem !important; }
.pr-12 { padding-right: 3rem !important; }
.pr-14 { padding-right: 3.5rem !important; }
.pr-16 { padding-right: 4rem !important; }
.pr-20 { padding-right: 5rem !important; }
.pr-24 { padding-right: 6rem !important; }
.pr-28 { padding-right: 7rem !important; }
.pr-32 { padding-right: 8rem !important; }

/* ── m ── */
.m-0 { margin: 0px !important; }
.m-0\.5 { margin: 0.125rem !important; }
.m-1 { margin: 0.25rem !important; }
.m-1\.5 { margin: 0.375rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-2\.5 { margin: 0.625rem !important; }
.m-3 { margin: 0.75rem !important; }
.m-3\.5 { margin: 0.875rem !important; }
.m-4 { margin: 1rem !important; }
.m-5 { margin: 1.25rem !important; }
.m-6 { margin: 1.5rem !important; }
.m-7 { margin: 1.75rem !important; }
.m-8 { margin: 2rem !important; }
.m-9 { margin: 2.25rem !important; }
.m-10 { margin: 2.5rem !important; }
.m-11 { margin: 2.75rem !important; }
.m-12 { margin: 3rem !important; }
.m-14 { margin: 3.5rem !important; }
.m-16 { margin: 4rem !important; }
.m-20 { margin: 5rem !important; }
.m-24 { margin: 6rem !important; }
.m-28 { margin: 7rem !important; }
.m-32 { margin: 8rem !important; }

/* ── mx ── */
.mx-0 { margin-left: 0px !important; margin-right: 0px !important; }
.mx-0\.5 { margin-left: 0.125rem !important; margin-right: 0.125rem !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-1\.5 { margin-left: 0.375rem !important; margin-right: 0.375rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-2\.5 { margin-left: 0.625rem !important; margin-right: 0.625rem !important; }
.mx-3 { margin-left: 0.75rem !important; margin-right: 0.75rem !important; }
.mx-3\.5 { margin-left: 0.875rem !important; margin-right: 0.875rem !important; }
.mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-5 { margin-left: 1.25rem !important; margin-right: 1.25rem !important; }
.mx-6 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-7 { margin-left: 1.75rem !important; margin-right: 1.75rem !important; }
.mx-8 { margin-left: 2rem !important; margin-right: 2rem !important; }
.mx-9 { margin-left: 2.25rem !important; margin-right: 2.25rem !important; }
.mx-10 { margin-left: 2.5rem !important; margin-right: 2.5rem !important; }
.mx-11 { margin-left: 2.75rem !important; margin-right: 2.75rem !important; }
.mx-12 { margin-left: 3rem !important; margin-right: 3rem !important; }
.mx-14 { margin-left: 3.5rem !important; margin-right: 3.5rem !important; }
.mx-16 { margin-left: 4rem !important; margin-right: 4rem !important; }
.mx-20 { margin-left: 5rem !important; margin-right: 5rem !important; }
.mx-24 { margin-left: 6rem !important; margin-right: 6rem !important; }
.mx-28 { margin-left: 7rem !important; margin-right: 7rem !important; }
.mx-32 { margin-left: 8rem !important; margin-right: 8rem !important; }

/* ── my ── */
.my-0 { margin-top: 0px !important; margin-bottom: 0px !important; }
.my-0\.5 { margin-top: 0.125rem !important; margin-bottom: 0.125rem !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-1\.5 { margin-top: 0.375rem !important; margin-bottom: 0.375rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-2\.5 { margin-top: 0.625rem !important; margin-bottom: 0.625rem !important; }
.my-3 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
.my-3\.5 { margin-top: 0.875rem !important; margin-bottom: 0.875rem !important; }
.my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-5 { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
.my-6 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-7 { margin-top: 1.75rem !important; margin-bottom: 1.75rem !important; }
.my-8 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.my-9 { margin-top: 2.25rem !important; margin-bottom: 2.25rem !important; }
.my-10 { margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }
.my-11 { margin-top: 2.75rem !important; margin-bottom: 2.75rem !important; }
.my-12 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.my-14 { margin-top: 3.5rem !important; margin-bottom: 3.5rem !important; }
.my-16 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
.my-20 { margin-top: 5rem !important; margin-bottom: 5rem !important; }
.my-24 { margin-top: 6rem !important; margin-bottom: 6rem !important; }
.my-28 { margin-top: 7rem !important; margin-bottom: 7rem !important; }
.my-32 { margin-top: 8rem !important; margin-bottom: 8rem !important; }

/* ── mt ── */
.mt-0 { margin-top: 0px !important; }
.mt-0\.5 { margin-top: 0.125rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-1\.5 { margin-top: 0.375rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-2\.5 { margin-top: 0.625rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-3\.5 { margin-top: 0.875rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-7 { margin-top: 1.75rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-9 { margin-top: 2.25rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mt-11 { margin-top: 2.75rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mt-14 { margin-top: 3.5rem !important; }
.mt-16 { margin-top: 4rem !important; }
.mt-20 { margin-top: 5rem !important; }
.mt-24 { margin-top: 6rem !important; }
.mt-28 { margin-top: 7rem !important; }
.mt-32 { margin-top: 8rem !important; }

/* ── mb ── */
.mb-0 { margin-bottom: 0px !important; }
.mb-0\.5 { margin-bottom: 0.125rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-1\.5 { margin-bottom: 0.375rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-2\.5 { margin-bottom: 0.625rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-3\.5 { margin-bottom: 0.875rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-7 { margin-bottom: 1.75rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-9 { margin-bottom: 2.25rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-11 { margin-bottom: 2.75rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-14 { margin-bottom: 3.5rem !important; }
.mb-16 { margin-bottom: 4rem !important; }
.mb-20 { margin-bottom: 5rem !important; }
.mb-24 { margin-bottom: 6rem !important; }
.mb-28 { margin-bottom: 7rem !important; }
.mb-32 { margin-bottom: 8rem !important; }

/* ── gap ── */
.gap-0 { gap: 0px !important; }
.gap-0\.5 { gap: 0.125rem !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-1\.5 { gap: 0.375rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-2\.5 { gap: 0.625rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-3\.5 { gap: 0.875rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-7 { gap: 1.75rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-9 { gap: 2.25rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-11 { gap: 2.75rem !important; }
.gap-12 { gap: 3rem !important; }
.gap-14 { gap: 3.5rem !important; }
.gap-16 { gap: 4rem !important; }
.gap-20 { gap: 5rem !important; }
.gap-24 { gap: 6rem !important; }
.gap-28 { gap: 7rem !important; }
.gap-32 { gap: 8rem !important; }

/* ── gap-x ── */
.gap-x-0 { column-gap: 0px !important; }
.gap-x-0\.5 { column-gap: 0.125rem !important; }
.gap-x-1 { column-gap: 0.25rem !important; }
.gap-x-1\.5 { column-gap: 0.375rem !important; }
.gap-x-2 { column-gap: 0.5rem !important; }
.gap-x-2\.5 { column-gap: 0.625rem !important; }
.gap-x-3 { column-gap: 0.75rem !important; }
.gap-x-3\.5 { column-gap: 0.875rem !important; }
.gap-x-4 { column-gap: 1rem !important; }
.gap-x-5 { column-gap: 1.25rem !important; }
.gap-x-6 { column-gap: 1.5rem !important; }
.gap-x-7 { column-gap: 1.75rem !important; }
.gap-x-8 { column-gap: 2rem !important; }
.gap-x-9 { column-gap: 2.25rem !important; }
.gap-x-10 { column-gap: 2.5rem !important; }
.gap-x-11 { column-gap: 2.75rem !important; }
.gap-x-12 { column-gap: 3rem !important; }
.gap-x-14 { column-gap: 3.5rem !important; }
.gap-x-16 { column-gap: 4rem !important; }
.gap-x-20 { column-gap: 5rem !important; }
.gap-x-24 { column-gap: 6rem !important; }
.gap-x-28 { column-gap: 7rem !important; }
.gap-x-32 { column-gap: 8rem !important; }

/* ── gap-y ── */
.gap-y-0 { row-gap: 0px !important; }
.gap-y-0\.5 { row-gap: 0.125rem !important; }
.gap-y-1 { row-gap: 0.25rem !important; }
.gap-y-1\.5 { row-gap: 0.375rem !important; }
.gap-y-2 { row-gap: 0.5rem !important; }
.gap-y-2\.5 { row-gap: 0.625rem !important; }
.gap-y-3 { row-gap: 0.75rem !important; }
.gap-y-3\.5 { row-gap: 0.875rem !important; }
.gap-y-4 { row-gap: 1rem !important; }
.gap-y-5 { row-gap: 1.25rem !important; }
.gap-y-6 { row-gap: 1.5rem !important; }
.gap-y-7 { row-gap: 1.75rem !important; }
.gap-y-8 { row-gap: 2rem !important; }
.gap-y-9 { row-gap: 2.25rem !important; }
.gap-y-10 { row-gap: 2.5rem !important; }
.gap-y-11 { row-gap: 2.75rem !important; }
.gap-y-12 { row-gap: 3rem !important; }
.gap-y-14 { row-gap: 3.5rem !important; }
.gap-y-16 { row-gap: 4rem !important; }
.gap-y-20 { row-gap: 5rem !important; }
.gap-y-24 { row-gap: 6rem !important; }
.gap-y-28 { row-gap: 7rem !important; }
.gap-y-32 { row-gap: 8rem !important; }


/* ═══ 7. GRID UTILITIES ══════════════════════════════════════════════════
   Grid column classes including responsive variants, as plain CSS.

   Responsive variants like md:col-span-2 are the ones most likely to be
   missing from the compiled bundle, because they only get generated when
   Tailwind sees that exact string in a Blade file at build time.
   ═══════════════════════════════════════════════════════════════════════ */


/* ── base ── */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; }
.grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; }
.grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; }
.grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
.col-span-1 { grid-column: span 1 / span 1 !important; }
.col-span-2 { grid-column: span 2 / span 2 !important; }
.col-span-3 { grid-column: span 3 / span 3 !important; }
.col-span-4 { grid-column: span 4 / span 4 !important; }
.col-span-5 { grid-column: span 5 / span 5 !important; }
.col-span-6 { grid-column: span 6 / span 6 !important; }
.col-span-7 { grid-column: span 7 / span 7 !important; }
.col-span-8 { grid-column: span 8 / span 8 !important; }
.col-span-9 { grid-column: span 9 / span 9 !important; }
.col-span-10 { grid-column: span 10 / span 10 !important; }
.col-span-11 { grid-column: span 11 / span 11 !important; }
.col-span-12 { grid-column: span 12 / span 12 !important; }
.col-span-full { grid-column: 1 / -1 !important; }
.col-start-1 { grid-column-start: 1 !important; }
.col-start-2 { grid-column-start: 2 !important; }
.col-start-3 { grid-column-start: 3 !important; }
.col-start-4 { grid-column-start: 4 !important; }
.col-start-5 { grid-column-start: 5 !important; }
.col-start-6 { grid-column-start: 6 !important; }
.col-start-7 { grid-column-start: 7 !important; }
.col-start-8 { grid-column-start: 8 !important; }
.col-start-9 { grid-column-start: 9 !important; }
.col-start-10 { grid-column-start: 10 !important; }
.col-start-11 { grid-column-start: 11 !important; }
.col-start-12 { grid-column-start: 12 !important; }
.col-start-13 { grid-column-start: 13 !important; }
.grid { display: grid !important; }
.flex { display: flex !important; }
.hidden { display: none !important; }
.block { display: block !important; }
.flex-row { flex-direction: row !important; }
.flex-col { flex-direction: column !important; }

/* ── sm: min-width 640px ── */
@media (min-width: 640px) {
  .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .sm\:col-span-1 { grid-column: span 1 / span 1 !important; }
  .sm\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .sm\:col-span-3 { grid-column: span 3 / span 3 !important; }
  .sm\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .sm\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .sm\:col-span-6 { grid-column: span 6 / span 6 !important; }
  .sm\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .sm\:col-span-8 { grid-column: span 8 / span 8 !important; }
  .sm\:col-span-9 { grid-column: span 9 / span 9 !important; }
  .sm\:col-span-10 { grid-column: span 10 / span 10 !important; }
  .sm\:col-span-11 { grid-column: span 11 / span 11 !important; }
  .sm\:col-span-12 { grid-column: span 12 / span 12 !important; }
  .sm\:col-span-full { grid-column: 1 / -1 !important; }
  .sm\:col-start-1 { grid-column-start: 1 !important; }
  .sm\:col-start-2 { grid-column-start: 2 !important; }
  .sm\:col-start-3 { grid-column-start: 3 !important; }
  .sm\:col-start-4 { grid-column-start: 4 !important; }
  .sm\:col-start-5 { grid-column-start: 5 !important; }
  .sm\:col-start-6 { grid-column-start: 6 !important; }
  .sm\:col-start-7 { grid-column-start: 7 !important; }
  .sm\:col-start-8 { grid-column-start: 8 !important; }
  .sm\:col-start-9 { grid-column-start: 9 !important; }
  .sm\:col-start-10 { grid-column-start: 10 !important; }
  .sm\:col-start-11 { grid-column-start: 11 !important; }
  .sm\:col-start-12 { grid-column-start: 12 !important; }
  .sm\:col-start-13 { grid-column-start: 13 !important; }
  .sm\:grid { display: grid !important; }
  .sm\:flex { display: flex !important; }
  .sm\:hidden { display: none !important; }
  .sm\:block { display: block !important; }
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:flex-col { flex-direction: column !important; }
}

/* ── md: min-width 768px ── */
@media (min-width: 768px) {
  .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  .md\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; }
  .md\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; }
  .md\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; }
  .md\:grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; }
  .md\:grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .md\:col-span-1 { grid-column: span 1 / span 1 !important; }
  .md\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .md\:col-span-3 { grid-column: span 3 / span 3 !important; }
  .md\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .md\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .md\:col-span-6 { grid-column: span 6 / span 6 !important; }
  .md\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .md\:col-span-8 { grid-column: span 8 / span 8 !important; }
  .md\:col-span-9 { grid-column: span 9 / span 9 !important; }
  .md\:col-span-10 { grid-column: span 10 / span 10 !important; }
  .md\:col-span-11 { grid-column: span 11 / span 11 !important; }
  .md\:col-span-12 { grid-column: span 12 / span 12 !important; }
  .md\:col-span-full { grid-column: 1 / -1 !important; }
  .md\:col-start-1 { grid-column-start: 1 !important; }
  .md\:col-start-2 { grid-column-start: 2 !important; }
  .md\:col-start-3 { grid-column-start: 3 !important; }
  .md\:col-start-4 { grid-column-start: 4 !important; }
  .md\:col-start-5 { grid-column-start: 5 !important; }
  .md\:col-start-6 { grid-column-start: 6 !important; }
  .md\:col-start-7 { grid-column-start: 7 !important; }
  .md\:col-start-8 { grid-column-start: 8 !important; }
  .md\:col-start-9 { grid-column-start: 9 !important; }
  .md\:col-start-10 { grid-column-start: 10 !important; }
  .md\:col-start-11 { grid-column-start: 11 !important; }
  .md\:col-start-12 { grid-column-start: 12 !important; }
  .md\:col-start-13 { grid-column-start: 13 !important; }
  .md\:grid { display: grid !important; }
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
  .md\:block { display: block !important; }
  .md\:flex-row { flex-direction: row !important; }
  .md\:flex-col { flex-direction: column !important; }
}

/* ── lg: min-width 1024px ── */
@media (min-width: 1024px) {
  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .lg\:col-span-1 { grid-column: span 1 / span 1 !important; }
  .lg\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .lg\:col-span-3 { grid-column: span 3 / span 3 !important; }
  .lg\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .lg\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .lg\:col-span-6 { grid-column: span 6 / span 6 !important; }
  .lg\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .lg\:col-span-8 { grid-column: span 8 / span 8 !important; }
  .lg\:col-span-9 { grid-column: span 9 / span 9 !important; }
  .lg\:col-span-10 { grid-column: span 10 / span 10 !important; }
  .lg\:col-span-11 { grid-column: span 11 / span 11 !important; }
  .lg\:col-span-12 { grid-column: span 12 / span 12 !important; }
  .lg\:col-span-full { grid-column: 1 / -1 !important; }
  .lg\:col-start-1 { grid-column-start: 1 !important; }
  .lg\:col-start-2 { grid-column-start: 2 !important; }
  .lg\:col-start-3 { grid-column-start: 3 !important; }
  .lg\:col-start-4 { grid-column-start: 4 !important; }
  .lg\:col-start-5 { grid-column-start: 5 !important; }
  .lg\:col-start-6 { grid-column-start: 6 !important; }
  .lg\:col-start-7 { grid-column-start: 7 !important; }
  .lg\:col-start-8 { grid-column-start: 8 !important; }
  .lg\:col-start-9 { grid-column-start: 9 !important; }
  .lg\:col-start-10 { grid-column-start: 10 !important; }
  .lg\:col-start-11 { grid-column-start: 11 !important; }
  .lg\:col-start-12 { grid-column-start: 12 !important; }
  .lg\:col-start-13 { grid-column-start: 13 !important; }
  .lg\:grid { display: grid !important; }
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
  .lg\:block { display: block !important; }
  .lg\:flex-row { flex-direction: row !important; }
  .lg\:flex-col { flex-direction: column !important; }
}

/* ── xl: min-width 1280px ── */
@media (min-width: 1280px) {
  .xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .xl\:col-span-1 { grid-column: span 1 / span 1 !important; }
  .xl\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .xl\:col-span-3 { grid-column: span 3 / span 3 !important; }
  .xl\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .xl\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .xl\:col-span-6 { grid-column: span 6 / span 6 !important; }
  .xl\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .xl\:col-span-8 { grid-column: span 8 / span 8 !important; }
  .xl\:col-span-9 { grid-column: span 9 / span 9 !important; }
  .xl\:col-span-10 { grid-column: span 10 / span 10 !important; }
  .xl\:col-span-11 { grid-column: span 11 / span 11 !important; }
  .xl\:col-span-12 { grid-column: span 12 / span 12 !important; }
  .xl\:col-span-full { grid-column: 1 / -1 !important; }
  .xl\:col-start-1 { grid-column-start: 1 !important; }
  .xl\:col-start-2 { grid-column-start: 2 !important; }
  .xl\:col-start-3 { grid-column-start: 3 !important; }
  .xl\:col-start-4 { grid-column-start: 4 !important; }
  .xl\:col-start-5 { grid-column-start: 5 !important; }
  .xl\:col-start-6 { grid-column-start: 6 !important; }
  .xl\:col-start-7 { grid-column-start: 7 !important; }
  .xl\:col-start-8 { grid-column-start: 8 !important; }
  .xl\:col-start-9 { grid-column-start: 9 !important; }
  .xl\:col-start-10 { grid-column-start: 10 !important; }
  .xl\:col-start-11 { grid-column-start: 11 !important; }
  .xl\:col-start-12 { grid-column-start: 12 !important; }
  .xl\:col-start-13 { grid-column-start: 13 !important; }
  .xl\:grid { display: grid !important; }
  .xl\:flex { display: flex !important; }
  .xl\:hidden { display: none !important; }
  .xl\:block { display: block !important; }
  .xl\:flex-row { flex-direction: row !important; }
  .xl\:flex-col { flex-direction: column !important; }
}


/* ═══════════════════════════════════════════════════════════════════════
   ADD YOUR OWN BELOW THIS LINE
   ═══════════════════════════════════════════════════════════════════════ */