/**
 * Sticky de anúncios / overflow — igual ao bloco do Ad Inserter (HEAD).
 * Aplicado em post e página; prioridade máxima no wp_head.
 */

.entry-content {
  overflow: visible !important;
}

.single-layout {
  overflow: visible !important;
}

html {
  overflow-x: unset !important;
}

body {
  overflow-x: hidden;
}

/* Pais que quebravam position:sticky no mobile */
.site-main.single-post,
.site-main.single-page,
.site-main.single-post > .container,
.site-main.single-page > .container,
.single-content-area,
.single-post-article,
.single-page-article {
  overflow: visible !important;
  overflow-x: visible !important;
}

@media (max-width: 768px) {
  .code-block-sticker-base {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    min-height: 520px !important;
  }

  .code-block-sticker-base .code-block-sticker {
    width: 100%;
    position: sticky;
    top: 70px;
  }
}
