/* === ADS.CSS — Dark-themed ad containers === */

.ad-slot {
  background: #1a1a1a;
  border: 1px solid var(--border-subtle, #2a2520);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.ad-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
  display: block;
  text-align: center;
  padding: 6px 0;
}

/* === LEADERBOARD — 728x90 desktop === */
.ad-leaderboard {
  width: 100%;
  min-height: 90px;
  margin-bottom: 32px;
}

/* === MID-ARTICLE — 336x280 === */
.ad-mid-article {
  max-width: 336px;
  min-height: 280px;
  margin: 40px auto;
}

/* === BOTTOM — 728x90 desktop === */
.ad-bottom {
  width: 100%;
  min-height: 90px;
  margin-top: 32px;
}

/* === SIDEBAR TOP — 300x600 === */
.ad-sidebar-top {
  width: 300px;
  min-height: 600px;
}

/* === SIDEBAR BOTTOM — 300x250 === */
.ad-sidebar-bottom {
  width: 300px;
  min-height: 250px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  /* Sidebar ads hidden (sidebar is hidden) */
  .ad-sidebar-top,
  .ad-sidebar-bottom {
    display: none;
  }

  /* Leaderboard becomes 320x100 on mobile */
  .ad-leaderboard {
    min-height: 100px;
  }

  /* Mid-article becomes 300x250 on mobile */
  .ad-mid-article {
    max-width: 300px;
    min-height: 250px;
  }

  .ad-bottom {
    min-height: 100px;
  }
}
