/* ==========================================
   ADS INTERSTITIAL — full-width, tampil paling atas
   halaman sebelum header (gaya Nomina Indonesia)
   ========================================== */

.ads-interstitial {
  position: relative;
  z-index: 9999;
  width: 100%;
  background: #0d0d0d;
  overflow: hidden;
  max-height: 100vh;
  transition: opacity .25s ease, max-height .3s ease;
}

.ads-interstitial.is-closing {
  opacity: 0;
  max-height: 0;
}

.ads-interstitial-inner {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.ads-interstitial-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, .55);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: var(--font-size-2xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1.2;
}

.ads-interstitial-close::before {
  content: "\2715";
  font-size: .85em;
}

.ads-interstitial-close:hover,
.ads-interstitial-close:focus-visible {
  background: rgba(0, 0, 0, .8);
  outline: none;
}

.ads-interstitial-content {
  text-align: center;
  min-height: 60px;
}

.ads-interstitial-content img,
.ads-interstitial-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.ads-interstitial-scroll-note {
  background: var(--newsmath-primary);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Iklan interstitial HANYA muncul di mode mobile — disembunyikan mulai breakpoint desktop (>=768px). */
@media (min-width: 768px) {
  .ads-interstitial {
    display: none;
  }
}
