/* ============================================================
   Ads — AdSense slot positioning
   ============================================================ */

.ad-wrapper {
  display: none; /* Shown by adsense.js after consent */
  text-align: center;
  overflow: hidden;
}

.ad-wrapper.loaded {
  display: block;
}

.ad-wrapper__label {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

/* Banner at top, below header */
.ad-banner-top {
  max-width: var(--max-width);
  margin: 1rem auto 0;
  padding: 0 1rem;
  min-height: 90px;
}

/* Banner at bottom, above footer */
.ad-banner-bottom {
  max-width: var(--max-width);
  margin: 0 auto 1rem;
  padding: 0 1rem;
  min-height: 90px;
}

/* Sidebar — shown on desktop in right column */
.ad-sidebar-wrap {
  min-width: 160px;
  min-height: 250px;
}

@media (max-width: 1023px) {
  .ad-sidebar-wrap {
    display: none;
  }
}

/* Inline between sections */
.ad-inline-wrap {
  min-height: 90px;
  margin: 2rem auto;
  max-width: 728px;
}
