/* ── Barra contenedora del botón ── */
.mbqPrimeNewsBar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 0 10px;
}

/* ── Botón base ── */
.mbqPrimeNewsBtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border: 2px solid #7c3aed;
  border-radius: 30px;
  background: transparent;
  color: #7c3aed;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s, box-shadow .25s;
}

.mbqPrimeNewsBtn .fa-star {
  font-size: 12px;
  transition: transform .35s;
}

.mbqPrimeNewsBolt {
  font-size: 11px;
  opacity: 0;
  transform: scale(0);
  transition: opacity .25s, transform .25s;
}

.mbqPrimeNewsBtn:hover {
  background: rgba(124, 58, 237, .1);
  box-shadow: 0 0 12px rgba(124, 58, 237, .3);
}

/* ── Estado activo ── */
.mbqPrimeNewsBtn.is-active {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 0 18px rgba(124, 58, 237, .5);
}

.mbqPrimeNewsBtn.is-active .fa-star {
  transform: rotate(72deg) scale(1.2);
}

.mbqPrimeNewsBtn.is-active .mbqPrimeNewsBolt {
  opacity: 1;
  transform: scale(1);
}

/* ── Transición base en todas las cards ── */
#mbqIndexGrid .mbqCardWrap {
  transition: opacity .35s, filter .35s;
}

/* ── Cuando el filtro está activo:
      cards NO destacadas → difuminadas
      cards destacadas    → nítidas                ── */
#mbqIndexGrid.mbqPrimeNewsActive .mbqCardWrap[data-featured="0"] {
  opacity: .25;
  filter: blur(1.5px) grayscale(60%);
  pointer-events: none;
}

#mbqIndexGrid.mbqPrimeNewsActive .mbqCardWrap[data-featured="1"] {
  opacity: 1;
  filter: none;
}

/* ── Badge PRIME NEWS en las cards ── */
.mbqPrimeNewsBadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px 3px 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(124, 58, 237, .45);
  /* Animación sutil de brillo */
  position: relative;
  overflow: hidden;
}

.mbqPrimeNewsBadge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, .25);
  transform: skewX(-20deg);
  animation: mbqPrimeSweep 3s ease-in-out infinite;
}

@keyframes mbqPrimeSweep {
  0%   { left: -60%; }
  40%  { left: 120%; }
  100% { left: 120%; }
}

.mbqPrimeNewsBadge .fa-bolt {
  font-size: 9px;
}

/* ── Variante grande para el hero ── */
.mbqHeroBadges .mbqPrimeNewsBadge {
  padding: 5px 14px 5px 11px;
  font-size: 13px;
  letter-spacing: .12em;
  box-shadow: 0 3px 12px rgba(124, 58, 237, .55);
}

.mbqHeroBadges .mbqPrimeNewsBadge .fa-bolt {
  font-size: 12px;
}