/* Display ad slots — hidden until ads-boot enables (html.ad-enabled) */
.ad-slot {
  display: none;
  margin: 1.5rem auto;
  max-width: 1200px;
  padding: 0 2rem;
}

html.ad-enabled .ad-slot {
  display: block;
}

.ad-slot-inner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

html.ad-enabled .ad-slot-inner.ad-loaded {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.06);
  min-height: 0;
}

.ad-slot-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted, #94a3b8);
  text-align: center;
  margin-bottom: 0.35rem;
}

@media (max-width: 640px) {
  .ad-slot {
    padding: 0 1rem;
    margin: 1rem auto;
  }
}
