﻿/* ============================================================
   TW-COMPAT.CSS - Compatibilidad de utilidades para migracion
   Objetivo: cubrir clases usadas actualmente sin depender de framework externo
   ============================================================ */

:root {
  /* Gray palette closer to Tailwind defaults */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Radius and shadow scale aligned with Tailwind feel */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --transition-fast: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);

  --tw-ring-color: rgb(0 142 169 / 0.2);
}

/* Lightweight preflight closer to Tailwind base */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: 'Inter', 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  line-height: inherit;
  color: var(--gray-800);
  background-color: var(--gray-50);
  background-image: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--gray-200);
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
}

::before,
::after {
  --tw-content: '';
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  margin: 0;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

header,
footer {
  position: static;
  top: auto;
  z-index: auto;
  background: transparent;
  box-shadow: none;
  border: 0;
}

/* Typography / color */
.font-sans { font-family: 'Inter', 'Montserrat', sans-serif; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-extrabold { font-weight: 800; }
.text-gray-300 { color: var(--gray-300); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-900 { color: var(--gray-900); }
.text-slate-400 { color: var(--gray-400); }
.text-slate-500 { color: var(--gray-500); }
.text-slate-600 { color: var(--gray-600); }
.text-slate-700 { color: var(--gray-700); }
.text-slate-800 { color: var(--gray-800); }
.text-red-300 { color: #fca5a5; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-green-500 { color: #10b981; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-emerald-500 { color: #10b981; }
.text-yellow-500 { color: #f59e0b; }
.text-yellow-600 { color: #d97706; }
.text-blue-700 { color: #1d4ed8; }
.text-amber-700 { color: #b45309; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.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-\[8px\] { font-size: 8px; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.01em; }
.tracking-tighter { letter-spacing: -0.02em; }
.tracking-wider { letter-spacing: 0.05em; }
.break-words { overflow-wrap: break-word; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Background / border color */
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-200 { background-color: var(--gray-200); }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-500 { background-color: #ef4444; }
.bg-green-100 { background-color: #dcfce7; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-primary\/5 { background-color: color-mix(in srgb, var(--primary) 5%, white); }
.bg-primary\/10 { background-color: color-mix(in srgb, var(--primary) 10%, white); }
.bg-primary\/20 { background-color: color-mix(in srgb, var(--primary) 20%, white); }
.bg-primary\/90 { background-color: color-mix(in srgb, var(--primary) 90%, black); }
.bg-camera { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.bg-camera-dark { background: linear-gradient(135deg, #5568d3 0%, #653d8f 100%); }

.border-gray-100 { border-color: #f3f4f6; }
.border-green-500 { border-color: #22c55e; }
.border-red-500 { border-color: #ef4444; }
.border-yellow-500 { border-color: #eab308; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-300 { border-color: #cbd5e1; }
.border-primary\/20 { border-color: color-mix(in srgb, var(--primary) 20%, white); }
.border-primary\/30 { border-color: color-mix(in srgb, var(--primary) 30%, white); }
.border-primary\/50 { border-color: color-mix(in srgb, var(--primary) 50%, white); }

/* Borders / radius */
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-\[1\.5px\] { border-width: 1.5px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-b-2 { border-bottom-width: 2px; }
.border-b-4 { border-bottom-width: 4px; }
.border-l-4 { border-left-width: 4px; }
.border-r-0 { border-right-width: 0; }
.border-dashed { border-style: dashed; }
.border-t-primary { border-top-color: var(--primary); }
.border-t-transparent { border-top-color: transparent; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-l-xl { border-top-left-radius: 0.75rem; border-bottom-left-radius: 0.75rem; }
.rounded-r-xl { border-top-right-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }

/* Sizing */
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }
.h-full { height: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-52 { height: 13rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-auto { width: auto; }
.w-\[92\%\] { width: 92%; }
.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-h-48 { max-height: 12rem; }
.max-h-64 { max-height: 16rem; }
.max-h-\[60vh\] { max-height: 60vh; }
.max-h-\[70vh\] { max-height: 70vh; }
.max-h-\[75vh\] { max-height: 75vh; }
.max-h-\[90vh\] { max-height: 90vh; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-0 { padding-top: 0; }
.pt-0\.5 { padding-top: 0.125rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-4 { padding-right: 1rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-5 { margin-bottom: 1.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-3 { margin-right: 0.75rem; }

.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-5 { gap: 1.25rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-y-1 { row-gap: 0.25rem; }

/* Layout */
.grid { display: grid; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.top-1\/2 { top: 50%; }
.left-3 { left: 0.75rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.bottom-4 { bottom: 1rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.col-span-full { grid-column: 1 / -1; }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.object-cover { object-fit: cover; }
.appearance-none { appearance: none; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.scroll-smooth { scroll-behavior: smooth; }
.snap-x { scroll-snap-type: x mandatory; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }

/* Divide */
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; border-top-style: solid; }
.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { border-color: #f3f4f6; }

/* Effects */
.opacity-0 { opacity: 0; }
.opacity-40 { opacity: 0.4; }
.transform { transform: translate(0, 0); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-20 { transform: translateY(5rem); }
.shadow-sm { --tw-shadow: var(--shadow-sm); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.shadow { --tw-shadow: var(--shadow); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.shadow-md { --tw-shadow: var(--shadow-md); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.shadow-lg { --tw-shadow: var(--shadow-lg); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.shadow-xl { --tw-shadow: var(--shadow-xl); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.shadow-2xl { --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.shadow-primary\/20 { --tw-shadow: 0 10px 20px color-mix(in srgb, var(--primary) 20%, transparent); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.shadow-inst-green\/20 { --tw-shadow: 0 10px 20px color-mix(in srgb, var(--inst-green) 20%, transparent); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-all { transition-property: all; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-shadow { transition-property: box-shadow; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition-property: transform; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

@keyframes twCompatSpin {
  to { transform: rotate(360deg); }
}
.animate-spin { animation: twCompatSpin 1s linear infinite; }

/* Ring utilities */
.ring-2 {
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.ring-4 {
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.ring-primary { --tw-ring-color: color-mix(in srgb, var(--primary) 40%, transparent); }
.ring-white { --tw-ring-color: rgba(255, 255, 255, 0.8); }
.ring-secondary\/45 { --tw-ring-color: color-mix(in srgb, var(--secondary) 45%, transparent); }

/* State variants */
.hover\:bg-gray-50:hover { background-color: var(--gray-50); }
.hover\:bg-gray-100:hover { background-color: var(--gray-100); }
.hover\:bg-gray-200:hover { background-color: var(--gray-200); }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-red-50:hover { background-color: #fef2f2; }
.hover\:bg-red-200:hover { background-color: #fecaca; }
.hover\:bg-red-600:hover { background-color: #dc2626; }
.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:bg-primary\/5:hover { background-color: color-mix(in srgb, var(--primary) 5%, white); }
.hover\:bg-primary\/20:hover { background-color: color-mix(in srgb, var(--primary) 20%, white); }
.hover\:bg-primary\/90:hover { background-color: color-mix(in srgb, var(--primary) 90%, black); }
.hover\:bg-primary-dark:hover { background-color: var(--primary-dark); }
.hover\:bg-secondary-dark:hover { background-color: var(--secondary-dark); }
.hover\:bg-inst-green-dark:hover { background-color: var(--inst-green-dark); }
.hover\:bg-camera-dark:hover { background: linear-gradient(135deg, #5568d3 0%, #653d8f 100%); }
.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:border-primary\/50:hover { border-color: color-mix(in srgb, var(--primary) 50%, white); }
.hover\:shadow-sm:hover { --tw-shadow: var(--shadow-sm); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.hover\:shadow-md:hover { --tw-shadow: var(--shadow-md); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.hover\:shadow-lg:hover { --tw-shadow: var(--shadow-lg); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.hover\:text-gray-600:hover { color: var(--gray-600); }
.hover\:text-gray-800:hover { color: var(--gray-800); }
.hover\:text-red-500:hover { color: #ef4444; }
.hover\:text-primary-dark:hover { color: var(--primary-dark); }
.hover\:text-secondary-dark:hover { color: var(--secondary-dark); }
.hover\:text-white:hover { color: white; }

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:bg-gray-50:focus { background-color: var(--gray-50); }
.focus\:border-transparent:focus { border-color: transparent; }
.focus\:border-primary:focus { border-color: var(--primary); }
.focus\:border-inst-blue:focus { border-color: var(--inst-blue); }
.focus\:ring-2:focus {
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.focus\:ring-4:focus {
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.focus\:ring-primary:focus { --tw-ring-color: color-mix(in srgb, var(--primary) 35%, transparent); }
.focus\:ring-primary\/20:focus { --tw-ring-color: color-mix(in srgb, var(--primary) 20%, transparent); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.focus\:ring-primary\/30:focus { --tw-ring-color: color-mix(in srgb, var(--primary) 30%, transparent); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }
.focus\:ring-secondary:focus { --tw-ring-color: color-mix(in srgb, var(--secondary) 35%, transparent); }
.focus\:ring-secondary\/20:focus { --tw-ring-color: color-mix(in srgb, var(--secondary) 20%, transparent); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); }

.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* Peer-based switch helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.peer:focus ~ .peer-focus\:outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.peer:focus ~ .peer-focus\:ring-4 { box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 20%, transparent); }
.peer:checked ~ .peer-checked\:bg-secondary { background-color: var(--secondary); }
.peer:checked ~ .peer-checked\:after\:translate-x-full::after { transform: translateX(100%); }
.peer:checked ~ .peer-checked\:after\:border-white::after { border-color: #fff; }

.after\:content-\[\'\'\]::after { content: ''; }
.after\:absolute::after { position: absolute; }
.after\:top-\[2px\]::after { top: 2px; }
.after\:left-\[2px\]::after { left: 2px; }
.after\:bg-white::after { background-color: #fff; }
.after\:border-gray-300::after { border-color: var(--gray-300); }
.after\:border::after { border-width: 1px; border-style: solid; }
.after\:rounded-full::after { border-radius: 9999px; }
.after\:h-5::after { height: 1.25rem; }
.after\:w-5::after { width: 1.25rem; }
.after\:transition-all::after { transition: all 0.2s ease; }

/* Responsive variants */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:gap-2 { gap: 0.5rem; }
  .md\:gap-3 { gap: 0.75rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:h-16 { height: 4rem; }
  .md\:h-52 { height: 13rem; }
  .md\:w-16 { width: 4rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:p-4 { padding: 1rem; }
  .md\:p-5 { padding: 1.25rem; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .md\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:text-xs { font-size: 0.75rem; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-\[15px\] { font-size: 15px; }
}

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

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