/* ===========================================================================
   ESPACIOS PUBLICITARIOS (Pauta)
   El Canal de la Gente · Ing. Leidy Rodríguez · 2026
   ---------------------------------------------------------------------------
   Diseño discreto y profesional: el banner se integra al portal sin competir
   con el contenido editorial, pero queda claramente identificado como pauta
   (etiqueta "Publicidad"), como exige la buena práctica periodística.
   =========================================================================== */

/* Contenedor de las franjas anchas (hero / entre secciones / pie) */
.ad-slot-wrap {
  padding: 26px 0;
}
.ad-wrap-footer {
  background: var(--gray);
  padding: 30px 0;
  margin-top: 30px;
}

/* Enlace del banner */
.ad-slot {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--gray);
  border: 1px solid var(--gray2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ad-slot:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ad-slot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Etiqueta obligatoria que identifica el contenido como publicidad */
.ad-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: rgba(26, 26, 26, 0.72);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  backdrop-filter: blur(3px);
}

/* --- Franja ancha (hero / entre secciones / pie) --- */
.ad-banner img {
  max-height: 200px;
}

/* --- Barra lateral --- */
.ad-sidebar {
  margin-bottom: 20px;
}
.ad-sidebar img {
  max-height: 320px;
}

/* --- Sin imagen: se muestra el texto del anunciante con la identidad ECG --- */
.ad-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 130px;
  padding: 22px 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
}
.ad-fallback-wide {
  min-height: 110px;
}
.ad-fallback strong {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}
.ad-fallback small {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .ad-slot-wrap { padding: 18px 0; }
  .ad-wrap-footer { padding: 22px 0; margin-top: 20px; }
  .ad-banner img { max-height: 140px; }
  .ad-fallback strong { font-size: 15px; }
  .ad-fallback { min-height: 100px; padding: 18px 14px; }
}
