/* =========================
   AD CARD
========================= */

.ad-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

/* Ad container matches coupon image height */
.ad-slot {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f4f6f8;
}

/* Sponsored label */
.ad-card .sponsored-label {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6b7280;
  background: rgba(255,255,255,0.9);
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 3;
}

/* Defensive radius protection for ad wrappers */
.ad-slot,
.ad-slot iframe,
.ad-slot img,
.ad-slot object,
.ad-slot embed,
.ad-slot > div {
  border-radius: 16px;
  overflow: hidden;
}