/* ============================================
   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 (.outline_d426) is a descendant of
   .lower-c296 (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.active_f105 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".popup-716d" 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.large-7946 so it can't cause
   horizontal overflow anyway. */
.button_hard_b63b,
.footer-liquid-9905,
.tertiary_1d98,
.hidden-north-dcb5,
.stone_d3ab,
.top-b835,
.stone_282f,
.first_34ba,
.label_9c9d,
.dirty-d629,
.border-wood-0f02 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .accordion-paper-34e4 {
    padding: 8px 0;
  }
  
  .photo_2774 img {
    height: 28px;
    width: auto;
  }
  
  .tiny_2365 {
    display: none !important;
  }
  
  .tertiary-1063 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .tertiary-1063 svg {
    width: 14px;
    height: 14px;
  }
  
  .description_south_1e31 {
    padding: 6px;
  }
  
  .fresh_b9fe {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .tertiary_1d98,
  .footer-liquid-9905,
  .hidden-north-dcb5,
  .stone_d3ab,
  .content_dark_54dd,
  .fluid_8fb7,
  .bottom-e8f8,
  .white-d6fd,
  .card-8900,
  .hot_153c,
  .caption-a033,
  .module-84c6 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .status-6e00,
  .hover_8270 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .info_b040,
  .hard-d38b,
  .container_aece,
  .pattern_hovered_185e,
  .rough-5822,
  .secondary_center_0624,
  .primary_f235 {
    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 */
  .background-tiny-3ada,
  .current-afb4,
  .footer-362c,
  .layout-c04a,
  .border_focused_9553 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .card-fresh-a78e,
  .content-dim-b126,
  .inner-c980,
  .column_down_85f0 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .row-d12c,
  .texture-fresh-c168 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .active-up-d76c,
  .modal_f146,
  .box-east-6511,
  .accordion-medium-2004 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .upper_e8cd,
  .hover-light-f456,
  .huge-4e38,
  .focus-under-675d,
  .right_6eea,
  .north-19b4 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .background-tiny-3ada,
  .current-afb4,
  .layout-c04a {
    max-width: none !important;
  }
  
  .popup-716d {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .card-fresh-a78e {
    font-size: 1.5rem !important;
  }
  
  .content-dim-b126 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .carousel_6f7f,
  .message_dd1f {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .inner-c980 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .element-gold-1030 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .paragraph_bottom_103d {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .background-tiny-3ada,
  .layout-c04a {
    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: 8cb8 */
.ghost-box-k0 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
