.advertentie-slot {
  width: 100%;
  max-width: var(--container-max, 1200px);
  margin: clamp(20px, 4vw, 40px) auto;
  padding: 0 var(--space-md, 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  clear: both;
}

.advertentie-slot[hidden] {
  display: none !important;
}




.advertentie-slot--wachtend {
  min-height: 1px;
  margin-block: 0;
  padding-block: 0;
}

.advertentie-label {
  display: block;
  margin: 0 0 6px;
  color: var(--text-muted, #8f8fa6);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advertentie-houder {
  position: relative;
  flex: 0 0 auto;
  max-width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
  border-radius: 4px;
}

.advertentie-houder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
}

.advertentie-kliklaag {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  cursor: pointer;
}

.advertentie-kliklaag:focus-visible {
  outline: 3px solid var(--accent-primary, #00d4aa);
  outline-offset: -3px;
}

.advertentie-slot--rapport {
  padding-inline: 0;
}

@media (max-width: 767px) {
  .advertentie-slot {
    margin-block: 20px;
    padding-inline: 10px;
  }
}

@media print {
  .advertentie-slot {
    display: none !important;
  }
}

