/* ==========================================
  HERO SECTION LOCUTORES
========================================== */
.hero-section-locutores {
  position: relative;
  min-height: 50vh;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%),
  url('https://images.unsplash.com/photo-1590602847861-f357a9332bbc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}

.hero-section-locutores::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(30, 42, 74, 0.4) 100%);
  pointer-events: none;
}

.hero-section-locutores > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-section-locutores {
    background-attachment: scroll;
    min-height: 35vh !important;
  }
}
/* ==========================================
  MENSAJES Y ESTADOS
========================================== */
#no-results {
  animation: fadeInUp 0.5s ease-out;
}

#no-results i {
  opacity: 0.3;
  transition: all var(--transition-base);
}

#no-results:hover i {
  opacity: 0.5;
  transform: scale(1.1);
}