/* ============================================================
   HotNews — ad-slots.css
   CSS ייעודי למודעות - לא נוגע בשום class קיים
   ============================================================ */

.ad-slot-wrap {
  width: 100%;
  overflow: hidden;
  text-align: center;
  max-height: 120px;
}
.ad-slot-wrap img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* popup */
.ad-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}
.ad-popup-overlay.is-visible { display: flex; }
.ad-popup-box {
  position: relative;
  max-width: 780px;
  width: 90%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-surface);
}
.ad-popup-close {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
