/* ============================================================
   DraftWise India – ads.css
   AdSense slot containers
   Ad placements: header, sidebar, between form and preview only.
   NEVER inside document content, PDF, or DOCX.
   ============================================================ */
.ad-slot {
  display: block;
  background: transparent;
  text-align: center;
  overflow: hidden;
}

/* Header ad */
.ad-slot-header {
  min-height: 90px;
  margin: 0.75rem auto;
  max-width: 728px;
}

/* Sidebar ad */
.ad-slot-sidebar {
  min-height: 250px;
  margin: 0 auto 1rem;
  max-width: 300px;
  position: sticky;
  top: 80px;
}

/* Between form and preview */
.ad-slot-content {
  min-height: 90px;
  margin: 1.5rem auto;
  max-width: 728px;
}

/* Label */
.ad-slot::before {
  content: 'Advertisement';
  display: block;
  font-size: 0.65rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

/* Disable ads in print */
@media print { .ad-slot { display: none !important; } }
