/* ============================================
   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 (.next-efca) is a descendant of
   .info_soft_4689 (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.brown_5b96 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".overlay-49ea" 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.row-8add so it can't cause
   horizontal overflow anyway. */
.gradient-51a6,
.background-slow-f53a,
.blue-ab81,
.article-small-1983,
.prev_49d6,
.progress-fe2f,
.gradient-7f83,
.footer-bb45,
.summary-8d43,
.cold-6940,
.modal-9cdd {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .slider_east_8543 {
    padding: 8px 0;
  }
  
  .middle-c2f3 img {
    height: 28px;
    width: auto;
  }
  
  .feature-dcef {
    display: none !important;
  }
  
  .avatar_f560 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .avatar_f560 svg {
    width: 14px;
    height: 14px;
  }
  
  .left-7a10 {
    padding: 6px;
  }
  
  .primary_67b8 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .blue-ab81,
  .background-slow-f53a,
  .article-small-1983,
  .prev_49d6,
  .list_fluid_923e,
  .bottom-909e,
  .widget_hard_30b5,
  .notification_copper_3124,
  .description_cdb7,
  .grid-15b5,
  .under_2505,
  .current-85d5 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .fluid_8696,
  .large-001a {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .picture-pink-e102,
  .outline-medium-e9a9,
  .paragraph_297d,
  .sidebar_liquid_caf4,
  .shade_c716,
  .row_full_1ef0,
  .bright_74cc {
    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 */
  .progress_2384,
  .slider-d12c,
  .photo_over_c321,
  .glass-ac62,
  .slider_b56e {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .large-158e,
  .widget-64e7,
  .easy-eef9,
  .menu-3d06 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .steel_dcaf,
  .secondary-tall-c15e {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .badge-d826,
  .container_09f8,
  .main_left_c34e,
  .grid_f026 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .alert-fcb8,
  .list_9d77,
  .nav_b32c,
  .simple-74bf,
  .link_0421,
  .feature-middle-948f {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .progress_2384,
  .slider-d12c,
  .glass-ac62 {
    max-width: none !important;
  }
  
  .overlay-49ea {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .large-158e {
    font-size: 1.5rem !important;
  }
  
  .widget-64e7 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .south_85a8,
  .short-9ee7 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .easy-eef9 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .carousel-red-dd05 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .wrapper-stale-31c8 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .progress_2384,
  .glass-ac62 {
    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: 8ba0 */
.promo-block-h6 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.3;
}
