/*
 Local production fallback for the app shell.
 The Blade pages still include Tailwind CDN for convenience, but this file keeps
 the interface designed when CDN scripts/fonts are unavailable.
*/
:root {
  --primary: #0b7a48;
  --primary-dark: #064b2d;
  --primary-soft: #e8f6ee;
  --gold: #d8a536;
  --gold-dark: #9b6a12;
  --ink: #111513;
  --navy: #080d1a;
  --text: #1d2420;
  --muted: #65716a;
  --soft: #f4f7f2;
  --admin-soft: #f3f6fb;
  --line: #dfe8df;
  --admin-line: #dde4ef;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--soft);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.material-symbols-outlined { font-family: "Material Symbols Outlined"; font-weight: normal; font-style: normal; line-height: 1; display: inline-block; text-transform: none; letter-spacing: normal; white-space: nowrap; word-wrap: normal; direction: ltr; }
.material-symbols-filled { font-variation-settings: "FILL" 1, "wght" 520, "GRAD" 0, "opsz" 24; }

/* Layout utilities used across Blade views */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex, [class*="inline-flex"] { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.contents { display: contents; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.min-w-0 { min-width: 0; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.bottom-20 { bottom: 5rem; }
.left-0 { left: 0; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.\!important { }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-0\.5 { margin-top: .125rem; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.ml-2 { margin-left: .5rem; }
.ml-auto { margin-left: auto; }

.gap-0\.5 { gap: .125rem; }
.gap-1 { gap: .25rem; }
.gap-1\.5 { gap: .375rem; }
.gap-2 { gap: .5rem; }
.gap-2\.5 { gap: .625rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.space-y-1 > * + * { margin-top: .25rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.divide-y > * + *, .divide-y.divide-line\/60 > * + *, .divide-y.divide-line\/70 > * + * { border-top: 1px solid var(--line); }

.p-1\.5 { padding: .375rem; }
.p-2 { padding: .5rem; }
.p-3 { padding: .75rem; }
.p-3\.5 { padding: .875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-3\.5 { padding-left: .875rem; padding-right: .875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-3\.5 { padding-top: .875rem; padding-bottom: .875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pt-1\.5 { padding-top: .375rem; }
.pt-3 { padding-top: .75rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-24 { padding-bottom: 6rem; }

.h-2 { height: .5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[184px\] { min-height: 184px; }
.w-1 { width: .25rem; }
.w-2 { width: .5rem; }
.w-3 { width: .75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[160px\] { max-width: 160px; }
.max-w-\[86vw\] { max-width: 86vw; }
.min-w-\[860px\] { min-width: 860px; }

.rounded { border-radius: .25rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 999px; }
.rounded-r-full { border-top-right-radius: 999px; border-bottom-right-radius: 999px; }

.border { border: 1px solid var(--line); }
.border-t { border-top: 1px solid var(--line); }
.border-b { border-bottom: 1px solid var(--line); }
.border-line, .border-line\/50, .border-line\/60, .border-line\/70, .border-line\/80 { border-color: var(--line); }
.border-white\/10 { border-color: rgba(255,255,255,.1); }
.border-white\/15 { border-color: rgba(255,255,255,.15); }
.border-white\/20 { border-color: rgba(255,255,255,.2); }
.border-primary\/15, .border-primary\/20 { border-color: rgba(11,122,72,.2); }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }
.border-blue-200 { border-color: #bfdbfe; }
.border-yellow-200 { border-color: #fde68a; }
.border-gray-200 { border-color: #e5e7eb; }

.bg-white, .bg-surface { background: #fff; }
.bg-soft { background: var(--soft); }
.bg-primary { background: var(--primary); }
.bg-primary-dark { background: var(--primary-dark); }
.bg-primary\/5 { background: rgba(11,122,72,.05); }
.bg-primary\/10 { background: rgba(11,122,72,.10); }
.bg-primary\/15 { background: rgba(11,122,72,.15); }
.bg-gold { background: var(--gold); }
.bg-gold-dark { background: var(--gold-dark); }
.bg-gold\/20 { background: rgba(216,165,54,.2); }
.bg-navy, [class*="bg-[#080d1a]"], [class*="bg-[#060a14]"] { background: var(--navy); }
[class*="bg-[#075532]"] { background: #075532; }
[class*="bg-[#eef4ef]"] { background: #eef4ef; }
[class*="bg-[#f3f6fb]"] { background: #f3f6fb; }
.bg-white\/10 { background: rgba(255,255,255,.10); }
.bg-white\/15 { background: rgba(255,255,255,.15); }
.bg-white\/90 { background: rgba(255,255,255,.90); }
.bg-white\/95 { background: rgba(255,255,255,.95); }
.bg-black\/50 { background: rgba(0,0,0,.5); }
.bg-ink\/55 { background: rgba(17,21,19,.55); }
.bg-navy\/60 { background: rgba(8,13,26,.6); }
.bg-green-50 { background: #f0fdf4; }
.bg-red-50 { background: #fef2f2; }
.bg-blue-50 { background: #eff6ff; }
.bg-yellow-50 { background: #fefce8; }
.bg-amber-50 { background: #fffbeb; }
.bg-sky-50 { background: #f0f9ff; }
.bg-indigo-50 { background: #eef2ff; }
.bg-lime-50 { background: #f7fee7; }
.bg-slate-100 { background: #f1f5f9; }
.bg-slate-200 { background: #e2e8f0; }
.bg-gray-50 { background: #f9fafb; }
.bg-gray-100 { background: #f3f4f6; }
.bg-red-600 { background: #dc2626; }
.bg-green-500 { background: #22c55e; }
.bg-yellow-400 { background: #facc15; }
.bg-gray-300 { background: #d1d5db; }
.bg-gradient-to-r.from-primary.to-primary-dark,
.bg-gradient-to-br.from-primary.via-primary-dark.to-green-900,
.bg-gradient-to-br.from-\[\#0A5C36\].via-\[\#0E7A48\].to-\[\#0A5C36\] {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.bg-gradient-to-r.from-gold.to-gold-dark {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.bg-gradient-to-br.from-\[\#075532\],
.bg-gradient-to-br.from-\[\#0A5C36\] {
  background: linear-gradient(135deg, #075532, #0b7a48);
}

.text-white { color: #fff; }
.text-ink { color: var(--ink); }
.text-text { color: var(--text); }
.text-muted { color: var(--muted); }
.text-primary, .text-primary-dark { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-gold-dark { color: var(--gold-dark); }
.text-green-600, .text-green-700 { color: #15803d; }
.text-red-600, .text-red-700 { color: #b91c1c; }
.text-blue-700, .text-blue-800 { color: #1d4ed8; }
.text-amber-700, .text-amber-800 { color: #b45309; }
.text-yellow-700 { color: #a16207; }
.text-sky-700 { color: #0369a1; }
.text-indigo-700 { color: #4338ca; }
.text-lime-700 { color: #4d7c0f; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-700, .text-slate-800 { color: #334155; }
.text-white\/10 { color: rgba(255,255,255,.10); }
.text-white\/15 { color: rgba(255,255,255,.15); }
.text-white\/55 { color: rgba(255,255,255,.55); }
.text-white\/60 { color: rgba(255,255,255,.60); }
.text-white\/70 { color: rgba(255,255,255,.70); }
.text-white\/75 { color: rgba(255,255,255,.75); }
.text-white\/80 { color: rgba(255,255,255,.80); }
.text-primary\/60 { color: rgba(11,122,72,.60); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.align-middle { vertical-align: middle; }
.font-sans { font-family: Inter, system-ui, sans-serif; }
.font-display { font-family: "Be Vietnam Pro", Inter, system-ui, sans-serif; }
.font-mono { font-family: "JetBrains Mono", Consolas, monospace; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[15px\] { font-size: 15px; }
.text-\[18px\] { font-size: 18px; }
.text-\[19px\] { font-size: 19px; }
.text-\[20px\] { font-size: 20px; }
.text-\[21px\] { font-size: 21px; }
.text-\[22px\] { font-size: 22px; }
.text-\[170px\] { font-size: 170px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.tracking-widest { letter-spacing: .1em; }
.tracking-wider { letter-spacing: .05em; }
.tracking-tight { letter-spacing: -.025em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.15; }
.leading-5 { line-height: 1.25rem; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.shadow, .shadow-sm, .shadow-soft { box-shadow: 0 8px 28px rgba(17,21,19,.08); }
.shadow-app { box-shadow: 0 18px 48px rgba(7,85,50,.13); }
.shadow-console { box-shadow: 0 18px 50px rgba(8,13,26,.18); }
.shadow-lift { box-shadow: 0 18px 45px rgba(17,21,19,.10); }
.backdrop-blur-xl, .backdrop-blur-sm { backdrop-filter: blur(16px); }
.transition, .transition-all, .transition-colors, .transition-transform { transition: all .2s ease; }
.duration-200 { transition-duration: .2s; }
.opacity-70 { opacity: .7; }
.opacity-10 { opacity: .1; }
.pointer-events-none { pointer-events: none; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-top { object-position: top; }
.outline-none { outline: none; }
.cursor-pointer { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Components */
.brand-mark {
  display: inline-flex; height: 2.25rem; width: 2.25rem; align-items: center; justify-content: center;
  border-radius: .75rem; background: var(--ink); color: var(--gold); box-shadow: 0 8px 28px rgba(17,21,19,.08);
}
.card, .card-hover, .stat-card, .quick-service-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgba(17,21,19,.08);
}
.card-hover:hover, .stat-card:hover {
  transform: translateY(-.25rem);
  box-shadow: 0 18px 45px rgba(17,21,19,.12);
}
.btn-primary, .btn-outline, .btn-danger, .btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 2.75rem; border-radius: .75rem; padding: .75rem 1.25rem;
  font-size: .875rem; line-height: 1.25rem; font-weight: 800; border: 1px solid transparent;
  cursor: pointer; transition: all .2s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 28px rgba(17,21,19,.08); }
body:has(.sidebar-link) .btn-primary { color: var(--navy); background: #14b879; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-primary:disabled,
.btn-primary[disabled],
button[aria-disabled="true"],
button[data-ready="false"] {
  background: #d1d5db !important;
  border-color: #d1d5db !important;
  box-shadow: none !important;
  color: #6b7280 !important;
  cursor: not-allowed !important;
  transform: none !important;
}
.btn-primary:disabled:hover,
.btn-primary[disabled]:hover,
button[aria-disabled="true"]:hover,
button[data-ready="false"]:hover {
  background: #d1d5db !important;
  color: #6b7280 !important;
  transform: none !important;
}
.btn-outline { background: #fff; color: var(--text); border-color: var(--line); }
.btn-danger { background: #dc2626; color: #fff; }
.btn-gold { background: var(--gold); color: var(--ink); }
.input-field {
  width: 100%; border-radius: .75rem; border: 1px solid var(--line); background: #fff;
  padding: .75rem 1rem; color: var(--text); outline: none; transition: all .2s ease;
}
.input-field:focus, input:focus, textarea:focus, select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(11,122,72,.15); outline: none;
}
.phone-input-wrap {
  position: relative;
}
.phone-with-prefix {
  padding-left: 4.35rem !important;
}
.phone-prefix {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: .875rem;
  font-weight: 800;
  height: 100%;
  left: 1rem;
  pointer-events: none;
  position: absolute;
  top: 0;
}
.badge-pending, .badge-completed, .badge-failed, .badge-active, .badge-inactive, .badge-credit, .badge-debit {
  display: inline-flex; align-items: center; border-radius: 999px; padding: .125rem .625rem;
  font-size: .75rem; line-height: 1rem; font-weight: 800; border: 1px solid transparent;
}
.badge-pending { background: #fefce8; color: #a16207; border-color: #fde68a; }
.badge-completed, .badge-active, .badge-credit { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.badge-failed, .badge-debit { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.badge-inactive { background: #f9fafb; color: #4b5563; border-color: #e5e7eb; }

.user-sidebar-link, .sidebar-link {
  display: flex; align-items: center; gap: .75rem; border-radius: .75rem; padding: .625rem .875rem;
  font-size: .875rem; line-height: 1.25rem; font-weight: 800; transition: all .2s ease;
}
.user-sidebar-link { color: rgba(255,255,255,.72); }
.user-sidebar-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.user-sidebar-link-active { background: #fff; color: var(--primary) !important; box-shadow: 0 8px 28px rgba(17,21,19,.08); }
.sidebar-link { color: #94a3b8; position: relative; }
.sidebar-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.sidebar-link-active { background: rgba(20,184,121,.15); color: #fff; box-shadow: inset 0 0 0 1px rgba(20,184,121,.25); }
.sidebar-link-active::before { content: ""; position: absolute; left: 0; top: 50%; width: .25rem; height: 1.5rem; transform: translateY(-50%); border-radius: 0 999px 999px 0; background: #14b879; }
.sidebar-section { padding: 1.25rem 1rem .25rem; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #64748b; }
.bottom-nav-link { display: flex; flex: 1 1 0%; min-width: 0; flex-direction: column; align-items: center; gap: .125rem; border-radius: .75rem; padding: .375rem .5rem; color: var(--muted); }
.bottom-nav-link-active { background: rgba(11,122,72,.1); color: var(--primary); }
.table-header { padding: .875rem 1.25rem; text-align: left; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.table-row:hover { background: var(--soft); }

.translate-x-full { transform: translateX(100%); }
.-translate-x-full { transform: translateX(-100%); }
.peer:checked + span, input.peer:checked + span { background: var(--primary); }
input.peer:checked + span::after { transform: translateX(1.25rem); }
label span[class*="after\\:"] { position: relative; }
label span[class*="after\\:"]::after {
  content: ""; position: absolute; left: .125rem; top: .125rem; height: 1.25rem; width: 1.25rem;
  border-radius: 999px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.18); transition: transform .2s ease;
}

@media (min-width: 640px) {
  .sm\:flex { display: flex !important; }
  .sm\:hidden { display: none !important; }
  .sm\:inline-flex { display: inline-flex !important; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:w-auto { width: auto; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-7 { padding: 1.75rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:flex { display: flex !important; }
  .md\:static { position: static; }
  .md\:translate-x-0 { transform: translateX(0) !important; }
  .md\:pb-6 { padding-bottom: 1.5rem; }
  .md\:bottom-6 { bottom: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block !important; }
  .lg\:flex { display: flex !important; }
  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-\[1fr_320px\] { grid-template-columns: 1fr 320px; }
  .lg\:grid-cols-\[1fr_340px\] { grid-template-columns: 1fr 340px; }
  .lg\:grid-cols-\[1fr_360px\] { grid-template-columns: 1fr 360px; }
  .lg\:grid-cols-\[1\.25fr_0\.75fr\] { grid-template-columns: 1.25fr .75fr; }
  .lg\:grid-cols-\[420px_1fr\] { grid-template-columns: 420px 1fr; }
  .lg\:grid-cols-\[1fr_420px\] { grid-template-columns: 1fr 420px; }
  .lg\:grid-cols-\[1fr_520px\] { grid-template-columns: 1fr 520px; }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:items-center { align-items: center; }
  .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:p-6 { padding: 1.5rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
