@import "tailwindcss";
@import "tw-animate-css";

@custom-variant dark (&:is(.dark *));

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Table row hover via CSS — no JS, SSR-friendly for LCP */
.tbl-rows-hover tbody tr:hover { background: rgba(255,255,255,0.06) !important; }

/* Screen-reader only — hidden visually, announced by assistive tech */
.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;
}

@keyframes tableCardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Reduce main thread work: skip layout/paint for below-fold content.
   Only applied on desktop; on mobile the estimated size causes CLS. */
@media (min-width: 768px) {
  main {
    content-visibility: auto;
    contain-intrinsic-size: auto 1200px;
  }
}

:root {
  /* ===== GTA 5 RP Forum-inspired Dark Theme ===== */

  /* Backgrounds — neutral dark grey */
  --bg-dark: #0c0c0c;
  --bg-main: #111111;
  --bg-sidebar: #0e0e0e;
  --bg-card: #181818;
  --bg-card-hover: #1e1e1e;
  --bg-elevated: #1c1c1c;

  /* Primary accent — GTA red */
  --accent-primary: #e74c3c;
  --accent-secondary: #ff6b6b;
  --accent-tertiary: #c0392b;
  --accent-glow: rgba(231, 76, 60, 0.35);
  --accent-glow-soft: rgba(231, 76, 60, 0.12);

  /* Secondary colors — muted, professional */
  --color-blue: #3b82f6;
  --color-purple: #8b5cf6;
  --color-green: #22c55e;
  --color-amber: #f59e0b;

  --success: #22c55e;
  --warning: #f59e0b;

  /* Text */
  --text-primary: #e8e8ed;
  --text-secondary: #a0a0b0;
  --text-muted: #5c5c6e;

  /* Borders — subtle, clean */
  --border: oklch(0.922 0 0);
  --border-light: #252525;
  --border-medium: #2e2e2e;
  --border-glow: rgba(231, 76, 60, 0.25);

  /* Glass / Surface */
  --glass: rgba(20, 20, 20, 0.85);
  --glass-border: rgba(255, 255, 255, 0.06);

  --radius: 0.625rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: oklch(0.205 0 0);
  --primary-foreground: oklch(0.985 0 0);
  --secondary: oklch(0.97 0 0);
  --secondary-foreground: oklch(0.205 0 0);
  --muted: oklch(0.97 0 0);
  --muted-foreground: oklch(0.556 0 0);
  --accent: oklch(0.97 0 0);
  --accent-foreground: oklch(0.205 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --input: oklch(0.922 0 0);
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-main) url('/api/media/bg-large.jpeg') center/cover fixed no-repeat;
  color: var(--text-primary);
  /* Системный шрифт по умолчанию — Montserrat не в критическом пути для main (Lighthouse цепочка к woff2). */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Сайдбар: на мобилке наследуем system stack от body — без запроса Montserrat .woff2 (Lighthouse / LCP).
   С десктопа оставляем Montserrat для визуала навигации. */
.layout-sidebar-host {
  font-weight: 400;
}
@media (min-width: 768px) {
  .layout-sidebar-host {
    font-family: var(--font-montserrat), "Montserrat", system-ui, sans-serif;
  }
}

h1, h2, h3, h4, h5, h6, b, strong, th {
  font-weight: 400;
}

/* Dark overlay on top of bg-large so content stays readable */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
  z-index: -2;
}

/* Subtle top gradient — forum-like atmosphere */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(231, 76, 60, 0.08), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ===== ANIMATED ORANGE PARTICLE DOTS ===== */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(231, 76, 60, 0.5);
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.3);
  will-change: transform;
}

.bg-particle:nth-child(1) { top: 10%; left: 15%; animation: particle-drift-1 18s ease-in-out infinite; }
.bg-particle:nth-child(2) { top: 25%; left: 75%; animation: particle-drift-2 22s ease-in-out infinite; width: 2px; height: 2px; opacity: 0.7; }
.bg-particle:nth-child(3) { top: 60%; left: 30%; animation: particle-drift-3 20s ease-in-out infinite; }
.bg-particle:nth-child(4) { top: 80%; left: 60%; animation: particle-drift-1 25s ease-in-out infinite reverse; width: 4px; height: 4px; opacity: 0.4; }
.bg-particle:nth-child(5) { top: 15%; left: 50%; animation: particle-drift-2 16s ease-in-out infinite; width: 2px; height: 2px; }
.bg-particle:nth-child(6) { top: 45%; left: 85%; animation: particle-drift-3 24s ease-in-out infinite reverse; opacity: 0.6; }
.bg-particle:nth-child(7) { top: 70%; left: 10%; animation: particle-drift-1 19s ease-in-out infinite; width: 2px; height: 2px; opacity: 0.5; }
.bg-particle:nth-child(8) { top: 35%; left: 45%; animation: particle-drift-2 21s ease-in-out infinite; width: 3px; height: 3px; opacity: 0.4; }
.bg-particle:nth-child(9) { top: 90%; left: 25%; animation: particle-drift-3 17s ease-in-out infinite; width: 2px; height: 2px; opacity: 0.6; }
.bg-particle:nth-child(10) { top: 5%; left: 90%; animation: particle-drift-1 23s ease-in-out infinite reverse; opacity: 0.5; }

@keyframes particle-drift-1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(30px, -20px); opacity: 0.7; }
  50% { transform: translate(-15px, 25px); opacity: 0.3; }
  75% { transform: translate(20px, 10px); opacity: 0.6; }
}

@keyframes particle-drift-2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  33% { transform: translate(-25px, 15px); opacity: 0.3; }
  66% { transform: translate(20px, -30px); opacity: 0.7; }
}

@keyframes particle-drift-3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(35px, -25px); opacity: 0.65; }
}

/* ===== STYLE PICKER (Beautiful Button Color Selection) ===== */
.style-picker-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.style-picker-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  border: 2px solid transparent;
  min-width: 72px;
}

.style-picker-option:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.style-picker-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.style-picker-option:has(input:checked) {
  border-color: var(--accent-primary);
  background: rgba(231, 76, 60, 0.1);
  box-shadow: 0 0 16px rgba(231, 76, 60, 0.2);
}

.style-picker-swatch {
  width: 36px;
  height: 24px;
  border-radius: 6px;
  transition: all 0.25s ease;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.3);
}

.style-swatch-primary {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.style-swatch-secondary {
  background: linear-gradient(135deg, #4F545C 0%, #36393F 100%);
}

.style-swatch-success {
  background: linear-gradient(135deg, #57F287 0%, #23A65A 100%);
}

.style-swatch-danger {
  background: linear-gradient(135deg, #ED4245 0%, #C43030 100%);
}

.style-picker-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.style-picker-option:has(input:checked) .style-picker-label {
  color: var(--accent-primary);
}

/* Scrollbar — clean and subtle */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a3a3a;
}

::selection {
  background: var(--accent-primary);
  color: white;
}

/* ===== ANIMATIONS ===== */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px var(--accent-glow-soft);
  }
  50% {
    box-shadow: 0 0 25px var(--accent-glow);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes border-glow {
  0%, 100% { border-color: var(--border-light); }
  50% { border-color: var(--border-glow); }
}

/* ===== UTILITIES ===== */

.animate-fade-in {
  animation: fade-in-up 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scale-in 0.4s ease-out forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ===== COMPONENTS ===== */

/* Glass effect — more subtle */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* Card hover — cleaner */
.card-hover {
  transition: all 0.25s ease;
  transform: translateY(0);
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #c0392b 100%);
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.25);
}

.btn-gradient:hover {
  box-shadow: 0 6px 24px rgba(231, 76, 60, 0.4);
  transform: translateY(-2px);
}

/* Badge pulse */
.badge-pulse {
  position: relative;
}

.badge-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  opacity: 0.4;
  animation: pulse-glow 2s ease-in-out infinite;
  z-index: -1;
}

/* Accent line */
.accent-line {
  position: relative;
}

.accent-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  border-radius: 2px;
}

/* Gradient divider */
.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* Arrow icon */
.arrow-icon {
  transition: transform 0.25s ease, color 0.25s ease;
}

.group:hover .arrow-icon {
  transform: translate(4px, -4px);
  color: var(--accent-primary);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo styles are embedded directly in Sidebar component for reliability */

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  body::before {
    height: 300px;
  }

  ::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
}

@theme inline {
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);
  --radius-4xl: calc(var(--radius) + 16px);
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.205 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.205 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.922 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.704 0.191 22.216);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 15%);
  --ring: oklch(0.556 0 0);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(1 0 0 / 10%);
  --sidebar-ring: oklch(0.556 0 0);
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-primary, #e74c3c);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Home page — CSS-driven responsive to prevent CLS on mobile */
.home-hero {
  text-align: center;
  padding: 60px 0 48px;
}
.home-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.2), transparent);
  margin: 20px 0 40px;
}
.home-action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-direction: row;
}
.home-featured-section {
  margin-bottom: 48px;
}
.home-featured-section .home-featured-title {
  font-size: 24px;
  margin-bottom: 24px;
}
.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.home-decor-orb {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
@keyframes home-badge-pulse-kf {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.home-badge-pulse {
  animation: home-badge-pulse-kf 2s ease-in-out infinite;
}
.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(139, 92, 246, 0.06) 100%);
  border: 1px solid rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.home-h1 {
  font-size: 52px;
  /* 700 есть в next/font Montserrat; 800 грузит синтетику и хуже для первой отрисовки */
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* LCP: крупные заголовки — системный шрифт на ПК и мобилке (не ждём Montserrat .woff2) */
.map-hero-title,
.home-h1,
.start-h1,
.calc-hero-h1,
.nd-hero-content h1,
.wiki-lcp-h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

.home-subtitle {
  color: #8888a0;
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.home-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 16px;
  background: rgba(24, 24, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.home-promo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border: none;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}
.home-card {
  position: relative;
  display: block;
  padding: 28px;
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.home-card-content {
  position: relative;
  margin-top: 40px;
}
.home-card-content.no-badge {
  margin-top: 0;
}
.home-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.home-info-banner {
  padding: 24px;
  border-radius: 20px;
  background: rgba(24, 24, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  backdrop-filter: blur(10px);
}
.home-info-text {
  color: #8e8ea4;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .home-hero {
    padding: 32px 0 28px;
  }
  .home-divider {
    margin: 12px 0 24px;
  }
  .home-action-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 16px;
  }
  .home-featured-section {
    margin-bottom: 32px;
  }
  .home-featured-section .home-featured-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .home-featured-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-decor-orb {
    display: none;
  }
  .home-badge {
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 20px;
  }
  .home-h1 {
    font-size: 28px;
    margin-bottom: 12px;
    padding: 0 8px;
  }
  .home-subtitle {
    font-size: 15px;
    margin: 0 auto 24px;
    padding: 0 16px;
  }
  .home-action-btn {
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
  }
  .home-promo-btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
  }
  .home-card {
    padding: 20px;
    border-radius: 14px;
  }
  .home-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 14px;
  }
  .home-card-content {
    margin-top: 32px;
  }
  .home-card-title {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .home-info-banner {
    padding: 16px;
    border-radius: 14px;
  }
  .home-info-text {
    font-size: 12px;
  }

  /* ——— Главная (/) только на мобильных: проще фон и отрисовка hero ——— */
  body:has(.home-page-root) {
    background-attachment: scroll !important;
  }
  .home-page-root .home-subtitle {
    display: none !important;
  }
  .home-page-root .home-badge-pulse {
    animation: none;
  }
  .home-page-root .home-badge,
  .home-page-root .home-action-btn,
  .home-page-root .home-promo-btn,
  .home-page-root .home-card,
  .home-page-root .home-info-banner {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .home-page-root .home-promo-btn {
    box-shadow: 0 2px 14px rgba(231, 76, 60, 0.22) !important;
  }
  /* градиентный текст h1 → сплошной цвет: меньше слоёв при paint */
  .home-page-root .home-h1 > span:first-of-type {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #fff !important;
  }
  .home-page-root .home-h1 > span:last-of-type {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #e67e22 !important;
  }
}

/* Layout shell — CSS-driven responsive to prevent CLS */
.layout-content {
  margin-left: 280px;
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 100vh;
}
.layout-content[data-collapsed="true"] {
  margin-left: 64px;
}
.layout-main {
  padding: 12px 24px;
  position: relative;
  z-index: 10;
  min-height: 0;
}
.layout-hamburger {
  display: none;
}
.sm-show-btn-wrap {
  padding: 12px 16px;
  min-height: 44px;
}
.sm-show-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 0;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.06), rgba(231, 76, 60, 0.02));
  border: 1px solid rgba(231, 76, 60, 0.15);
  border-radius: 12px;
  color: #e74c3c;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.sm-show-btn:hover {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.12), rgba(231, 76, 60, 0.05));
  border-color: rgba(231, 76, 60, 0.3);
}

@media (max-width: 767px) {
  .layout-content,
  .layout-content[data-collapsed="true"] {
    margin-left: 0 !important;
  }
  .layout-main {
    padding: 52px 12px 12px;
  }
  .layout-hamburger {
    display: flex;
  }
}

/* /start page — above-the-fold responsive (CSS-driven to prevent CLS) */
.start-header { padding: 40px 0 32px; }
.start-breadcrumb { margin-bottom: 20px; font-size: 14px; }
.start-title-row { gap: 20px; align-items: center; }
.start-icon-wrap { width: 64px; height: 64px; border-radius: 18px; }
.start-h1 { font-size: 36px; }
.start-subtitle { font-size: 16px; }
.start-banner { padding: 40px; border-radius: 24px; margin-bottom: 40px; }
.start-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 8px 16px; font-size: 12px; margin-bottom: 0;
}
.start-banner-inner { align-items: center; gap: 40px; flex-direction: row; }
.start-banner-left { min-width: 320px; }
.start-banner-h2 { font-size: 32px; gap: 12px; }
.start-banner-text { font-size: 18px; margin-bottom: 24px; }
.start-bonuses { gap: 16px; margin-bottom: 28px; }
.start-bonus-card { gap: 14px; padding: 14px 20px; border-radius: 14px; flex: 0 0 auto; min-width: auto; }
.start-bonus-title { font-size: 12px; }
.start-bonus-value { font-size: 22px; }
.start-copy-btn { padding: 18px 36px; border-radius: 16px; font-size: 18px; gap: 16px; width: auto; }
.start-copy-code { padding: 8px 20px; font-size: 22px; }
.start-banner-image { display: block; }
.start-decor { display: block; }

@media (max-width: 767px) {
  .start-header { padding: 24px 0 20px; }
  .start-breadcrumb { margin-bottom: 14px; font-size: 12px; }
  .start-title-row { gap: 14px; align-items: flex-start; }
  .start-icon-wrap { width: 48px; height: 48px; border-radius: 14px; }
  .start-h1 { font-size: 22px; }
  .start-subtitle { font-size: 13px; }
  .start-banner { padding: 20px 16px; border-radius: 16px; margin-bottom: 28px; }
  .start-badge {
    position: relative; top: auto; right: auto;
    padding: 6px 12px; font-size: 10px; margin-bottom: 16px;
  }
  .start-banner-inner { align-items: flex-start; gap: 20px; flex-direction: column; }
  .start-banner-left { min-width: auto; }
  .start-banner-h2 { font-size: 22px; gap: 8px; }
  .start-banner-text { font-size: 14px; margin-bottom: 16px; }
  .start-bonuses { gap: 10px; margin-bottom: 20px; }
  .start-bonus-card { gap: 10px; padding: 10px 14px; border-radius: 12px; flex: 1 1 auto; min-width: calc(50% - 8px); }
  .start-bonus-title { font-size: 11px; }
  .start-bonus-value { font-size: 18px; }
  .start-copy-btn { padding: 14px 24px; border-radius: 14px; font-size: 14px; gap: 10px; width: 100%; }
  .start-copy-code { padding: 6px 14px; font-size: 18px; }
  .start-banner-image { display: none; }
  .start-decor { display: none; }
}

/* Families page */
@keyframes famShimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.fam-shimmer-bg {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: famShimmer 1.5s ease-in-out infinite;
}
.fam-card {
  position: relative;
  min-height: 280px;
  background: #242424e0;
  border-radius: 18px;
  padding: 22px;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  contain: layout style;
}
.fam-card:hover {
  box-shadow: 0 0 24px rgba(249,115,22,0.35), 0 0 48px rgba(249,115,22,0.15), 0 2px 12px rgba(0,0,0,0.2);
}
.fam-vote-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s cubic-bezier(0.4,0,0.2,1), border-color 0.25s cubic-bezier(0.4,0,0.2,1), color 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.fam-badge {
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fam-tag {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  color: #9a9aad;
  border: 1px solid rgba(255,255,255,0.08);
}
.fam-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.fam-filter-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid;
}
.fam-sort-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .fam-sort-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 10px 16px;
    font-size: 13px;
  }
  .fam-sort-row {
    flex-direction: column;
    align-items: stretch;
  }
  .fam-sort-row > div:last-child {
    margin-left: 0;
    justify-content: flex-start;
  }
}
.fam-hero {
  position: relative;
  height: 220px;
  margin-bottom: 28px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, #1a0f05 0%, #2d1a0a 50%, #242424 100%);
}
.fam-search-wrap {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  background: #242424e0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.fam-search-input {
  flex: 1;
  padding: 14px 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}
.fam-suggest-btn {
  padding: 14px 24px;
  background: #242424e0;
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 12px;
  color: #f97316;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.fam-suggest-btn-yellow {
  border-color: rgba(251,191,36,0.4);
  color: #fbbf24;
}
.fam-server-filter {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 12px;
  background: #242424e0;
  border: 1px solid rgba(255,255,255,0.05);
  min-height: 46px;
}
.fam-tags-wrap {
  margin-bottom: 20px;
  border-radius: 14px;
  background: #242424e0;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  min-height: 44px;
}
.fam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  align-items: stretch;
  contain: layout;
}
@media (max-width: 768px) {
  .fam-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.fam-grid > div {
  content-visibility: auto;
  contain-intrinsic-size: auto 320px;
  contain: layout style;
  overflow: visible;
}

/* Transport page — responsive via CSS to avoid CLS */
.tp-header { margin-bottom: 32px; }
.tp-header h1 { font-size: 32px; }
.tp-header p { font-size: 15px; }
.tp-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.tp-tab { padding: 8px 14px; border-radius: 10px; font-size: 13px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.tp-tab-count { font-size: 11px; padding: 2px 5px; border-radius: 4px; }
.tp-filters { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; flex-direction: row; }
.tp-search { flex: 1; min-width: 250px; display: flex; align-items: center; gap: 10px; padding: 0 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; }
.tp-search input { flex: 1; padding: 14px 0; background: transparent; border: none; outline: none; color: #e8e8ed; font-size: 14px; }
.tp-sort { padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; color: #a0a0b0; font-size: 14px; outline: none; cursor: pointer; min-width: 160px; width: auto; }
.tp-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.tp-info h2 { font-size: 18px; font-weight: 600; color: #e8e8ed; margin: 0; }
.tp-info span { color: #8e8ea4; font-size: 14px; }
.tp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; }
.tp-card-img { height: 200px; display: flex; align-items: center; justify-content: center; padding: 16px 20px; position: relative; overflow: hidden; }

.tp-card-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 16px 18px 0; }
.tp-card-head h3 { font-size: 17px; font-weight: 600; color: #e8e8ed; margin: 0; }
.tp-card-info { padding: 0 18px 14px; }
.tp-card-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13px; }
.tp-card-meta { display: flex; gap: 6px; padding: 12px 18px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; }
.tp-card-meta span { font-size: 11px; padding: 3px 7px; background: rgba(255,255,255,0.04); border-radius: 4px; color: #8e8ea4; }
.tp-card-tags { display: flex; gap: 4px; padding: 8px 18px; flex-wrap: wrap; }
.tp-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; background: rgba(231,76,60,0.06); border-top: 1px solid rgba(231,76,60,0.08); }
.tp-card-footer .tp-price-label { font-size: 10px; color: #8e8ea4; text-transform: uppercase; letter-spacing: 0.5px; }
.tp-card-footer .tp-price { font-size: 18px; font-weight: 700; color: #e8e8ed; }

@media (max-width: 767px) {
  .tp-header { margin-bottom: 20px; }
  .tp-header h1 { font-size: 24px; }
  .tp-header p { font-size: 13px; }
  .tp-tabs { gap: 6px; margin-bottom: 16px; padding-bottom: 14px; }
  .tp-tab { padding: 6px 10px; border-radius: 8px; font-size: 11px; gap: 4px; }
  .tp-tab-count { font-size: 10px; }
  .tp-filters { gap: 8px; margin-bottom: 16px; flex-direction: column; }
  .tp-search { min-width: auto; }
  .tp-search input { padding: 12px 0; font-size: 13px; }
  .tp-sort { padding: 12px 14px; font-size: 13px; min-width: auto; width: 100%; }
  .tp-info { margin-bottom: 14px; }
  .tp-info h2 { font-size: 16px; }
  .tp-info span { font-size: 12px; }
  .tp-grid { grid-template-columns: 1fr; gap: 12px; }
  .tp-card-img { height: 160px; padding: 12px 14px; }
  .tp-card-head { padding: 14px 14px 0; }
  .tp-card-head h3 { font-size: 15px; }
  .tp-card-info { padding: 0 14px 12px; }
  .tp-card-row { font-size: 12px; }
  .tp-card-meta { padding: 10px 14px; }
  .tp-card-meta span { font-size: 10px; }
  .tp-card-tags { padding: 6px 14px; }
  .tp-card-footer { padding: 12px 14px; }
  .tp-card-footer .tp-price { font-size: 16px; }
}

/* Tables listing page — CSS-driven responsive */
.tbl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  align-items: stretch;
}
.tbl-grid-item {
  min-height: 280px;
  display: flex;
}
.tbl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  flex: 1;
  min-height: 260px;
  border-radius: 16px;
  background: rgba(24,24,24,0.7);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  contain: layout style;
}
.tbl-card-banner {
  height: 120px;
  overflow: hidden;
  position: relative;
}
.tbl-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  transition: color 0.3s;
}
.tbl-card-accent,
.tbl-card-glow {
  display: block;
}
.tbl-footer-wrap {
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
@media (max-width: 767px) {
  .tbl-grid {
    grid-template-columns: 1fr;
  }
  .tbl-grid-item {
    min-height: 240px;
  }
  .tbl-card {
    min-height: 220px;
    border-radius: 12px;
    backdrop-filter: none;
    transition: none;
  }
  .tbl-card-banner {
    height: 100px;
  }
  .tbl-card-title {
    font-size: 15px;
  }
  .tbl-card-accent,
  .tbl-card-glow {
    display: none;
  }
  .tbl-footer-wrap {
    transition: none;
  }
}

/* Guides — larger font on PC only */
@media (min-width: 769px) {
  /* Guides list cards */
  .guide-page .guide-card-body h2 {
    font-size: 20px !important;
  }
  .guide-page .guide-card-body p {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }
  .guide-page .guide-card-category {
    font-size: 14px !important;
  }
  .guide-page .guide-card-views {
    font-size: 14px !important;
  }
  /* Individual guide content */
  .guide-page .guide-rich,
  .guide-page p,
  .guide-page li {
    font-size: 18px !important;
    line-height: 1.8 !important;
  }
  .guide-page nav a,
  .guide-page nav > div:first-child {
    font-size: 16px !important;
  }
  .guide-page h2 {
    font-size: 26px !important;
  }
  .guide-page h3 {
    font-size: 22px !important;
  }
}

/* Fishing: на мобильных баннер без фото (в духе ВЗП — сетка + короткий текст, LCP без картинки) */
.fishing-hero-compact {
  position: relative;
  margin-bottom: 32px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #1a1a1a;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 132px;
  padding: 14px 16px 16px;
}
.fishing-hero-compact-inner { position: relative; z-index: 1; }
.fishing-hero-compact-short {
  margin: 10px auto 0;
  padding: 0 12px;
  max-width: 22rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: #9a9ab0;
  text-transform: uppercase;
}
.fishing-hero-compact-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.fishing-hero-desktop-only { display: block; }
.fishing-hero-mobile-only { display: none; }
@media (max-width: 767px) {
  .fishing-hero-desktop-only { display: none !important; }
  .fishing-hero-mobile-only.fishing-hero-compact { display: flex !important; }
  .fishing-hero-compact-title {
    font-size: 20px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
  }
}
@media (min-width: 768px) {
  .fishing-hero-mobile-only { display: none !important; }
  .fishing-hero-desktop-only { display: block !important; }
}

/* Дальнобойщик: тот же responsive-паттерн, что у рыбалки (мобильный LCP без фото) */
.trucker-hero-compact {
  position: relative;
  margin-bottom: 32px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #1a1a1a;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 132px;
  padding: 14px 16px 16px;
}
.trucker-hero-compact-inner { position: relative; z-index: 1; }
.trucker-hero-compact-short {
  margin: 10px auto 0;
  padding: 0 12px;
  max-width: 22rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: #9a9ab0;
  text-transform: uppercase;
}
.trucker-hero-compact-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.trucker-hero-desktop-only { display: block; }
.trucker-hero-mobile-only { display: none; }
@media (max-width: 767px) {
  .trucker-hero-desktop-only { display: none !important; }
  .trucker-hero-mobile-only.trucker-hero-compact { display: flex !important; }
  .trucker-hero-compact-title {
    font-size: 20px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
  }
}
@media (min-width: 768px) {
  .trucker-hero-mobile-only { display: none !important; }
  .trucker-hero-desktop-only { display: block !important; }
}

.dalnoboy-figure {
  margin: 20px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #1a1a1a;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
}
.dalnoboy-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Map hero banner — responsive */
.map-hero-banner { height: 220px; }
.map-hero-title { font-size: 38px; }
.map-hero-sub { font-size: 15px; }

/* ВЗП / МП / точки влияния: на мобильных короткий баннер — меньше текста в LCP */
.map-hero-tactical .map-hero-banner-short {
  display: none;
}
@media (max-width: 768px) {
  .map-hero-tactical .map-hero-banner-long,
  .map-hero-tactical .map-hero-sub {
    display: none !important;
  }
  .map-hero-tactical .map-hero-banner-short {
    display: block !important;
    margin: 10px auto 0;
    padding: 0 16px;
    max-width: 22rem;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.35;
    color: #b4b4c8;
    text-transform: uppercase;
  }
}

/* Гайды: сетка ниже первого экрана на телефонах — LCP чаще текст/блоки сверху, не превью карточки */
@media (max-width: 1023px) {
  .guides-page-grid-wrap {
    margin-top: clamp(72px, 26vh, 280px);
  }
}

@media (max-width: 768px) {
  .map-hero-banner { height: 140px; border-radius: 14px !important; }
  /* Системный «обычный» шрифт вместо web-font + 800 — меньше задержка отрисовки LCP */
  .map-hero-title {
    font-size: 20px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
    line-height: 1.25 !important;
  }
  .map-hero-sub { font-size: 13px !important; }

  .vzp-card-img-wrap,
  .mp-card-img-wrap,
  .pip-card-img-wrap {
    display: none !important;
  }
  .vzp-card-name-mobile,
  .mp-card-name-mobile,
  .pip-card-name-mobile {
    display: flex !important;
  }
}
