/* ============================================
   CRITICAL MOBILE FIXES
   Additional layer to ensure perfect mobile display
   ============================================ */

/* Prevent horizontal scroll at all costs */
html {
  width: 100%;
  scroll-behavior: smooth;
  /* NO position:relative - it breaks sticky! */
  /* NO overflow-x here either - mixed with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks sticky too! */
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  /* NO position:relative - it breaks sticky! */
}

/* Ensure all major containers respect viewport */
/* NOTE: "nav" is intentionally excluded here. Giving a <nav> element
   overflow-x: hidden makes its overflow-y auto-compute to "auto" (per the
   CSS overflow spec), turning it into a clipping/scroll container. Since
   the header's dropdown submenu (.fluid_41d6) is a descendant of
   .block_dynamic_5d22 (a <nav>), it was getting clipped and forced into a tiny
   internal scrollbar instead of opening naturally below the nav link. */
main,
section,
article,
footer {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header must NOT have max-width restriction for sticky to work */
header.short-dfa2 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".gallery_liquid_d4d1" is intentionally excluded here for the same reason as
   "nav" above — the header's <div class="container"> wraps the nav and
   must not clip the dropdown submenu with an auto-computed overflow-y.
   It's already width-capped via max-width in style.huge-6a05 so it can't cause
   horizontal overflow anyway. */
.green-2e2e,
.caption_soft_d57f,
.warm-a9f2,
.liquid-229a,
.gold-d954,
.button_efc5,
.icon_thick_d64c,
.surface_copper_1224,
.hidden-white-2805,
.layout_gas_61cf,
.medium-ef11 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .sidebar-medium-b4ea {
    padding: 8px 0;
  }
  
  .hero-soft-1182 img {
    height: 28px;
    width: auto;
  }
  
  .sort_easy_57fa {
    display: none !important;
  }
  
  .thick_91c0 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .thick_91c0 svg {
    width: 14px;
    height: 14px;
  }
  
  .steel_ee0b {
    padding: 6px;
  }
  
  .hard_672e {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .warm-a9f2,
  .caption_soft_d57f,
  .liquid-229a,
  .gold-d954,
  .info_solid_e410,
  .column-f3d8,
  .simple_3827,
  .feature-b9cd,
  .simple_56a9,
  .shadow_eff7,
  .green-17b7,
  .complex_9187 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .static_2782,
  .column_5d8d {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .hero_prev_cd77,
  .highlight_light_18a8,
  .slider-down-68ad,
  .warm-b743,
  .carousel_cd9d,
  .cold_b364,
  .overlay_plasma_72c0 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  
  /* Ensure images are responsive */
  img,
  svg,
  picture {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Better padding for mobile */
  .slider-69ee,
  .aside_fluid_e62a,
  .aside_5fd3,
  .panel_9eb0,
  .tabs-easy-64dd {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .summary_72fe,
  .tabs-ce6b,
  .carousel-stone-0bf2,
  .focus-south-a2d0 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .header_rough_7245,
  .smooth-493a {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .new-c2f7,
  .filter_blue_6961,
  .green_d20f,
  .pattern_hot_e180 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .gradient-old-cb5e,
  .overlay-9686,
  .gold-35f2,
  .summary_top_f973,
  .surface-b23a,
  .accordion-614a {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .slider-69ee,
  .aside_fluid_e62a,
  .panel_9eb0 {
    max-width: none !important;
  }
  
  .gallery_liquid_d4d1 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .summary_72fe {
    font-size: 1.5rem !important;
  }
  
  .tabs-ce6b {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .button_hovered_9df0,
  .hard_9250 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .carousel-stone-0bf2 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .layout_iron_1d74 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .short_ceee {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .slider-69ee,
  .panel_9eb0 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* iPhone X and notch devices */
@supports (padding: max(0px)) {
  body {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}

/* css-noise: 2c92 */
.widget-item-e4 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.1;
}
