/* ── Régie Pub Locale — front ── */

.lpub-block { margin: 1em 0; }

/* Emplacement (avant chargement = invisible, pas de réservation d'espace gênante) */
.lpub-slot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }

/* Une annonce */
.lpub-ad {
  position: relative;
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
  transition: transform .15s ease, box-shadow .15s ease;
  max-width: 100%;
}
.lpub-ad:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, .18); }

.lpub-ad__img { display: block; max-width: 100%; height: auto; }

/* Mention « Publicité » (transparence / conformité) */
.lpub-ad__label {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 9px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, .45);
  padding: 2px 5px;
  border-radius: 3px;
  pointer-events: none;
}

/* ── Bandeau pied de page ── */
.lpub-footerbar {
  width: 100%;
  background: #f6f7f9;
  border-top: 1px solid #e3e6ea;
  padding: 16px 12px;
  box-sizing: border-box;
}
.lpub-footerbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lpub-footerbar__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6b7280;
}

/* ── Sidebar ── */
.lpub-block--sidebar .lpub-slot { flex-direction: column; }

@media (max-width: 640px) {
  .lpub-slot { gap: 10px; }
}
