/* ===== Fight Week Picks — mobile overflow fix ===== */

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body * {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

img, video, iframe, table {
  max-width: 100%;
  height: auto;
}

/* Long words and headings must be allowed to break */
h1, h2, h3, p, li, td, th, span, a, div {
  overflow-wrap: break-word;
  word-break: normal;
}

/* Anything using full viewport width is a common culprit */
[style*="100vw"] { max-width: 100% !important; }

@media (max-width: 782px) {
  .wp-block-cover,
  .wp-block-cover.has-background-dim {
    min-height: 62vh !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .wp-block-cover h2,
  .wp-block-cover .wp-block-heading {
    font-size: clamp(28px, 8vw, 40px) !important;
    line-height: 1.04 !important;
    margin-bottom: 12px !important;
  }
  .wp-block-cover p { font-size: 15px !important; line-height: 1.5 !important; }
  .wp-block-cover .wp-block-button__link { padding: 14px 26px !important; font-size: 14px !important; }
}