/**
 * EntreAgri - Publicités
 * Espaces publicitaires desktop et mobile
 */

/* Desktop ad spaces */
.ad-space {
  position: absolute;
  max-width: 300px;
  max-height: 600px;
  display: none;
  z-index: 100;
  top: 400px;
}

.ad-space-left {
  left: 0px;
}

.ad-space-right {
  right: 0px;
}

.ad-space.is-sticky {
  position: fixed;
  top: 100px;
}

.ad-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Régie pub personnalisée (desktop) */
.regie-pub-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
}

.regie-pub-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Mobile ads */
.ad-mobile {
  width: 100%;
  max-width: 600px;
  margin: 24px auto;
  padding: 0 16px;
  display: block;
}

.ad-mobile-link {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
}

.ad-mobile-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.ad-mobile-placeholder {
  width: 300px;
  height: 250px;
  max-width: 100%;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive: Hide mobile ads on desktop */
@media (min-width: 1280px) {
  .ad-mobile {
    display: none;
  }

  .ad-space {
    display: block;
  }
}
