/* index1320.css - Comprehensive Tailwind CSS Mapping */
/* Custom Properties */
:root {
  --brand: #F59E0B;
  --brand-light: #FBBF24;
  --accent: #8B5CF6;
  --surface: #0F172A;
  --surface-light: #1E293B;
  --surface-mid: #334155;
  --success: #10B981;
  --danger: #EF4444;
  --warn: #F59E0B;
  --gray-100: #F8FAFC;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
}

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Base Link Styles */
a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile touch optimizations */
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  touch-action: manipulation;
}

/* Prevent overscroll on mobile */
html {
  overflow-x: hidden;
}

/* Touch scrollable areas */
.filter-scroll,
#stock-list,
overflow-x-auto {
  touch-action: pan-y;
}

/* Display */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.inline { display: inline; vertical-align: middle; }

/* Flexbox */
.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; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

/* Grid */
.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-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }

/* Spacing - Padding */
.p-1 { padding: 0.25rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.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; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-24 { padding-top: 6rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-16 { padding-bottom: 4rem; }

/* Spacing - Margin */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-0\.5 { margin-right: 0.125rem; }
.mr-1 { margin-right: 0.25rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Sizing */
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.h-2 { height: 0.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-xs { max-width: 20rem; }

/* Typography */
.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-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.whitespace-nowrap { white-space: nowrap; }

/* Colors - Text */
.text-white { color: #fff; }
.text-slate-900 { color: #0F172A; }
.text-gray-100 { color: var(--gray-100); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-emerald-400 { color: #34D399; }
.text-amber-400 { color: #FBBF24; }
.text-amber-500 { color: var(--brand); }
.text-green-400 { color: #4ADE80; }
.text-red-400 { color: #F87171; }
.text-yellow-400 { color: #FACC15; }
.text-violet-400 { color: #A78BFA; }
.text-orange-400 { color: #FB923C; }
.text-teal-400 { color: #2DD4BF; }
.text-pink-400 { color: #F472B6; }
.text-blue-400 { color: #60A5FA; }
.text-cyan-400 { color: #22D3EE; }
.text-indigo-400 { color: #818CF8; }
.text-lime-400 { color: #A3E635; }
.text-rose-400 { color: #FB7185; }
.text-sky-400 { color: #38BDF8; }
.text-fuchsia-400 { color: #E879F9; }
.text-slate-900 { color: #0F172A; }

/* Colors - Background */
.bg-slate-800 { background-color: #1E293B; }
.bg-slate-800\/30 { background-color: rgba(30, 41, 59, 0.3); }
.bg-slate-900\/50 { background-color: rgba(15, 23, 42, 0.5); }
.bg-slate-900\/80 { background-color: rgba(15, 23, 42, 0.8); }
.bg-amber-400 { background-color: #FBBF24; }
.bg-amber-300 { background-color: #FCD34D; }
.bg-amber-500\/20 { background-color: rgba(245, 158, 11, 0.2); }
.bg-amber-500\/15 { background-color: rgba(245, 158, 11, 0.15); }
.bg-emerald-500\/15 { background-color: rgba(16, 185, 129, 0.15); }
.bg-emerald-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-green-500\/15 { background-color: rgba(34, 197, 94, 0.15); }
.bg-green-500\/20 { background-color: rgba(34, 197, 94, 0.2); }
.bg-red-500\/15 { background-color: rgba(239, 68, 68, 0.15); }
.bg-red-500\/20 { background-color: rgba(239, 68, 68, 0.2); }
.bg-yellow-500\/20 { background-color: rgba(234, 179, 8, 0.2); }
.bg-violet-500\/15 { background-color: rgba(139, 92, 246, 0.15); }
.bg-violet-500\/20 { background-color: rgba(139, 92, 246, 0.2); }
.bg-orange-500\/15 { background-color: rgba(249, 115, 22, 0.15); }
.bg-orange-500\/20 { background-color: rgba(249, 115, 22, 0.2); }
.bg-teal-500\/15 { background-color: rgba(20, 184, 166, 0.15); }
.bg-teal-500\/20 { background-color: rgba(20, 184, 166, 0.2); }
.bg-pink-500\/15 { background-color: rgba(236, 72, 153, 0.15); }
.bg-pink-500\/20 { background-color: rgba(236, 72, 153, 0.2); }
.bg-purple-500\/15 { background-color: rgba(139, 92, 246, 0.15); }
.bg-purple-500\/20 { background-color: rgba(139, 92, 246, 0.2); }
.bg-blue-500\/15 { background-color: rgba(59, 130, 246, 0.15); }
.bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-cyan-500\/15 { background-color: rgba(6, 182, 212, 0.15); }
.bg-cyan-500\/20 { background-color: rgba(6, 182, 212, 0.2); }
.bg-indigo-500\/15 { background-color: rgba(99, 102, 241, 0.15); }
.bg-indigo-500\/20 { background-color: rgba(99, 102, 241, 0.2); }
.bg-lime-500\/15 { background-color: rgba(132, 204, 22, 0.15); }
.bg-lime-500\/20 { background-color: rgba(132, 204, 22, 0.2); }
.bg-rose-500\/15 { background-color: rgba(244, 63, 94, 0.15); }
.bg-rose-500\/20 { background-color: rgba(244, 63, 94, 0.2); }
.bg-sky-500\/15 { background-color: rgba(56, 189, 248, 0.15); }
.bg-sky-500\/20 { background-color: rgba(56, 189, 248, 0.2); }
.bg-fuchsia-500\/15 { background-color: rgba(232, 121, 249, 0.15); }
.bg-fuchsia-500\/20 { background-color: rgba(232, 121, 249, 0.2); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-style: solid; }
.border-slate-700\/30 { border-color: rgba(51, 65, 85, 0.3); }
.border-slate-700\/50 { border-color: rgba(51, 65, 85, 0.5); }
.border-amber-500\/30 { border-color: rgba(245, 158, 11, 0.3); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-9999 { border-radius: 9999px; }

/* Effects */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.glass {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(51, 65, 85, 0.5);
}
.glow { box-shadow: 0 0 30px -5px rgba(245, 158, 11, 0.15); }
.hero-gradient { background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #0F172A 100%); }

/* Positioning */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.-top-3 { top: -0.75rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.-bottom-4 { bottom: -1rem; }
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.left-1\/2 { left: 50%; }
.-left-4 { left: -1rem; }
.right-3 { right: 0.75rem; }
.right-6 { right: 1.5rem; }
.-right-4 { right: -1rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }

/* Transforms */
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-x-0 { transform: translateX(0); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 200ms; }
.transition-all { transition-property: all; transition-duration: 200ms; }
.duration-200 { transition-duration: 200ms; }

/* Other */
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.white-space-nowrap { white-space: nowrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.min-width-0 { min-width: 0; }
.opacity-80 { opacity: 0.8; }
.object-cover { object-fit: cover; }
.loading-lazy { loading: lazy; }
.preserveAspectRatio-none { preserveAspectRatio: none; }

/* Hover States */
.hover\:text-white:hover { color: #fff; }
.hover\:text-amber-300:hover { color: #FCD34D; }
.hover\:bg-amber-300:hover { background-color: #FCD34D; }
.hover\:bg-amber-400:hover { background-color: #FBBF24; }

/* Font Family */
.font-sans { font-family: 'IBM Plex Sans', system-ui, sans-serif; }

/* Animation */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Margin Auto */
.mx-auto { margin-left: auto; margin-right: auto; }

/* Width Fit */
.w-fit { width: fit-content; }

/* Grid column spans */
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }

/* Stock-specific classes */
.stock-row {
  transition: all 0.2s ease-out;
}
.stock-row:hover {
  background: rgba(245, 158, 11, 0.05);
  transform: translateX(4px);
}
@media (prefers-reduced-motion: reduce) {
  .stock-row:hover {
    transform: none;
  }
}
.stock-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.stock-card:active {
  background: rgba(245, 158, 11, 0.08);
}
.stock-card .info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.stock-card .meta {
  flex: 1;
  min-width: 0;
}
.stock-card .ticker {
  font-weight: 700;
  font-size: 0.8rem;
  color: #F8FAFC;
}
.stock-card .name {
  font-size: 0.75rem;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}
.stock-card .price-block {
  text-align: right;
  flex-shrink: 0;
}
.stock-card .price {
  font-weight: 600;
  font-size: 0.85rem;
  color: #F8FAFC;
}
.stock-card .change {
  font-size: 0.75rem;
  font-weight: 500;
}
.stock-card .change.up {
  color: #10B981;
}
.stock-card .change.down {
  color: #EF4444;
}
.stock-card .right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.stock-card .badge {
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 9999px;
  font-weight: 600;
  white-space: nowrap;
}
.stock-card .sector {
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 9999px;
  font-weight: 500;
  opacity: 0.8;
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 65, 85, 0.6), transparent);
}
.tag {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 500;
  display: inline-block;
}
.filter-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-scroll::-webkit-scrollbar {
  display: none;
}
.stock-list-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.img-card {
  overflow: hidden;
}
.img-card img {
  transition: transform 0.5s ease-out;
}
.img-card:hover img {
  transform: scale(1.05);
}

/* ========================================
   STOCK LIST - H5 MOBILE (max 767px)
   ======================================== */
@media (max-width: 767px) {
  #recommendations {
    display: block !important;
    position: relative !important;
    padding: 1rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    background: transparent !important;
  }

  #recommendations h2 {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #F8FAFC !important;
    margin: 0 0 0.25rem 0 !important;
    padding: 0 0.75rem !important;
    display: block !important;
    visibility: visible !important;
    line-height: 1.3 !important;
  }

  #recommendations p {
    font-size: 0.8rem !important;
    color: #64748B !important;
    margin: 0 0 0.75rem 0 !important;
    padding: 0 0.75rem !important;
    display: block !important;
  }

  #filter-tabs {
    display: block !important;
    padding: 0 0.75rem !important;
    margin-bottom: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #filter-tabs .flex {
    display: flex !important;
    gap: 0.5rem !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  #filter-tabs .tag {
    flex-shrink: 0 !important;
    font-size: 0.7rem !important;
    padding: 0.4rem 0.75rem !important;
    border-radius: 0.5rem !important;
  }

  .stock-list-wrap {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .stock-card-m {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(51, 65, 85, 0.6) !important;
    border-radius: 0.75rem !important;
    padding: 0.875rem !important;
    margin: 0.5rem 0.75rem !important;
    gap: 0.5rem !important;
    position: relative !important;
  }

  .stock-card-m .card-row-1 {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .stock-card-m .card-left {
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .stock-card-m .card-icon {
    width: 2.25rem !important;
    height: 2.25rem !important;
    border-radius: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
  }

  .stock-card-m .card-name {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #F8FAFC !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .stock-card-m .card-ticker {
    font-size: 0.7rem !important;
    color: #64748B !important;
  }

  .stock-card-m .card-price {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #F8FAFC !important;
    flex-shrink: 0 !important;
  }

  .stock-card-m .card-row-2 {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .stock-card-m .card-change {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
  }

  .stock-card-m .card-change.up { color: #10B981 !important; }
  .stock-card-m .card-change.down { color: #EF4444 !important; }
  .stock-card-m .card-change svg { width: 0.65rem !important; height: 0.65rem !important; }

  .stock-card-m .card-badges {
    display: flex !important;
    gap: 0.375rem !important;
    flex-wrap: wrap !important;
  }

  .stock-card-m .card-badge {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
  }

  .stock-card-m .badge-strong { background: rgba(245, 158, 11, 0.15) !important; color: #FBBF24 !important; }
  .stock-card-m .badge-buy { background: rgba(16, 185, 129, 0.15) !important; color: #34D399 !important; }
  .stock-card-m .badge-hold { background: rgba(245, 158, 11, 0.15) !important; color: #FBBF24 !important; }

  .stock-card-m .sector-tag {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 9999px !important;
    font-weight: 500 !important;
    opacity: 0.85 !important;
  }

  .stock-list-desktop, .stock-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

/* Desktop: hide mobile cards */
@media (min-width: 768px) {
  .stock-card-m {
    display: none !important;
  }
  .stock-list-desktop {
    display: block !important;
  }
  .stock-header {
    display: flex !important;
  }
  #recommendations {
    display: block !important;
    padding: 3.5rem 1rem !important;
  }
}

/* Responsive - sm (640px) */
@media (min-width: 640px) {
  .sm\:grid { display: grid; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:inline { display: inline; }
  .sm\:block { display: block; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

/* Responsive - md (768px) */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-left { text-align: left; }
  .md\:h-auto { height: auto; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:block { display: block; }
  .md\:justify-between { justify-content: space-between; }
  .md\:left-auto { left: auto; }
  .md\:translate-x-0 { transform: translateX(0); }
  .md\:right-6 { right: 1.5rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:gap-8 { gap: 2rem; }
}

/* Responsive - lg (1024px) */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:p-0 { padding: 0; }
}

/* Responsive - xl (1280px) for H5 and wide screens */
@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* Responsive - 2xl (1536px) for extra wide screens */
@media (min-width: 1536px) {
  .2xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
