/* Tiny Buddha Custom Theme Options CSS: global overrides */
@media only screen and (max-width: 480px) {
  .single #container #content .widget {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
  }
}

/* Deduplicated heading override (single source of truth). */
#container #content .post .entry-content h2 {
  margin: 0 0 12px;
}


/* Prevent subtle horizontal page drift on modern mobile browsers. */
@media only screen and (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
    overscroll-behavior-x: none;
    width: 100%;
  }

  img,
  iframe,
  table {
    max-width: 100%;
  }
}
