/* ==========================================================================
   Responsive CLS-Safe Advertising Containers (IAB Standard Slots)
   ========================================================================== */

.ad-wrapper {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.ad-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.ad-slot-container {
  background-color: rgba(16, 19, 34, 0.5);
  border: 1px dashed var(--border-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  overflow: hidden;
}

/* Desktop Leaderboard Slot */
.ad-slot-leaderboard {
  width: 728px;
  height: 90px;
  max-width: 100%;
}

/* Medium Rectangle Slot */
.ad-slot-content-mid {
  width: 300px;
  height: 250px;
}

/* Mobile Banner Slot */
.ad-slot-mobile-banner {
  width: 320px;
  height: 50px;
}

@media (max-width: 768px) {
  .ad-slot-leaderboard {
    width: 320px;
    height: 50px;
  }
}
