/* ===== Ad Slots ===== */
.ad-slot {
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  overflow: hidden;
}

/* Desktop sidebar ads */
.ad-sidebar {
  position: sticky;
  top: 20px;
  min-height: 600px;
  width: 160px;
}

/* Mobile banner ads */
.ad-mobile-top {
  min-height: 60px;
  width: 100%;
  display: none;
  flex-shrink: 0;
}

.ad-mobile-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 60px;
  z-index: 1000;
  border-radius: 0;
  border-top: 1px solid var(--color-border);
  display: none;
}

/* Desktop: show sidebars, hide mobile ads */
@media (min-width: 1025px) {
  .ad-sidebar {
    display: flex;
  }

  .ad-mobile-top,
  .ad-mobile-bottom {
    display: none !important;
  }
}

/* Tablet and below: hide sidebars, show mobile ads */
@media (max-width: 1024px) {
  .ad-sidebar {
    display: none !important;
  }

  .ad-mobile-top {
    display: flex;
  }

  .ad-mobile-bottom {
    display: flex;
  }
}
