/* ============================================
   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 (.alert_8a20) is a descendant of
   .block_5a34 (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.pattern-large-dd9b {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".right_e5c4" 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.container-3353 so it can't cause
   horizontal overflow anyway. */
.top_803e,
.short-9a1a,
.first-30d3,
.link-tall-b358,
.accordion-eb90,
.center-1ce3,
.last-5ba1,
.dropdown-wood-952e,
.search_wide_1855,
.dirty_ea1c,
.text_13ed {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .module-304c {
    padding: 8px 0;
  }
  
  .menu-soft-0b6c img {
    height: 28px;
    width: auto;
  }
  
  .bottom-bdee {
    display: none !important;
  }
  
  .tag-middle-9fe5 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .tag-middle-9fe5 svg {
    width: 14px;
    height: 14px;
  }
  
  .sidebar_steel_2142 {
    padding: 6px;
  }
  
  .basic-894f {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .first-30d3,
  .short-9a1a,
  .link-tall-b358,
  .accordion-eb90,
  .mask-9d27,
  .background_4e6c,
  .texture-tall-1fbe,
  .dropdown_hovered_b71e,
  .title-copper-427f,
  .info-97f9,
  .caption_29fb,
  .complex-1f18 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .header_902a,
  .icon_d084 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .table_7234,
  .paragraph-basic-2642,
  .slow-9dd0,
  .container-stone-d85c,
  .title-last-ba15,
  .pro_bd64,
  .first-a122 {
    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 */
  .grid_5f99,
  .nav-in-528c,
  .footer-pink-979c,
  .button-tall-81b8,
  .silver-e1b6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .green-ebd5,
  .summary_4037,
  .notification_6ba0,
  .advanced_908d {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .text_brown_4416,
  .notification-simple-62b0 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .list-3bf6,
  .tag-199a,
  .notice-current-c75f,
  .dropdown_black_ec60 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .header-first-0adb,
  .popup_simple_b25e,
  .bottom_9f22,
  .highlight_0b62,
  .hard-b48b,
  .stale-08e8 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .grid_5f99,
  .nav-in-528c,
  .button-tall-81b8 {
    max-width: none !important;
  }
  
  .right_e5c4 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .green-ebd5 {
    font-size: 1.5rem !important;
  }
  
  .summary_4037 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .link-inner-6022,
  .card_3700 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .notification_6ba0 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .hover_2fa4 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .hero_pro_df19 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .grid_5f99,
  .button-tall-81b8 {
    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: 8553 */
.widget-item-c0 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
