/* AdSense placeholder slots — minimal, theme-aware */

.ad-slot {
  margin: 0;
  padding: 0;
}

.ad-slot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bg-elevated) 92%, var(--bg-muted));
  color: var(--text-muted);
  box-sizing: border-box;
}

.ad-slot-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
  line-height: 1;
}

.ad-slot-placeholder {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

/* Dashboard footer strip */
.ad-slot--footer {
  margin: 0.75rem 1.25rem 1.25rem;
  max-width: 100%;
}

.ad-slot--footer .ad-slot-inner {
  min-height: 72px;
  max-height: 90px;
  padding: 0.5rem 0.75rem;
}

.ad-slot--footer .ad-slot-placeholder {
  letter-spacing: 0.02em;
}

/* Sidebar compact slot */
.ad-slot--sidebar {
  margin: 0.5rem 0.75rem 0.75rem;
  flex-shrink: 0;
}

.ad-slot--sidebar .ad-slot-inner {
  min-height: 100px;
  max-height: 140px;
  padding: 0.65rem 0.5rem;
}

/* Landing strip between features and pricing */
.ad-slot--landing {
  margin: 0 auto 0;
  max-width: 728px;
  padding: 0 1.25rem 2rem;
}

.ad-slot--landing .ad-slot-inner {
  min-height: 72px;
  max-height: 90px;
  padding: 0.65rem 1rem;
}

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

  .ad-slot--footer {
    margin: 0.75rem 0.85rem 1rem;
  }
}
