.rgseo-favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: inherit;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  font-weight: 700;
  transition: .22s ease;
}

.rgseo-favorite-button:hover,
.rgseo-favorite-button.is-favorite {
  transform: translateY(-1px);
  background: rgba(255,0,76,.10);
  border-color: rgba(255,0,76,.45);
}

.rgseo-favorite-button .rgseo-fav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.rgseo-favorite-button.is-favorite .rgseo-fav-icon,
.rgseo-favorite-button.is-favorite i {
  color: #ff1744;
}

.rgseo-favorites-page-premium {
  --rgseo-fav-bg: #ffffff;
  --rgseo-fav-soft: #f7f9fc;
  --rgseo-fav-border: rgba(17,24,39,.10);
  --rgseo-fav-text: #111827;
  --rgseo-fav-muted: #6b7280;
  --rgseo-fav-accent: #ff1744;
  --rgseo-fav-blue: #8fb8ff;
  max-width: 1080px;
  margin: 28px auto;
  color: var(--rgseo-fav-text);
}

.rgseo-favorites-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,23,68,.16), transparent 35%),
    linear-gradient(135deg, #111827, #202938 55%, #121826);
  color: #fff;
  box-shadow: 0 20px 50px rgba(17,24,39,.20);
  margin-bottom: 24px;
  overflow: hidden;
}

.rgseo-favorites-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.10);
  color: var(--rgseo-fav-accent);
  font-size: 28px;
  border: 1px solid rgba(255,255,255,.14);
}

.rgseo-favorites-hero span {
  display: inline-block;
  color: rgba(255,255,255,.68);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.rgseo-favorites-hero h2 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.08;
}

.rgseo-favorites-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

.rgseo-favorites-layout {
  display: grid;
  gap: 22px;
}

.rgseo-favorites-section {
  padding: clamp(18px, 3vw, 26px);
  border-radius: 24px;
  background: var(--rgseo-fav-bg);
  border: 1px solid var(--rgseo-fav-border);
  box-shadow: 0 14px 34px rgba(17,24,39,.08);
}

.rgseo-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}

.rgseo-section-heading i {
  color: var(--rgseo-fav-accent);
}

.rgseo-section-heading h2,
.rgseo-section-heading h3 {
  margin: 0 !important;
  color: var(--rgseo-fav-text) !important;
  font-size: 22px;
  line-height: 1.2;
}

.rgseo-favorites-list {
  display: grid;
  gap: 12px;
}

.rgseo-favorite-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, var(--rgseo-fav-soft));
  border: 1px solid var(--rgseo-fav-border);
  transition: .2s ease;
}

.rgseo-favorite-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17,24,39,.08);
}

.rgseo-fav-avatar {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  flex: 0 0 auto;
}

.rgseo-fav-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rgseo-fav-avatar-empty {
  color: var(--rgseo-fav-blue);
  background: rgba(143,184,255,.12);
}

.rgseo-fav-title {
  font-weight: 800;
  color: #9fc0ff;
  text-decoration: none !important;
  line-height: 1.35;
}

.rgseo-fav-title:hover {
  color: #6b9dff;
}

.rgseo-fav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rgseo-fav-type {
  font-size: 11px;
  color: var(--rgseo-fav-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.rgseo-fav-remove {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,23,68,.10);
  color: var(--rgseo-fav-accent);
  transition: .2s ease;
}

.rgseo-fav-remove:hover {
  background: var(--rgseo-fav-accent);
  color: #fff;
  transform: scale(1.06);
}

.rgseo-favorites-empty {
  padding: 20px;
  border-radius: 18px;
  background: rgba(143,184,255,.10);
  border: 1px dashed rgba(143,184,255,.55);
  color: var(--rgseo-fav-muted);
  margin-bottom: 18px;
}

.rgseo-recent-section {
  opacity: .96;
}

@media (max-width: 640px) {
  .rgseo-favorites-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rgseo-favorites-hero-icon {
    margin: 0 auto;
  }

  .rgseo-favorite-item {
    grid-template-columns: auto 1fr;
  }

  .rgseo-fav-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

/* RG SEO v4.7.85 - Favoritos UX premium, logos y orden manual */
.rgseo-favorites-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.rgseo-fav-reset-order {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255,23,68,.12);
  color: #ff4f70;
  font-weight: 800;
  cursor: pointer;
  transition: .22s ease;
}

.rgseo-fav-reset-order:hover {
  background: #ff1744;
  color: #fff;
  transform: translateY(-1px);
}

.rgseo-favorite-item {
  position: relative;
}

.rgseo-fav-drag-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.36);
  cursor: grab;
  width: 18px;
  margin-right: -4px;
}

.rgseo-favorite-item[draggable="true"] {
  cursor: default;
}

.rgseo-fav-dragging {
  opacity: .55;
  transform: scale(.99);
}

.rgseo-fav-drop-target {
  outline: 2px dashed rgba(33,150,243,.55);
  outline-offset: 3px;
}

.rgseo-fav-reorder-controls {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.rgseo-fav-reorder-controls button {
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: .2s ease;
  font-size: 10px;
}

.rgseo-fav-reorder-controls button:hover {
  background: rgba(33,150,243,.18);
  color: #8fc8ff;
}

.rgseo-fav-avatar {
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.rgseo-fav-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rgseo-fav-avatar-empty {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,23,68,.18), transparent 40%),
    linear-gradient(135deg, #202020, #111);
  color: rgba(255,255,255,.8);
  flex-direction: column;
  gap: 2px;
}

.rgseo-fav-avatar-empty i {
  font-size: 14px;
  color: #ff4f70;
}

.rgseo-fav-avatar-empty span {
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
  color: rgba(255,255,255,.82);
}

.rgseo-fav-type {
  border: 1px solid rgba(255,255,255,.08);
}

.rgseo-fav-type-radio {
  background: rgba(33,150,243,.14) !important;
  color: #8fc8ff !important;
}

.rgseo-fav-type-tv {
  background: rgba(255,23,68,.14) !important;
  color: #ff6f8d !important;
}

.rgseo-recent-section .rgseo-favorite-item {
  min-height: 62px;
}

.rgseo-recent-section .rgseo-fav-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.rgseo-recent-section .rgseo-fav-title {
  font-size: 14px;
}

.rgseo-recent-section .rgseo-fav-type {
  opacity: .72;
}

.rgseo-favorites-empty {
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,23,68,.10), transparent 36%),
    rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  text-align: center;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .rgseo-favorites-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .rgseo-fav-drag-handle {
    display: none;
  }

  .rgseo-fav-reorder-controls button {
    width: 30px;
    height: 30px;
  }
}

/* RG SEO v4.7.86 - Pulido premium: flechas verticales, motion, etiquetas y recientes */
.rgseo-favorite-item {
  transition: transform .34s cubic-bezier(.2,.8,.2,1), background .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease !important;
  will-change: transform;
}

.rgseo-fav-just-moved {
  animation: rgseoFavMoved .62s cubic-bezier(.2,.8,.2,1);
  border-color: rgba(255,23,68,.38) !important;
  box-shadow: 0 18px 38px rgba(255,23,68,.12), 0 10px 30px rgba(0,0,0,.24) !important;
}

@keyframes rgseoFavMoved {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-7px) scale(1.018); }
  100% { transform: translateY(0) scale(1); }
}

.rgseo-fav-reorder-controls {
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 2px !important;
}

.rgseo-fav-reorder-controls button {
  width: 34px !important;
  height: 30px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.075) !important;
  color: rgba(255,255,255,.78) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06) !important;
}

.rgseo-fav-reorder-controls button:hover,
.rgseo-fav-reorder-controls button:focus-visible {
  background: rgba(255,23,68,.16) !important;
  color: #ff5f7f !important;
  transform: translateY(-1px) scale(1.04) !important;
  outline: none !important;
}

.rgseo-fav-reorder-controls button:active {
  transform: scale(.94) !important;
}

.rgseo-fav-type {
  opacity: 1 !important;
  border-radius: 999px !important;
  padding: 5px 9px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: .09em !important;
}

.rgseo-recent-section .rgseo-fav-type {
  opacity: .92 !important;
  filter: saturate(.95) brightness(.96);
}

.rgseo-recent-section .rgseo-fav-type-radio {
  background: rgba(33,150,243,.12) !important;
  color: #8fc8ff !important;
}

.rgseo-recent-section .rgseo-fav-type-tv {
  background: rgba(255,23,68,.12) !important;
  color: #ff6f8d !important;
}

.rgseo-fav-avatar {
  background: #101010 !important;
}

.rgseo-fav-avatar img {
  object-fit: cover !important;
  transform: translateZ(0);
}

.rgseo-recent-item .rgseo-fav-avatar-empty,
.rgseo-favorite-item .rgseo-fav-avatar-empty {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,23,68,.18), transparent 42%),
    linear-gradient(135deg, #282828, #121212) !important;
}

@media (max-width: 700px) {
  .rgseo-fav-reorder-controls {
    gap: 10px !important;
    margin-left: 4px !important;
  }
  .rgseo-fav-reorder-controls button {
    width: 40px !important;
    height: 34px !important;
    font-size: 12px !important;
  }
  .rgseo-fav-actions {
    gap: 9px !important;
  }
}

/* RG SEO v4.7.87 - Controles horizontales, motion suave y logos recientes corregidos */
.rgseo-favorite-has-controls.rgseo-favorite-item {
  grid-template-columns: auto auto 1fr !important;
  grid-template-areas:
    "handle avatar title"
    "actions actions actions" !important;
  row-gap: 14px !important;
  column-gap: 16px !important;
  align-items: center !important;
}

.rgseo-favorite-has-controls .rgseo-fav-drag-handle {
  grid-area: handle !important;
  align-self: center !important;
}

.rgseo-favorite-has-controls .rgseo-fav-avatar {
  grid-area: avatar !important;
}

.rgseo-favorite-has-controls .rgseo-fav-title {
  grid-area: title !important;
}

.rgseo-favorite-has-controls .rgseo-fav-actions {
  grid-area: actions !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 16px !important;
  padding-top: 2px !important;
}

.rgseo-fav-reorder-controls {
  display: inline-flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.rgseo-fav-reorder-controls button,
.rgseo-fav-remove {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 999px !important;
}

.rgseo-fav-reorder-controls button {
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 12px !important;
}

.rgseo-fav-reorder-controls button:hover,
.rgseo-fav-reorder-controls button:focus-visible {
  background: rgba(33,150,243,.18) !important;
  color: #9fd0ff !important;
  transform: translateY(-2px) scale(1.045) !important;
}

.rgseo-fav-remove:hover,
.rgseo-fav-remove:focus-visible {
  transform: translateY(-2px) scale(1.045) !important;
}

.rgseo-fav-motion-active {
  box-shadow: 0 22px 44px rgba(255,23,68,.14), 0 12px 30px rgba(0,0,0,.32) !important;
  border-color: rgba(255,23,68,.42) !important;
}

.rgseo-fav-just-moved {
  animation: rgseoFavMovedSoft .78s cubic-bezier(.16,1,.3,1) !important;
}

@keyframes rgseoFavMovedSoft {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-4px) scale(1.012); }
  70% { transform: translateY(2px) scale(1.004); }
  100% { transform: translateY(0) scale(1); }
}

.rgseo-recent-section .rgseo-fav-type {
  opacity: 1 !important;
  filter: saturate(1.08) brightness(1.02) !important;
}

.rgseo-recent-section .rgseo-fav-type-radio,
.rgseo-recent-section .rgseo-fav-type-tv {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06) !important;
}

@media (max-width: 700px) {
  .rgseo-favorite-has-controls.rgseo-favorite-item {
    grid-template-columns: auto 1fr !important;
    grid-template-areas:
      "avatar title"
      "actions actions" !important;
    row-gap: 18px !important;
    padding: 22px !important;
  }

  .rgseo-favorite-has-controls .rgseo-fav-drag-handle {
    display: none !important;
  }

  .rgseo-favorite-has-controls .rgseo-fav-actions {
    justify-content: flex-end !important;
    gap: 18px !important;
    padding-top: 0 !important;
  }

  .rgseo-fav-reorder-controls {
    gap: 14px !important;
  }

  .rgseo-fav-reorder-controls button,
  .rgseo-fav-remove {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 13px !important;
  }
}

/* RG SEO v4.7.88 - FLIP motion más elegante y controles horizontales pulidos */
.rgseo-favorite-has-controls.rgseo-favorite-item {
  transform-origin: center center !important;
  backface-visibility: hidden !important;
  will-change: transform, opacity, box-shadow, border-color !important;
}

.rgseo-fav-list-is-moving .rgseo-favorite-item:not(.rgseo-fav-motion-active) {
  transition: transform .48s cubic-bezier(.16,1,.3,1), opacity .38s ease, background .25s ease, border-color .25s ease !important;
}

.rgseo-fav-motion-active {
  z-index: 4 !important;
  position: relative !important;
  border-color: rgba(255,23,68,.50) !important;
  box-shadow:
    0 22px 48px rgba(255,23,68,.16),
    0 14px 34px rgba(0,0,0,.34) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.045)) !important;
}

.rgseo-favorite-has-controls .rgseo-fav-actions {
  justify-content: flex-end !important;
  gap: 18px !important;
}

.rgseo-fav-reorder-controls {
  gap: 18px !important;
}

.rgseo-fav-reorder-controls button,
.rgseo-fav-remove {
  transition:
    transform .22s cubic-bezier(.2,.8,.2,1),
    background .22s ease,
    color .22s ease,
    box-shadow .22s ease !important;
}

.rgseo-fav-reorder-controls button:active,
.rgseo-fav-remove:active {
  transform: translateY(0) scale(.92) !important;
}

.rgseo-fav-reorder-controls button:hover,
.rgseo-fav-reorder-controls button:focus-visible {
  box-shadow: 0 10px 22px rgba(33,150,243,.12) !important;
}

.rgseo-recent-section .rgseo-fav-avatar,
.rgseo-recent-item .rgseo-fav-avatar {
  background: #101010 !important;
}

.rgseo-recent-section .rgseo-fav-avatar img,
.rgseo-recent-item .rgseo-fav-avatar img {
  object-fit: cover !important;
}

@media (max-width: 700px) {
  .rgseo-favorite-has-controls .rgseo-fav-actions {
    justify-content: flex-end !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .rgseo-fav-reorder-controls {
    gap: 18px !important;
  }

  .rgseo-fav-reorder-controls button,
  .rgseo-fav-remove {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }
}

/* RG SEO v4.7.89 - Continuar escuchando, pin, tendencias locales y motion premium */
.rgseo-continue-section {
  margin: 0 0 22px !important;
}

.rgseo-continue-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,23,68,.18), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.rgseo-continue-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.rgseo-continue-copy span {
  color: #ff6f8d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rgseo-continue-copy a {
  color: #fff !important;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none !important;
  line-height: 1.25;
}

.rgseo-continue-copy small {
  color: rgba(255,255,255,.58);
  font-weight: 700;
}

.rgseo-continue-action {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff !important;
  background: #ff1744;
  box-shadow: 0 14px 28px rgba(255,23,68,.22);
  text-decoration: none !important;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}

.rgseo-continue-action:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 34px rgba(255,23,68,.30);
}

.rgseo-fav-pin {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.75) !important;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), background .22s ease, color .22s ease, box-shadow .22s ease !important;
}

.rgseo-fav-pin:hover,
.rgseo-fav-pin:focus-visible {
  background: rgba(255,193,7,.16) !important;
  color: #ffd166 !important;
  transform: translateY(-2px) scale(1.045) !important;
  outline: none !important;
}

.rgseo-fav-pin[aria-pressed="true"],
.rgseo-fav-pinned .rgseo-fav-pin {
  background: rgba(255,193,7,.18) !important;
  color: #ffd166 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 22px rgba(255,193,7,.10) !important;
}

.rgseo-fav-pinned {
  border-color: rgba(255,193,7,.22) !important;
}

.rgseo-fav-pinned::after {
  content: "FIJADO";
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255,193,7,.14);
  color: #ffd166;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  pointer-events: none;
}

.rgseo-trends-section {
  margin-bottom: 22px !important;
}

.rgseo-trends-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.rgseo-trend-chip {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  color: #fff !important;
  text-decoration: none !important;
  transition: transform .24s cubic-bezier(.2,.8,.2,1), background .22s ease, border-color .22s ease;
}

.rgseo-trend-chip:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,23,68,.22);
}

.rgseo-trend-chip > span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,23,68,.14);
  color: #ff6f8d;
  font-size: 12px;
  font-weight: 900;
}

.rgseo-trend-chip .rgseo-fav-avatar {
  width: 34px !important;
  height: 34px !important;
  border-radius: 12px !important;
}

.rgseo-trend-chip b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.rgseo-fav-motion-active {
  transform-origin: center !important;
}

.rgseo-fav-just-moved {
  animation: rgseoFavMovedPremium 1.05s cubic-bezier(.18,.9,.18,1) !important;
}

@keyframes rgseoFavMovedPremium {
  0% { filter: brightness(1); }
  18% { filter: brightness(1.16); }
  48% { filter: brightness(1.08); }
  100% { filter: brightness(1); }
}

@media (max-width: 700px) {
  .rgseo-continue-card {
    grid-template-columns: auto 1fr;
  }
  .rgseo-continue-action {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
  }
  .rgseo-trends-list {
    grid-template-columns: 1fr;
  }
  .rgseo-fav-pin,
  .rgseo-fav-reorder-controls button,
  .rgseo-fav-remove {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }
}

/* RG SEO v4.7.91 - Sistema premium de logos y tendencias opcionales */
.rgseo-fav-avatar {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  border-radius: 18px !important;
  padding: 4px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.10), transparent 38%),
    linear-gradient(145deg, #2d2d2d, #101010) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 10px 22px rgba(0,0,0,.28) !important;
}

.rgseo-fav-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 14px !important;
  display: block !important;
  background: rgba(255,255,255,.96) !important;
  padding: 2px !important;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04) !important;
}

.rgseo-favorite-item:hover .rgseo-fav-avatar,
.rgseo-recent-item:hover .rgseo-fav-avatar,
.rgseo-continue-card:hover .rgseo-fav-avatar {
  transform: translateY(-1px) scale(1.025) !important;
  border-color: rgba(255,23,68,.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 28px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,23,68,.06) !important;
}

.rgseo-fav-avatar-empty {
  padding: 0 !important;
  background:
    radial-gradient(circle at 25% 16%, rgba(255,23,68,.18), transparent 42%),
    linear-gradient(145deg, #2b2b2b, #111) !important;
}

.rgseo-fav-avatar-empty.rgseo-fav-avatar-tv {
  background:
    radial-gradient(circle at 25% 16%, rgba(255,23,68,.20), transparent 42%),
    linear-gradient(145deg, #2b1b22, #111) !important;
}

.rgseo-fav-avatar-empty.rgseo-fav-avatar-radio {
  background:
    radial-gradient(circle at 25% 16%, rgba(33,150,243,.18), transparent 42%),
    linear-gradient(145deg, #1c2630, #111) !important;
}

.rgseo-fav-avatar-empty i {
  font-size: 15px !important;
}

.rgseo-fav-avatar-empty span {
  font-size: 10px !important;
  letter-spacing: .08em !important;
}

.rgseo-recent-section .rgseo-fav-avatar,
.rgseo-recent-item .rgseo-fav-avatar {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  border-radius: 17px !important;
}

.rgseo-recent-section .rgseo-fav-avatar img,
.rgseo-recent-item .rgseo-fav-avatar img {
  border-radius: 13px !important;
}

.rgseo-continue-card .rgseo-fav-avatar {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  border-radius: 20px !important;
}

.rgseo-trend-chip .rgseo-fav-avatar {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 14px !important;
  padding: 3px !important;
}

.rgseo-trend-chip .rgseo-fav-avatar img {
  border-radius: 11px !important;
}

@media (max-width: 700px) {
  .rgseo-fav-avatar {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    border-radius: 20px !important;
  }

  .rgseo-fav-avatar img {
    border-radius: 16px !important;
  }

  .rgseo-recent-section .rgseo-fav-avatar,
  .rgseo-recent-item .rgseo-fav-avatar {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
  }

  .rgseo-continue-card .rgseo-fav-avatar {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
  }
}


/* ==========================================================
   RG SEO v1.3.2 - Sidebar Premium rediseño raíz Opción 3
   Diseño único para radiosdeguate.com: grafito + naranja + cyan.
   Sin paleta EmisorasGT, sin magenta/violeta y sin capas heredadas.
   ========================================================== */
.rgseo-premium-sidebar,
.rgseo-premium-sidebar *{
  box-sizing:border-box!important;
}
.rgseo-premium-sidebar{
  --rg-side-bg:#111318;
  --rg-side-panel:#171b22;
  --rg-side-card:#20262f;
  --rg-side-card-2:#181d25;
  --rg-side-line:rgba(245,245,247,.09);
  --rg-side-line-strong:rgba(255,106,0,.26);
  --rg-side-text:#F5F5F7;
  --rg-side-muted:#b8c1cc;
  --rg-side-orange:#FF6A00;
  --rg-side-orange-2:#ff8a3d;
  --rg-side-cyan:#00BBD4;
  --rg-side-cyan-2:#5bd9e8;
  --rg-side-radius:24px;
  --rg-logo-w:92px;
  --rg-logo-h:68px;
  --rg-logo-gap:14px;
  --rg-arrow-w:36px;
  --rg-arrow-h:50px;
  width:100%;
  max-width:390px;
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:14px;
  color:var(--rg-side-text);
  border-radius:var(--rg-side-radius);
  background:
    radial-gradient(circle at 100% 0%,rgba(255,106,0,.10),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(0,187,212,.06),transparent 34%),
    linear-gradient(180deg,rgba(23,27,34,.99),rgba(14,17,22,.995));
  border:1px solid rgba(245,245,247,.08);
  box-shadow:0 18px 38px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.03);
  overflow:hidden;
}
.rgseo-premium-sidebar-head{
  display:flex;
  align-items:center;
  gap:11px;
  padding:2px 2px 4px;
}
.rgseo-premium-sidebar-head span{
  width:40px;
  height:40px;
  min-width:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#45d4ec;
  background:linear-gradient(180deg,rgba(35,41,50,.98),rgba(23,28,36,.99));
  border:1px solid rgba(96,221,235,.22);
  box-shadow:0 10px 18px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.06),0 0 0 1px rgba(255,255,255,.02);
}
.rgseo-premium-sidebar-head h3{
  margin:0!important;
  color:var(--rg-side-text)!important;
  font-size:20px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.025em;
  text-shadow:none!important;
}
.rgseo-premium-sidebar-nav{display:none!important;}
.rgseo-premium-sidebar-block{width:100%;min-width:0;}
.rgseo-premium-sidebar-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 10px;
  padding:8px 11px;
  border-radius:999px;
  color:#eef4fb;
  font-size:12px;
  font-weight:900;
  letter-spacing:.02em;
  background:linear-gradient(180deg,rgba(40,46,56,.96),rgba(25,30,38,.98));
  border:1px solid rgba(245,245,247,.11);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}
.rgseo-sidebar-empty-mini{
  width:100%;
  padding:15px 14px;
  border-radius:18px;
  color:var(--rg-side-muted);
  font-size:14px;
  line-height:1.35;
  background:linear-gradient(180deg,rgba(32,38,47,.96),rgba(22,26,33,.98));
  border:1px solid rgba(245,245,247,.08);
}

/* Botón Guardar: acción naranja, sin estilo heredado */
.rgseo-premium-sidebar-save{overflow:visible;}
.rgseo-sidebar-save-btn{
  position:relative;
  width:100%;
  min-height:82px;
  display:flex;
  align-items:center;
  gap:13px;
  padding:14px;
  border-radius:22px;
  border:1px solid rgba(245,245,247,.09);
  background:linear-gradient(180deg,rgba(32,38,47,.98),rgba(22,26,33,.99));
  color:#fff;
  cursor:pointer;
  text-align:left;
  box-shadow:0 10px 22px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.035);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease;
}
.rgseo-sidebar-save-btn:hover,
.rgseo-sidebar-save-btn:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(245,245,247,.14);
  background:linear-gradient(180deg,rgba(38,44,53,.99),rgba(25,29,36,.99));
  box-shadow:0 14px 26px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.04);
  outline:none;
}
.rgseo-sidebar-save-btn.is-favorite{
  border-color:rgba(96,221,235,.22);
  background:linear-gradient(180deg,rgba(32,38,47,.98),rgba(22,26,33,.99));
}
.rgseo-sidebar-save-btn:before{content:"";position:absolute;left:0;top:12px;bottom:12px;width:3px;border-radius:999px;background:linear-gradient(180deg,rgba(96,221,235,.96),rgba(53,170,202,.82));opacity:.92;}
.rgseo-sidebar-save-btn:after{content:"";position:absolute;inset:0;border-radius:22px;pointer-events:none;box-shadow:inset 1px 0 0 rgba(96,221,235,.08),inset -1px 0 0 rgba(255,190,102,.08);}
.rgseo-sidebar-save-btn.is-favorite:before{background:linear-gradient(180deg,rgba(96,221,235,.98),rgba(59,202,228,.82));}
.rgseo-sidebar-save-icon,
.rgseo-sidebar-save-icon.rgseo-fav-icon{
  width:56px!important;
  height:56px!important;
  min-width:56px!important;
  max-width:56px!important;
  border-radius:18px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  overflow:visible!important;
  color:#ffc676!important;
  background:linear-gradient(180deg,rgba(46,52,62,.98),rgba(29,34,42,.99))!important;
  border:1px solid rgba(255,190,102,.26)!important;
  box-shadow:0 9px 16px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.05)!important;
  font-size:22px;
}
.rgseo-sidebar-save-btn.is-favorite .rgseo-sidebar-save-icon,
.rgseo-sidebar-save-btn.is-favorite .rgseo-sidebar-save-icon.rgseo-fav-icon{
  color:#79e9f7!important;
  background:linear-gradient(180deg,rgba(43,52,64,.98),rgba(26,32,40,.99))!important;
  border-color:rgba(96,221,235,.26)!important;
}
.rgseo-sidebar-save-icon i,
.rgseo-sidebar-save-icon.rgseo-fav-icon i{
  color:inherit!important;
  font-size:22px!important;
  line-height:1!important;
  margin:0!important;
}
.rgseo-sidebar-save-copy{min-width:0;display:flex;flex-direction:column;gap:4px;}
.rgseo-sidebar-save-copy b{color:#fff;font-size:16px;line-height:1.1;font-weight:900;}
.rgseo-sidebar-save-copy small{color:var(--rg-side-muted);font-size:13px;line-height:1.25;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:230px;}
.rgseo-sidebar-save-arrow-v180{
  margin-left:auto;
  width:34px;
  height:34px;
  min-width:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  color:#fff;
  background:linear-gradient(180deg,rgba(28,33,41,.98),rgba(19,24,31,.99));
  border:1px solid rgba(255,190,102,.26);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

/* Carruseles del sidebar: favoritos TV y tendencias */
.rgseo-premium-sidebar .rgseo-tv-fav-carousel,
.rgseo-premium-sidebar .rgseo-sidebar-trends-as-fav{
  width:100%;
  min-height:188px;
  padding:17px 13px;
  border-radius:22px;
  color:#fff;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,106,0,.10),transparent 36%),
    radial-gradient(circle at 0% 100%,rgba(0,187,212,.06),transparent 36%),
    linear-gradient(180deg,rgba(32,38,47,.98),rgba(22,26,33,.99));
  border:1px solid rgba(245,245,247,.085);
  box-shadow:0 10px 22px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.035);
  overflow:hidden;
  position:relative;
  max-width:none;
  margin:0;
}
.rgseo-premium-sidebar .rgseo-premium-sidebar-trends{padding:0;background:transparent;border:0;box-shadow:none;}
.rgseo-premium-sidebar .rgseo-premium-sidebar-trends > .rgseo-premium-sidebar-label{display:none;}
.rgseo-tv-fav-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:0 0 14px;
}
.rgseo-tv-fav-title-wrap{display:flex;align-items:center;gap:10px;min-width:0;}
.rgseo-tv-fav-heart{
  width:40px;
  height:40px;
  min-width:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  color:#e9eef6;
  background:linear-gradient(180deg,rgba(52,59,70,.98),rgba(34,39,48,.99));
  border:1px solid rgba(245,245,247,.12);
  box-shadow:0 8px 14px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.05);
  font-size:16px;
}
.rgseo-tv-fav-head h3{
  margin:0!important;
  color:#fff!important;
  font-size:19px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.02em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-shadow:none!important;
}
.rgseo-tv-fav-head p{margin:4px 0 0!important;color:var(--rg-side-muted);font-size:12px;line-height:1.25;}
.rgseo-tv-fav-count{
  min-width:38px;
  height:38px;
  padding:0 11px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none!important;
  color:#ffc676!important;
  font-size:15px;
  font-weight:900;
  background:linear-gradient(180deg,rgba(28,33,41,.98),rgba(19,24,31,.99));
  border:1px solid rgba(255,190,102,.26);
}
.rgseo-tv-fav-body{
  display:grid;
  grid-template-columns:var(--rg-arrow-w) minmax(0,1fr) var(--rg-arrow-w);
  align-items:center;
  gap:10px;
  width:100%;
}
.rgseo-tv-fav-track{
  display:flex;
  align-items:center;
  gap:var(--rg-logo-gap);
  min-width:0;
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding:6px 1px 10px;
}
.rgseo-tv-fav-track::-webkit-scrollbar{display:none!important;}
.rgseo-tv-fav-arrow,
.rgseo-premium-sidebar [data-tv-fav-prev],
.rgseo-premium-sidebar [data-tv-fav-next],
.rgseo-premium-sidebar [data-sidebar-trends-prev],
.rgseo-premium-sidebar [data-sidebar-trends-next]{
  width:var(--rg-arrow-w)!important;
  height:var(--rg-arrow-h)!important;
  min-width:var(--rg-arrow-w)!important;
  max-width:var(--rg-arrow-w)!important;
  border-radius:15px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  color:#fff!important;
  background:linear-gradient(180deg,rgba(28,33,41,.98),rgba(19,24,31,.99))!important;
  border:1px solid rgba(96,221,235,.20)!important;
  box-shadow:0 7px 13px rgba(0,0,0,.20),inset 0 1px 0 rgba(255,255,255,.05)!important;
  cursor:pointer;
  transition:transform .22s ease,border-color .22s ease,background .22s ease;
}
.rgseo-tv-fav-arrow:hover,
.rgseo-tv-fav-arrow:focus-visible{
  transform:translateY(-1px) scale(1.035)!important;
  border-color:rgba(96,221,235,.34)!important;
  outline:none!important;
}
.rgseo-tv-fav-arrow i{font-size:16px!important;}
.rgseo-tv-fav-empty{
  width:100%;
  min-height:102px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  text-align:center;
  color:var(--rg-side-muted);
  padding:12px;
}
.rgseo-tv-fav-empty span{
  width:42px;height:42px;border-radius:14px;display:flex;align-items:center;justify-content:center;
  color:#bbd6ea;background:linear-gradient(180deg,rgba(52,59,70,.98),rgba(34,39,48,.99));border:1px solid rgba(148,184,214,.20);
}
.rgseo-tv-fav-empty b{color:#fff;font-size:14px;}
.rgseo-tv-fav-empty small{color:var(--rg-side-muted);font-size:12px;}

/* Logos: nuevo lenguaje visual RG, rectángulo redondeado, no círculo EmisorasGT */
.rgseo-premium-sidebar .rgseo-tv-fav-logo,
.rgseo-premium-sidebar .rgseo-sidebar-trend-logo-item{
  width:var(--rg-logo-w)!important;
  height:var(--rg-logo-h)!important;
  min-width:var(--rg-logo-w)!important;
  max-width:var(--rg-logo-w)!important;
  flex:0 0 var(--rg-logo-w)!important;
  aspect-ratio:auto!important;
  border-radius:18px!important;
  padding:5px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  text-decoration:none!important;
  background:linear-gradient(180deg,rgba(245,245,247,.95),rgba(228,232,238,.92))!important;
  border:1px solid rgba(255,255,255,.72)!important;
  box-shadow:0 9px 18px rgba(0,0,0,.26),0 0 0 1px rgba(255,255,255,.06)!important;
  scroll-snap-align:start;
  transition:transform .24s ease,box-shadow .24s ease,filter .24s ease;
}
.rgseo-premium-sidebar .rgseo-tv-fav-logo img,
.rgseo-premium-sidebar .rgseo-sidebar-trend-logo-item img{
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center center!important;
  display:block!important;
  border:0!important;
  outline:0!important;
  box-shadow:none!important;
  background:transparent!important;
  border-radius:14px!important;
  padding:0!important;
  margin:0!important;
  filter:none!important;
  transform:none!important;
}
.rgseo-premium-sidebar .rgseo-tv-fav-logo:hover,
.rgseo-premium-sidebar .rgseo-tv-fav-logo:focus,
.rgseo-premium-sidebar .rgseo-sidebar-trend-logo-item:hover,
.rgseo-premium-sidebar .rgseo-sidebar-trend-logo-item:focus{
  transform:translateY(-3px)!important;
  box-shadow:0 12px 22px rgba(0,0,0,.30),0 0 0 2px rgba(96,221,235,.16)!important;
  outline:none!important;
}

/* Continuar: tarjeta limpia y coherente */
.rgseo-premium-sidebar .rgseo-continue-card{
  width:100%;
  display:grid;
  grid-template-columns:70px minmax(0,1fr) 46px;
  align-items:center;
  gap:13px;
  padding:16px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(32,38,47,.98),rgba(22,26,33,.99));
  border:1px solid rgba(245,245,247,.085);
  box-shadow:0 10px 22px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.035);
}
.rgseo-premium-sidebar .rgseo-continue-card .rgseo-fav-avatar{
  width:70px!important;
  height:70px!important;
  min-width:70px!important;
  max-width:70px!important;
  flex:0 0 70px!important;
  padding:4px!important;
  border-radius:18px!important;
  overflow:hidden!important;
  background:linear-gradient(180deg,rgba(245,245,247,.95),rgba(228,232,238,.92))!important;
  border:1px solid rgba(255,255,255,.72)!important;
  box-shadow:0 9px 18px rgba(0,0,0,.26)!important;
}
.rgseo-premium-sidebar .rgseo-continue-card .rgseo-fav-avatar img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center center!important;
  padding:0!important;
  margin:0!important;
  border-radius:14px!important;
  background:transparent!important;
  box-shadow:none!important;
  filter:none!important;
  transform:none!important;
}
.rgseo-premium-sidebar .rgseo-continue-copy{min-width:0;}
.rgseo-premium-sidebar .rgseo-continue-copy span{
  display:block;
  color:var(--rg-side-orange-2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
  margin-bottom:6px;
}
.rgseo-premium-sidebar .rgseo-continue-copy a{
  display:block;
  color:#fff!important;
  text-decoration:none!important;
  font-weight:900;
  line-height:1.14;
  font-size:17px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.rgseo-premium-sidebar .rgseo-continue-copy small{
  display:block;
  color:var(--rg-side-muted);
  font-weight:700;
  margin-top:6px;
  font-size:12px;
}
.rgseo-premium-sidebar .rgseo-continue-action{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--rg-side-orange),var(--rg-side-orange-2));
  color:#fff!important;
  text-decoration:none!important;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 8px 14px rgba(0,0,0,.22);
  font-size:18px;
}


/* Tablet y móvil horizontal: 4 logos visibles con la misma identidad RG */
.rgseo-premium-sidebar.rgseo-sidebar-four-visible{
  --rg-logo-w:72px;
  --rg-logo-h:54px;
  --rg-logo-gap:10px;
  --rg-arrow-w:42px;
  --rg-arrow-h:50px;
}
.rgseo-premium-sidebar.rgseo-sidebar-four-visible .rgseo-tv-fav-body{
  grid-template-columns:var(--rg-arrow-w) minmax(0,318px) var(--rg-arrow-w)!important;
  justify-content:center!important;
  gap:10px!important;
}
.rgseo-premium-sidebar.rgseo-sidebar-four-visible .rgseo-tv-fav-track{
  width:318px!important;
  max-width:318px!important;
  min-width:318px!important;
  display:grid!important;
  grid-template-columns:repeat(4,72px)!important;
  grid-auto-flow:column!important;
  gap:10px!important;
  justify-content:center!important;
  justify-items:center!important;
  align-items:center!important;
  overflow:visible!important;
  padding:7px 0 10px!important;
  scroll-snap-type:none!important;
}
.rgseo-premium-sidebar.rgseo-sidebar-four-visible .rgseo-tv-fav-track > .rgseo-tv-fav-logo,
.rgseo-premium-sidebar.rgseo-sidebar-four-visible .rgseo-tv-fav-track > .rgseo-sidebar-trend-logo-item{
  width:72px!important;
  height:54px!important;
  min-width:72px!important;
  max-width:72px!important;
  flex:0 0 72px!important;
  border-radius:16px!important;
}
.rgseo-premium-sidebar.rgseo-sidebar-four-visible .rgseo-tv-fav-track > .rgseo-tv-fav-logo:nth-child(n+5),
.rgseo-premium-sidebar.rgseo-sidebar-four-visible .rgseo-tv-fav-track > .rgseo-sidebar-trend-logo-item:nth-child(n+5){display:none!important;}
@media (orientation:portrait) and (max-width:760px){
  .rgseo-premium-sidebar.rgseo-sidebar-four-visible .rgseo-tv-fav-track{
    width:auto!important;
    max-width:100%!important;
    min-width:0!important;
    display:flex!important;
    overflow-x:auto!important;
    scroll-snap-type:x mandatory!important;
  }
}

@media(max-width:768px){
  .rgseo-premium-sidebar{
    max-width:100%;
    padding:12px;
    border-radius:22px;
    gap:13px;
    --rg-logo-w:88px;
    --rg-logo-h:66px;
    --rg-logo-gap:12px;
    --rg-arrow-w:34px;
    --rg-arrow-h:48px;
  }
  .rgseo-sidebar-save-copy small{max-width:190px;}
  .rgseo-premium-sidebar .rgseo-tv-fav-carousel,
  .rgseo-premium-sidebar .rgseo-sidebar-trends-as-fav{padding:16px 12px;border-radius:20px;min-height:182px;}
  .rgseo-premium-sidebar .rgseo-continue-card{grid-template-columns:64px minmax(0,1fr) 42px;padding:14px;}
  .rgseo-premium-sidebar .rgseo-continue-card .rgseo-fav-avatar{width:64px!important;height:64px!important;min-width:64px!important;max-width:64px!important;}
  .rgseo-premium-sidebar .rgseo-continue-action{width:42px;height:42px;min-width:42px;border-radius:15px;}
}
@media(max-width:380px){
  .rgseo-premium-sidebar{--rg-logo-w:82px;--rg-logo-h:62px;--rg-logo-gap:10px;--rg-arrow-w:32px;--rg-arrow-h:46px;}
  .rgseo-sidebar-save-copy small{max-width:150px;}
}
@media(prefers-reduced-motion:reduce){
  .rgseo-premium-sidebar *,
  .rgseo-tv-fav-track{transition:none!important;animation:none!important;}
}

/* RG SEO v1.3.4 - Retention Hub raíz: Opción 3 limpia y estándar */
.rgseo-retention-hub,
.rgseo-retention-hub *{box-sizing:border-box;}
.rgseo-retention-hub{
  width:min(1680px,calc(100vw - 8px))!important;
  max-width:none!important;
  margin:32px 0 36px 50%!important;
  transform:translateX(-50%)!important;
  display:grid!important;
  gap:24px!important;
  padding:0!important;
  font-family:inherit!important;
  color:#F5F5F7!important;
  --rg-bg:#111318;
  --rg-panel:#171b22;
  --rg-card:#242a33;
  --rg-card-2:#1b2028;
  --rg-border:rgba(255,255,255,.085);
  --rg-orange:#FF6A00;
  --rg-orange-soft:#ff8a3d;
  --rg-cyan:#00BBD4;
  --rg-cyan-soft:#60ddeb;
  --rg-white:#F5F5F7;
  --rg-muted:#bbc4d0;
}
.rgseo-retention-panel{
  position:relative!important;
  overflow:hidden!important;
  width:100%!important;
  border-radius:28px!important;
  padding:28px!important;
  isolation:isolate!important;
  background:linear-gradient(180deg,rgba(24,28,35,.985),rgba(15,18,24,.99))!important;
  border:1px solid var(--rg-border)!important;
  box-shadow:0 16px 34px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.035)!important;
}
.rgseo-retention-panel:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  pointer-events:none!important;
  border-radius:inherit!important;
  z-index:-1!important;
  background:radial-gradient(circle at 100% 0%,rgba(255,106,0,.10),transparent 34%),radial-gradient(circle at 0% 100%,rgba(0,187,212,.07),transparent 34%)!important;
  opacity:1!important;
}
.rgseo-retention-panel-continue{border-color:rgba(0,187,212,.18)!important;}
.rgseo-retention-panel-favorites{border-color:rgba(255,106,0,.18)!important;}
.rgseo-retention-head{
  display:flex!important;
  align-items:center!important;
  gap:18px!important;
  margin-bottom:20px!important;
}
.rgseo-retention-title-wrap{min-width:0!important;flex:1!important;}
.rgseo-retention-title-line{display:flex!important;align-items:center!important;gap:14px!important;flex-wrap:wrap!important;}
.rgseo-retention-icon{
  position:relative!important;
  isolation:isolate!important;
  overflow:hidden!important;
  width:72px!important;
  min-width:72px!important;
  height:72px!important;
  border-radius:22px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-size:30px!important;
  color:#6fe7f2!important;
  background:linear-gradient(180deg,#111820,#090d12)!important;
  border:1px solid rgba(121,139,160,.26)!important;
  box-shadow:-10px 0 18px rgba(255,106,0,.10),10px 0 18px rgba(0,187,212,.12),0 14px 24px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.06),inset 0 0 0 1px rgba(255,255,255,.03)!important;
}
.rgseo-retention-icon:before{
  content:""!important;
  position:absolute!important;
  inset:4px!important;
  border-radius:18px!important;
  background:linear-gradient(180deg,rgba(12,18,25,.98),rgba(6,10,14,.99))!important;
  box-shadow:inset 1px 0 0 rgba(255,137,61,.55),inset -1px 0 0 rgba(96,221,235,.62),inset 0 0 0 1px rgba(255,255,255,.03)!important;
  z-index:0!important;
}
.rgseo-retention-icon:after{
  content:""!important;
  position:absolute!important;
  inset:11px!important;
  border-radius:14px!important;
  background:linear-gradient(180deg,rgba(0,187,212,.14),rgba(255,106,0,.03))!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03),inset 0 -16px 18px rgba(0,0,0,.26)!important;
  z-index:0!important;
}
.rgseo-retention-icon i,
.rgseo-retention-icon svg{position:relative!important;z-index:2!important;color:inherit!important;filter:none!important;text-shadow:0 0 14px rgba(0,187,212,.24)!important;}
.rgseo-retention-icon-clock{color:#6fe7f2!important;}
.rgseo-retention-icon-heart{color:#ffd9b6!important;}
.rgseo-retention-icon-heart:after{background:linear-gradient(180deg,rgba(255,106,0,.16),rgba(0,187,212,.03))!important;}
.rgseo-retention-icon-heart i,
.rgseo-retention-icon-heart svg{ text-shadow:0 0 14px rgba(255,106,0,.22)!important; }
.rgseo-retention-head h2{
  margin:0!important;
  color:var(--rg-white)!important;
  font-size:clamp(28px,3.1vw,42px)!important;
  line-height:1.08!important;
  font-weight:900!important;
  letter-spacing:-.045em!important;
  text-shadow:none!important;
}
.rgseo-retention-head p{
  margin:7px 0 0!important;
  color:var(--rg-muted)!important;
  font-size:clamp(15px,1.3vw,18px)!important;
  line-height:1.45!important;
}
.rgseo-retention-badge,
.rgseo-retention-type{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:7px!important;
  min-height:30px!important;
  padding:7px 12px!important;
  border-radius:999px!important;
  color:#fff!important;
  font-size:13px!important;
  font-weight:900!important;
  line-height:1!important;
  letter-spacing:.01em!important;
  white-space:nowrap!important;
  background:linear-gradient(135deg,rgba(42,45,52,.94),rgba(27,31,39,.98))!important;
  border:1px solid rgba(255,255,255,.10)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-retention-type-tv,
.rgseo-retention-card-favorite .rgseo-retention-type-tv{
  color:#ccf8ff!important;
  background:linear-gradient(135deg,rgba(0,187,212,.16),rgba(24,35,38,.95))!important;
  border-color:rgba(0,187,212,.24)!important;
}
.rgseo-retention-type-radio,
.rgseo-retention-card-favorite .rgseo-retention-type-radio{
  color:#ffd4ba!important;
  background:linear-gradient(135deg,rgba(255,106,0,.18),rgba(36,29,24,.96))!important;
  border-color:rgba(255,106,0,.24)!important;
}
.rgseo-retention-type i,.rgseo-retention-type .fas{color:currentColor!important;background:transparent!important;box-shadow:none!important;}
.rgseo-retention-view-all,
.rgseo-retention-mini-btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  text-decoration:none!important;
  color:#fff!important;
  font-weight:900!important;
  border:1px solid rgba(255,106,0,.24)!important;
  background:linear-gradient(135deg,rgba(255,106,0,.20),rgba(36,29,24,.96))!important;
  box-shadow:0 8px 18px rgba(0,0,0,.18)!important;
  transition:transform .22s ease,border-color .22s ease,background .22s ease!important;
}
.rgseo-retention-view-all{margin-left:auto!important;min-height:52px!important;padding:0 26px!important;border-radius:16px!important;font-size:16px!important;}
.rgseo-retention-mini-btn{min-height:38px!important;min-width:112px!important;max-width:128px!important;padding:0 12px!important;border-radius:14px!important;font-size:12px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;}
.rgseo-retention-view-all:hover,
.rgseo-retention-mini-btn:hover{transform:translateY(-2px)!important;border-color:rgba(255,106,0,.38)!important;background:linear-gradient(135deg,rgba(255,106,0,.26),rgba(42,34,28,.98))!important;}
.rgseo-retention-grid{display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:clamp(12px,1.15vw,18px)!important;}
.rgseo-retention-card{
  position:relative!important;
  overflow:hidden!important;
  border-radius:20px!important;
  background:linear-gradient(180deg,rgba(37,42,51,.98),rgba(24,28,35,.99))!important;
  border:1px solid rgba(255,255,255,.09)!important;
  box-shadow:0 10px 22px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.035)!important;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease!important;
}
.rgseo-retention-card:before{content:""!important;position:absolute!important;inset:0!important;pointer-events:none!important;background:linear-gradient(180deg,rgba(255,255,255,.03),transparent 34%)!important;}
.rgseo-retention-card:after{content:""!important;position:absolute!important;left:0!important;right:0!important;bottom:0!important;height:2px!important;background:linear-gradient(90deg,transparent,rgba(255,106,0,.52),transparent)!important;opacity:0!important;transition:opacity .22s ease!important;}
.rgseo-retention-card-continue:after{background:linear-gradient(90deg,transparent,rgba(0,187,212,.50),transparent)!important;}
.rgseo-retention-card:hover{transform:translateY(-4px)!important;background:linear-gradient(180deg,rgba(43,49,58,.99),rgba(26,30,38,.99))!important;border-color:rgba(255,106,0,.24)!important;box-shadow:0 16px 28px rgba(0,0,0,.28)!important;}
.rgseo-retention-card-continue:hover{border-color:rgba(0,187,212,.24)!important;}
.rgseo-retention-card:hover:after{opacity:1!important;}
.rgseo-retention-card-continue,.rgseo-retention-card-favorite{padding:clamp(10px,1vw,14px)!important;min-height:100%!important;}
.rgseo-retention-logo,
.rgseo-retention-card-continue .rgseo-retention-logo,
.rgseo-retention-card-favorite .rgseo-retention-logo{
  width:100%!important;
  height:166px!important;
  aspect-ratio:auto!important;
  border-radius:20px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  padding:0!important;
  margin:0!important;
  clip-path:inset(0 round 20px)!important;
}
.rgseo-retention-logo img{
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
  padding:0!important;
  margin:0!important;
  display:block!important;
  border-radius:20px!important;
  background:transparent!important;
  clip-path:inset(0 round 20px)!important;
  filter:none!important;
  transform:none!important;
}
.rgseo-retention-logo-empty{gap:9px!important;flex-direction:column!important;color:#fff!important;background:linear-gradient(180deg,rgba(37,42,51,.98),rgba(24,28,35,.99))!important;border:1px solid rgba(255,255,255,.08)!important;}
.rgseo-retention-logo-empty i{font-size:28px!important;color:var(--rg-orange)!important;}
.rgseo-retention-logo-empty b{font-size:20px!important;letter-spacing:.04em!important;}
.rgseo-retention-logo-link,.rgseo-retention-fav-link{display:block!important;width:100%!important;border-radius:20px!important;overflow:hidden!important;text-decoration:none!important;padding:0!important;margin:0!important;line-height:0!important;}
.rgseo-retention-card-body{padding-top:14px!important;text-align:center!important;}
.rgseo-retention-card-title{color:var(--rg-white)!important;text-decoration:none!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;text-align:center!important;text-wrap:balance!important;font-weight:900!important;line-height:1.18!important;font-size:clamp(13px,.95vw,16px)!important;min-height:38px!important;}
.rgseo-retention-card-sub{margin-top:6px!important;color:var(--rg-muted)!important;text-align:center!important;font-size:clamp(12px,.82vw,13px)!important;}
.rgseo-retention-card-row{display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;margin-top:11px!important;}
.rgseo-retention-card-favorite .rgseo-retention-type{align-self:center!important;margin:2px auto 0!important;}
@media(max-width:1180px){.rgseo-retention-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}}
@media(min-width:721px) and (max-width:1180px){.rgseo-retention-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:10px!important}.rgseo-retention-card-sub{display:none!important}.rgseo-retention-card-row{display:block!important}.rgseo-retention-mini-btn{width:100%!important;max-width:none!important;margin-top:8px!important}}
@media(max-width:720px){
  .rgseo-retention-hub{width:calc(100vw - 8px)!important;margin:22px 0 26px 50%!important;gap:18px!important;}
  .rgseo-retention-panel{padding:18px!important;border-radius:22px!important;}
  .rgseo-retention-head{gap:12px!important;align-items:flex-start!important;}
  .rgseo-retention-icon{width:58px!important;min-width:58px!important;height:58px!important;border-radius:18px!important;font-size:24px!important;}
  .rgseo-retention-title-line{gap:9px!important;}
  .rgseo-retention-head h2{font-size:28px!important;}
  .rgseo-retention-head p{font-size:14px!important;}
  .rgseo-retention-badge,.rgseo-retention-type{font-size:12px!important;padding:6px 10px!important;min-height:28px!important;}
  .rgseo-retention-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;}
  .rgseo-retention-head-favorites{display:grid!important;grid-template-columns:48px 1fr!important;}
  .rgseo-retention-view-all{grid-column:1/-1!important;margin-left:0!important;width:100%!important;min-height:48px!important;}
  .rgseo-retention-card{border-radius:16px!important;}
  .rgseo-retention-card-continue,.rgseo-retention-card-favorite{padding:10px!important;}
  .rgseo-retention-logo{height:106px!important;}
  .rgseo-retention-card-title{font-size:14px!important;min-height:34px!important;}
  .rgseo-retention-card-sub{display:none!important;}
  .rgseo-retention-card-row{display:block!important;}
  .rgseo-retention-mini-btn{margin-top:9px!important;width:100%!important;max-width:none!important;}
}

/* Mis Favoritos / Últimos vistos: mismo estándar de imagen, sin avatar circular */
.rgseo-favorites-page-premium .rgseo-fav-avatar,
.rgseo-favorites-home .rgseo-fav-avatar,
.rgseo-favorite-item .rgseo-fav-avatar,
.rgseo-recent-item .rgseo-fav-avatar{
  width:90px!important;
  height:60px!important;
  min-width:90px!important;
  max-width:90px!important;
  flex:0 0 90px!important;
  aspect-ratio:var(--rgseo-global-thumb-ratio)!important;
  border-radius:var(--rgseo-global-thumb-radius)!important;
  clip-path:inset(0 round var(--rgseo-global-thumb-radius))!important;
  overflow:hidden!important;
  padding:0!important;
  margin:0!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  line-height:0!important;
}
.rgseo-favorites-page-premium .rgseo-fav-avatar img,
.rgseo-favorites-home .rgseo-fav-avatar img,
.rgseo-favorite-item .rgseo-fav-avatar img,
.rgseo-recent-item .rgseo-fav-avatar img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center center!important;
  display:block!important;
  padding:0!important;
  margin:0!important;
  background:transparent!important;
  border:0!important;
  outline:0!important;
  box-shadow:none!important;
  filter:none!important;
  transform:none!important;
  border-radius:var(--rgseo-global-thumb-radius)!important;
  clip-path:inset(0 round var(--rgseo-global-thumb-radius))!important;
}

@media(max-width:768px){
  .rgseo-favorites-page-premium .rgseo-fav-avatar,
  .rgseo-favorites-home .rgseo-fav-avatar,
  .rgseo-favorite-item .rgseo-fav-avatar,
  .rgseo-recent-item .rgseo-fav-avatar{
    width:86px!important;
    height:58px!important;
    min-width:86px!important;
    max-width:86px!important;
  }
}

@media(max-width:420px){
  .rgseo-favorites-page-premium .rgseo-fav-avatar,
  .rgseo-favorites-home .rgseo-fav-avatar,
  .rgseo-favorite-item .rgseo-fav-avatar,
  .rgseo-recent-item .rgseo-fav-avatar{
    width:82px!important;
    height:55px!important;
    min-width:82px!important;
    max-width:82px!important;
  }
}


/* ==========================================================
   RG SEO v4.7.154 - Retention Hub: asegurar 5 tarjetas en escritorio
   y conservar 6 en móvil sin romper el estándar global de imágenes.
   ========================================================== */
@media (min-width:721px){
  .rgseo-retention-hub .rgseo-retention-grid,
  .rgseo-retention-hub-v154 .rgseo-retention-grid{
    grid-template-columns:repeat(5,minmax(0,1fr))!important;
    gap:clamp(12px,1.15vw,18px)!important;
  }
  .rgseo-retention-hub .rgseo-retention-card-continue,
  .rgseo-retention-hub .rgseo-retention-card-favorite,
  .rgseo-retention-hub-v154 .rgseo-retention-card-continue,
  .rgseo-retention-hub-v154 .rgseo-retention-card-favorite{
    padding:clamp(10px,1vw,14px)!important;
  }
  .rgseo-retention-hub .rgseo-retention-card-title,
  .rgseo-retention-hub-v154 .rgseo-retention-card-title{
    font-size:clamp(13px,.95vw,16px)!important;
  }
  .rgseo-retention-hub .rgseo-retention-card-sub,
  .rgseo-retention-hub-v154 .rgseo-retention-card-sub{
    font-size:clamp(12px,.82vw,13px)!important;
  }
  .rgseo-retention-hub .rgseo-retention-mini-btn,
  .rgseo-retention-hub-v154 .rgseo-retention-mini-btn{
    min-width:102px!important;
    max-width:124px!important;
    padding:0 10px!important;
    font-size:clamp(11px,.78vw,12px)!important;
  }
}
@media (min-width:721px) and (max-width:1180px){
  .rgseo-retention-hub .rgseo-retention-grid,
  .rgseo-retention-hub-v154 .rgseo-retention-grid{
    grid-template-columns:repeat(5,minmax(0,1fr))!important;
    gap:10px!important;
  }
  .rgseo-retention-hub .rgseo-retention-card-sub,
  .rgseo-retention-hub-v154 .rgseo-retention-card-sub{
    display:none!important;
  }
  .rgseo-retention-hub .rgseo-retention-card-row,
  .rgseo-retention-hub-v154 .rgseo-retention-card-row{
    display:block!important;
  }
  .rgseo-retention-hub .rgseo-retention-mini-btn,
  .rgseo-retention-hub-v154 .rgseo-retention-mini-btn{
    width:100%!important;
    max-width:none!important;
    margin-top:8px!important;
  }
}

/* RG SEO v4.7.160 - Home Premium: favoritos + vistos recientemente para portada */
.rgseo-home-premium,
.rgseo-home-premium *{box-sizing:border-box;}
.rgseo-home-premium{
  width:min(1680px,calc(100vw - 8px));
  max-width:min(1680px,calc(100vw - 8px));
  margin:26px 0 30px 50%;
  transform:translateX(-50%);
  padding:clamp(18px,2.2vw,32px);
  border-radius:24px;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(135deg,rgba(18,32,60,.95),rgba(35,15,40,.92))!important;
  box-shadow:0 22px 55px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.045);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.rgseo-home-premium:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 0%,rgba(0,130,255,.16),transparent 34%),
    radial-gradient(circle at 90% 6%,rgba(255,0,140,.13),transparent 32%);
  z-index:0;
}
.rgseo-home-premium > *{position:relative;z-index:1;}
.rgseo-home-premium-head{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}
.rgseo-home-premium-icon{
  width:56px;
  min-width:56px;
  height:56px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(0,136,255,.20),rgba(255,0,140,.18));
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:22px;
  box-shadow:0 14px 30px rgba(0,0,0,.28),0 0 24px rgba(70,130,255,.14);
}
.rgseo-home-premium-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
  padding:6px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.82);
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.rgseo-home-premium-head h2{
  margin:0!important;
  color:#fff!important;
  font-size:clamp(28px,3vw,44px)!important;
  line-height:1.04!important;
  font-weight:950!important;
  letter-spacing:-.035em;
}
.rgseo-home-premium-head p{
  margin:7px 0 0!important;
  color:rgba(255,255,255,.72)!important;
  font-size:15px!important;
  line-height:1.45!important;
}
.rgseo-home-premium-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.rgseo-home-premium-panel,
.rgseo-home-premium-empty{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg,rgba(7,16,28,.72),rgba(8,14,24,.88));
  box-shadow:0 16px 35px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.035);
  padding:clamp(14px,1.6vw,22px);
  overflow:hidden;
}
.rgseo-home-premium-panel-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}
.rgseo-home-premium-panel-head h3{
  margin:0!important;
  color:#fff!important;
  font-size:22px!important;
  font-weight:950!important;
  line-height:1.12!important;
  display:flex;
  align-items:center;
  gap:10px;
}
.rgseo-home-premium-panel-head h3 i{color:#ff70a6;}
.rgseo-home-premium-panel-head p{
  margin:6px 0 0!important;
  color:rgba(255,255,255,.66)!important;
  font-size:14px!important;
  line-height:1.35!important;
}
.rgseo-home-premium-link{
  min-height:40px;
  padding:10px 14px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  flex:0 0 auto;
  color:#fff!important;
  text-decoration:none!important;
  font-size:13px;
  font-weight:900;
  background:linear-gradient(135deg,rgba(255,45,125,.28),rgba(90,90,255,.24));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 12px 24px rgba(0,0,0,.20);
}
.rgseo-home-premium-link:hover{transform:translateY(-1px);filter:brightness(1.08);}
.rgseo-home-premium-cards{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}
.rgseo-home-premium-card{
  min-width:0;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(14,24,38,.94),rgba(9,16,27,.98));
  padding:10px;
  box-shadow:0 14px 28px rgba(0,0,0,.23), inset 0 1px 0 rgba(255,255,255,.035);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.rgseo-home-premium-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 18px 38px rgba(0,0,0,.34),0 0 20px rgba(255,0,120,.08);
}
.rgseo-home-premium-thumb,
.rgseo-home-premium-placeholder{
  width:100%;
  aspect-ratio:3/2;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:20px;
  clip-path:inset(0 round 20px);
  background:transparent;
  text-decoration:none!important;
}
.rgseo-home-premium-thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:20px;
}
.rgseo-home-premium-placeholder{
  flex-direction:column;
  gap:8px;
  background:linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}
.rgseo-home-premium-placeholder i{font-size:24px;color:#ff70a6;}
.rgseo-home-premium-placeholder b{font-size:18px;letter-spacing:.04em;}
.rgseo-home-premium-title{
  display:block;
  margin-top:11px;
  color:#fff!important;
  text-decoration:none!important;
  font-size:14px;
  font-weight:900;
  line-height:1.18;
  text-align:center;
  text-wrap:balance;
}
.rgseo-home-premium-title:hover{color:#fff!important;text-decoration:none!important;}
.rgseo-home-premium-meta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}
.rgseo-home-premium-meta small{
  color:rgba(255,255,255,.58);
  font-size:11px;
  font-weight:800;
}
.rgseo-home-premium-type{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
  line-height:1;
  border:1px solid rgba(255,255,255,.12);
}
.rgseo-home-premium-type-tv{
  color:#ff7da9;
  background:rgba(255,45,120,.14);
  border-color:rgba(255,90,150,.26);
}
.rgseo-home-premium-type-radio{
  color:#d9b6ff;
  background:rgba(132,72,255,.16);
  border-color:rgba(170,120,255,.28);
}
.rgseo-home-premium-empty{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
}
.rgseo-home-premium-empty-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  color:#ff70a6;
  font-size:22px;
}
.rgseo-home-premium-empty h3{margin:0!important;color:#fff!important;font-size:22px!important;font-weight:950!important;}
.rgseo-home-premium-empty p{margin:5px 0 0!important;color:rgba(255,255,255,.70)!important;font-size:14px!important;}
.rgseo-home-premium-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end;}
.rgseo-home-premium-actions a{
  min-height:42px;
  padding:11px 14px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff!important;
  text-decoration:none!important;
  font-size:13px;
  font-weight:900;
  background:linear-gradient(135deg,rgba(255,45,125,.28),rgba(90,90,255,.24));
  border:1px solid rgba(255,255,255,.12);
}
@media (max-width:1180px){
  .rgseo-home-premium-cards{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width:720px){
  .rgseo-home-premium{
    width:100vw;
    max-width:100vw;
    margin-left:50%;
    transform:translateX(-50%);
    border-radius:0;
    border-left:0;
    border-right:0;
    padding:18px 8px;
  }
  .rgseo-home-premium-head{align-items:flex-start;gap:12px;margin-bottom:16px;}
  .rgseo-home-premium-icon{width:48px;min-width:48px;height:48px;border-radius:16px;font-size:20px;}
  .rgseo-home-premium-head h2{font-size:30px!important;}
  .rgseo-home-premium-grid{gap:16px;}
  .rgseo-home-premium-panel{padding:14px;border-radius:20px;}
  .rgseo-home-premium-panel-head{display:grid;grid-template-columns:1fr;gap:10px;}
  .rgseo-home-premium-link{width:100%;min-height:46px;}
  .rgseo-home-premium-cards{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
  .rgseo-home-premium-card{padding:9px;border-radius:18px;}
  .rgseo-home-premium-thumb,
  .rgseo-home-premium-placeholder,
  .rgseo-home-premium-thumb img{border-radius:18px;}
  .rgseo-home-premium-thumb,.rgseo-home-premium-placeholder{clip-path:inset(0 round 18px);}
  .rgseo-home-premium-title{font-size:14px;}
  .rgseo-home-premium-empty{grid-template-columns:1fr;text-align:center;justify-items:center;border-radius:20px;padding:18px 14px;}
  .rgseo-home-premium-actions{width:100%;justify-content:center;}
  .rgseo-home-premium-actions a{width:100%;}
}

/* =========================================================
   RG SEO Home Premium - Explora rápido
   ========================================================= */
.rgseo-home-explore{
  margin-top:18px;
  padding:18px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(7,16,28,.72),rgba(8,14,24,.90));
  border:1px solid rgba(255,255,255,.065);
  box-shadow:0 16px 35px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.035);
}
.rgseo-home-explore-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:14px;
}
.rgseo-home-explore-head h3{
  margin:4px 0 0!important;
  color:#fff!important;
  font-size:24px!important;
  line-height:1.08!important;
  font-weight:950!important;
  letter-spacing:-.03em!important;
}
.rgseo-home-explore-head p{
  margin:6px 0 0!important;
  color:rgba(255,255,255,.70)!important;
  font-size:14px!important;
  line-height:1.45!important;
}
.rgseo-home-explore-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.rgseo-home-explore-card{
  position:relative;
  min-height:84px;
  display:flex!important;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(14,24,38,.94),rgba(9,16,27,.98));
  border:1px solid rgba(255,255,255,.095);
  color:#fff!important;
  text-decoration:none!important;
  box-shadow:0 14px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.035);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,filter .22s ease,background .22s ease;
  cursor:pointer;
  overflow:hidden;
}
.rgseo-home-explore-card:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at 12% 0%,rgba(255,0,120,.075),transparent 34%),radial-gradient(circle at 100% 0%,rgba(73,126,255,.085),transparent 38%);
  opacity:.78;
  pointer-events:none;
}
.rgseo-home-explore-card:after{content:none!important;display:none!important;}
.rgseo-home-explore-card:hover{
  transform:translateY(-4px);
  border-color:rgba(90,160,255,.26);
  box-shadow:0 18px 38px rgba(0,0,0,.34),0 0 20px rgba(255,0,120,.08),0 0 0 1px rgba(255,255,255,.03) inset;
  color:#fff!important;
  text-decoration:none!important;
  filter:brightness(1.05);
  background:linear-gradient(135deg,rgba(16,27,43,.98),rgba(10,18,30,.99));
}
.rgseo-home-explore-card:hover:after{content:none!important;display:none!important;}
.rgseo-home-explore-card:active{
  transform:translateY(-1px) scale(.995);
}
.rgseo-home-explore-card:focus-visible{
  outline:none;
  border-color:rgba(112,177,255,.34);
  box-shadow:0 0 0 3px rgba(75,130,255,.16),0 18px 38px rgba(0,0,0,.34);
}
.rgseo-home-explore-icon{
  width:42px;
  min-width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  background:linear-gradient(135deg,rgba(255,51,122,.20),rgba(73,126,255,.18));
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 8px 16px rgba(0,0,0,.18);
  position:relative;
  z-index:1;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,filter .22s ease;
}
.rgseo-home-explore-card:hover .rgseo-home-explore-icon{
  transform:scale(1.06);
  border-color:rgba(130,185,255,.22);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 12px 20px rgba(0,0,0,.24),0 0 14px rgba(106,76,255,.10);
  filter:brightness(1.08);
}
.rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow){
  display:block;
  font-size:15px;
  line-height:1.18;
  font-weight:900;
  letter-spacing:-.01em;
  text-wrap:balance;
  position:relative;
  z-index:1;
}

.rgseo-home-explore-arrow{
  margin-left:auto;
  width:34px;
  min-width:34px;
  height:34px;
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(13,21,34,.78);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.84);
  font-size:13px;
  line-height:1;
  box-shadow:0 8px 16px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform .22s ease,color .22s ease,border-color .22s ease,background .22s ease,box-shadow .22s ease;
  position:relative;
  z-index:1;
}
.rgseo-home-explore-card:hover .rgseo-home-explore-arrow{
  transform:translateX(3px);
  color:#9dc5ff;
  border-color:rgba(112,177,255,.24);
  background:rgba(17,28,44,.94);
  box-shadow:0 10px 20px rgba(0,0,0,.28),0 0 14px rgba(95,140,255,.12), inset 0 1px 0 rgba(255,255,255,.06);
}
.rgseo-home-popular-card:hover .rgseo-home-explore-arrow{
  color:#ffd0b2;
  border-color:rgba(255,170,110,.28);
  box-shadow:0 10px 20px rgba(0,0,0,.28),0 0 14px rgba(255,140,70,.14), inset 0 1px 0 rgba(255,255,255,.06);
}
.rgseo-home-department-card:hover .rgseo-home-explore-arrow{
  color:#c5e6ff;
  border-color:rgba(120,190,255,.26);
  box-shadow:0 10px 20px rgba(0,0,0,.28),0 0 14px rgba(110,170,255,.14), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width:1024px){
  .rgseo-home-explore-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width:760px){
  .rgseo-home-explore{padding:14px;border-radius:20px;margin-top:16px;}
  .rgseo-home-explore-head{display:block;margin-bottom:12px;}
  .rgseo-home-explore-head h3{font-size:22px!important;}
  .rgseo-home-explore-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:11px;}
  .rgseo-home-explore-card{min-height:78px;gap:10px;padding:12px 13px;border-radius:18px;}
  .rgseo-home-explore-card:after{content:none!important;display:none!important;}


/* RG SEO v4.7.168 - Home inteligente y departamentos */
.rgseo-home-premium[data-rgseo-dominant="tv"] .rgseo-home-premium-icon{
  color:#ff7da9;
}
.rgseo-home-premium[data-rgseo-dominant="radio"] .rgseo-home-premium-icon{
  color:#d9b6ff;
}
.rgseo-home-departments{
  background:linear-gradient(180deg,rgba(9,18,32,.76),rgba(10,13,24,.92));
}
.rgseo-home-department-card .rgseo-home-explore-icon{
  color:#aee1ff;
  background:linear-gradient(135deg,rgba(58,143,255,.18),rgba(155,75,255,.16));
}

/* RG SEO v4.7.168 - Home Premium Populares */
.rgseo-home-popular .rgseo-home-explore-icon{background:rgba(255,110,40,.14);border-color:rgba(255,150,80,.28);color:#ffc4a0;}
.rgseo-home-popular-card:hover{box-shadow:0 18px 38px rgba(0,0,0,.30),0 0 22px rgba(255,110,40,.10),0 0 0 1px rgba(255,164,96,.08) inset;}
.rgseo-home-popular-card:hover:after{color:#ffd0b2;border-color:rgba(255,170,110,.28);box-shadow:0 10px 20px rgba(0,0,0,.28),0 0 14px rgba(255,140,70,.14), inset 0 1px 0 rgba(255,255,255,.06);}
.rgseo-home-department-card:hover:after{color:#c5e6ff;border-color:rgba(120,190,255,.26);box-shadow:0 10px 20px rgba(0,0,0,.28),0 0 14px rgba(110,170,255,.14), inset 0 1px 0 rgba(255,255,255,.06);}


/* RG SEO v4.7.172 - Ajuste móvil para botones de Home Premium
   Mantiene escritorio igual y evita flechas cortadas / tarjetas demasiado pesadas en celular */
@media (max-width:760px){
  .rgseo-home-explore{
    padding:14px 12px!important;
    border-radius:22px!important;
  }

  .rgseo-home-explore-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }

  .rgseo-home-explore-card{
    min-height:74px!important;
    gap:9px!important;
    padding:10px 34px 10px 10px!important;
    border-radius:18px!important;
  }

  .rgseo-home-explore-icon{
    width:38px!important;
    min-width:38px!important;
    height:38px!important;
    border-radius:14px!important;
  }

  .rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow){
    font-size:14px!important;
    line-height:1.12!important;
    letter-spacing:-.02em!important;
    max-width:100%!important;
  }

  .rgseo-home-explore-arrow{
    position:absolute!important;
    right:8px!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    width:26px!important;
    min-width:26px!important;
    height:26px!important;
    font-size:11px!important;
    opacity:.86!important;
  }

  .rgseo-home-explore-card:hover .rgseo-home-explore-arrow{
    transform:translateY(-50%) translateX(1px)!important;
  }
}

@media (max-width:390px){
  .rgseo-home-explore{
    padding:13px 9px!important;
  }

  .rgseo-home-explore-grid{
    gap:9px!important;
  }

  .rgseo-home-explore-card{
    min-height:70px!important;
    padding:9px 31px 9px 9px!important;
    gap:8px!important;
  }

  .rgseo-home-explore-icon{
    width:34px!important;
    min-width:34px!important;
    height:34px!important;
    border-radius:13px!important;
    font-size:13px!important;
  }

  .rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow){
    font-size:13px!important;
    line-height:1.1!important;
  }

  .rgseo-home-explore-arrow{
    right:6px!important;
    width:24px!important;
    min-width:24px!important;
    height:24px!important;
    font-size:10px!important;
  }
}


/* =========================================================
   RG SEO v4.7.184 - Hub premium de radios por departamento
   Shortcode: [rgseo_radios_departamentos_hub]
   ========================================================= */
.rgseo-radios-dept-hub,
.rgseo-radios-dept-hub *{
  box-sizing:border-box!important;
}
.rgseo-radios-dept-hub{
  width:min(1680px,calc(100vw - 8px))!important;
  max-width:none!important;
  margin:30px 0 36px 50%!important;
  transform:translateX(-50%)!important;
  padding:clamp(18px,2.4vw,28px)!important;
  border-radius:30px!important;
  color:#fff!important;
  background:
    radial-gradient(circle at 8% 0%,rgba(255,45,104,.14),transparent 34%),
    radial-gradient(circle at 92% 0%,rgba(73,126,255,.13),transparent 38%),
    linear-gradient(135deg,#071018 0%,#0c1522 52%,#141a28 100%)!important;
  border:1px solid rgba(255,255,255,.07)!important;
  box-shadow:0 24px 64px rgba(0,0,0,.34),0 0 24px rgba(255,0,120,.035)!important;
  overflow:hidden!important;
}
.entry-content .rgseo-radios-dept-hub,
.post-content .rgseo-radios-dept-hub,
.site-content .rgseo-radios-dept-hub,
.wp-block-post-content .rgseo-radios-dept-hub{
  max-width:none!important;
}
.rgseo-radios-dept-hero{
  position:relative!important;
  padding:clamp(18px,2.2vw,26px)!important;
  border-radius:26px!important;
  background:linear-gradient(180deg,rgba(255,255,255,.058),rgba(255,255,255,.024))!important;
  border:1px solid rgba(255,255,255,.075)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.055)!important;
  overflow:hidden!important;
}
.rgseo-radios-dept-hero:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.045) 46%,transparent 70%)!important;
  pointer-events:none!important;
}
.rgseo-radios-dept-kicker{
  position:relative!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  padding:8px 12px!important;
  border-radius:999px!important;
  color:#ffe3f0!important;
  background:linear-gradient(135deg,rgba(255,45,104,.20),rgba(126,62,255,.14))!important;
  border:1px solid rgba(255,255,255,.095)!important;
  font-size:12px!important;
  line-height:1!important;
  font-weight:950!important;
  text-transform:uppercase!important;
  letter-spacing:.06em!important;
}
.rgseo-radios-dept-kicker.is-blue{
  color:#dff3ff!important;
  background:linear-gradient(135deg,rgba(58,143,255,.20),rgba(155,75,255,.14))!important;
}
.rgseo-radios-dept-kicker.is-pink{
  color:#ffe3f0!important;
  background:linear-gradient(135deg,rgba(255,45,104,.20),rgba(255,120,0,.12))!important;
}
.rgseo-radios-dept-hero h2{
  position:relative!important;
  margin:14px 0 0!important;
  color:#fff!important;
  font-size:clamp(2rem,4.4vw,4.4rem)!important;
  line-height:.96!important;
  font-weight:950!important;
  letter-spacing:-.055em!important;
  text-wrap:balance!important;
}
.rgseo-radios-dept-hero p{
  position:relative!important;
  max-width:880px!important;
  margin:14px 0 0!important;
  color:rgba(255,255,255,.72)!important;
  font-size:clamp(.98rem,1.3vw,1.12rem)!important;
  line-height:1.58!important;
}
.rgseo-radios-dept-badges{
  position:relative!important;
  display:flex!important;
  flex-wrap:wrap!important;
  gap:10px!important;
  margin-top:18px!important;
}
.rgseo-radios-dept-badges span{
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  padding:9px 13px!important;
  border-radius:999px!important;
  color:#fff!important;
  background:rgba(255,255,255,.06)!important;
  border:1px solid rgba(255,255,255,.085)!important;
  font-size:13px!important;
  font-weight:850!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-radios-dept-section{
  margin-top:20px!important;
  padding:18px!important;
  border-radius:26px!important;
  background:linear-gradient(180deg,rgba(7,16,28,.72),rgba(8,14,24,.90))!important;
  border:1px solid rgba(255,255,255,.065)!important;
  box-shadow:0 16px 35px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.035)!important;
}
.rgseo-radios-dept-section-head{
  margin-bottom:15px!important;
}
.rgseo-radios-dept-section-head h3{
  margin:10px 0 0!important;
  color:#fff!important;
  font-size:clamp(1.45rem,2.1vw,2rem)!important;
  line-height:1.05!important;
  font-weight:950!important;
  letter-spacing:-.035em!important;
}
.rgseo-radios-dept-section-head p{
  max-width:780px!important;
  margin:8px 0 0!important;
  color:rgba(255,255,255,.70)!important;
  font-size:14px!important;
  line-height:1.48!important;
}
.rgseo-radios-dept-grid{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:12px!important;
}
.rgseo-radios-dept-card{
  position:relative!important;
  min-height:86px!important;
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  padding:14px 15px!important;
  border-radius:20px!important;
  color:#fff!important;
  text-decoration:none!important;
  background:linear-gradient(135deg,rgba(14,24,38,.94),rgba(9,16,27,.98))!important;
  border:1px solid rgba(255,255,255,.095)!important;
  box-shadow:0 14px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.035)!important;
  overflow:hidden!important;
  cursor:pointer!important;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease,filter .22s ease!important;
}
.rgseo-radios-dept-card:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  border-radius:inherit!important;
  background:radial-gradient(circle at 12% 0%,rgba(58,143,255,.080),transparent 34%),radial-gradient(circle at 100% 0%,rgba(255,45,104,.070),transparent 38%)!important;
  opacity:.78!important;
  pointer-events:none!important;
}
.rgseo-radios-dept-card:hover,
.rgseo-radios-dept-card:focus-visible{
  transform:translateY(-4px)!important;
  border-color:rgba(90,160,255,.26)!important;
  background:linear-gradient(135deg,rgba(16,27,43,.98),rgba(10,18,30,.99))!important;
  box-shadow:0 18px 38px rgba(0,0,0,.34),0 0 20px rgba(58,143,255,.08),0 0 0 1px rgba(255,255,255,.03) inset!important;
  color:#fff!important;
  text-decoration:none!important;
  outline:none!important;
}
.rgseo-radios-dept-card-icon{
  position:relative!important;
  z-index:1!important;
  width:42px!important;
  min-width:42px!important;
  height:42px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  border-radius:15px!important;
  color:#dff3ff!important;
  background:linear-gradient(135deg,rgba(58,143,255,.20),rgba(155,75,255,.16))!important;
  border:1px solid rgba(255,255,255,.10)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 8px 16px rgba(0,0,0,.18)!important;
  transition:transform .22s ease,box-shadow .22s ease,filter .22s ease!important;
}
.rgseo-radios-dept-card:hover .rgseo-radios-dept-card-icon,
.rgseo-radios-dept-card:focus-visible .rgseo-radios-dept-card-icon{
  transform:scale(1.06)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 12px 20px rgba(0,0,0,.24),0 0 14px rgba(106,76,255,.10)!important;
  filter:brightness(1.08)!important;
}
.rgseo-radios-dept-card-copy{
  position:relative!important;
  z-index:1!important;
  display:block!important;
  min-width:0!important;
}
.rgseo-radios-dept-card-copy strong{
  display:block!important;
  color:#fff!important;
  font-size:15px!important;
  line-height:1.16!important;
  font-weight:950!important;
  letter-spacing:-.012em!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
.rgseo-radios-dept-card-copy small{
  display:block!important;
  margin-top:4px!important;
  color:rgba(255,255,255,.61)!important;
  font-size:12px!important;
  line-height:1.22!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
.rgseo-radios-dept-card-arrow{
  position:relative!important;
  z-index:1!important;
  margin-left:auto!important;
  width:32px!important;
  min-width:32px!important;
  height:32px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  border-radius:999px!important;
  color:rgba(255,255,255,.78)!important;
  background:rgba(10,20,36,.58)!important;
  border:1px solid rgba(255,255,255,.10)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
  transition:transform .22s ease,color .22s ease,border-color .22s ease,background .22s ease,box-shadow .22s ease!important;
}
.rgseo-radios-dept-card-arrow i{
  color:inherit!important;
  font-size:12px!important;
}
.rgseo-radios-dept-card:hover .rgseo-radios-dept-card-arrow,
.rgseo-radios-dept-card:focus-visible .rgseo-radios-dept-card-arrow{
  transform:translateX(2px)!important;
  color:#9dc5ff!important;
  border-color:rgba(112,177,255,.24)!important;
  background:rgba(17,28,44,.94)!important;
  box-shadow:0 10px 20px rgba(0,0,0,.28),0 0 14px rgba(95,140,255,.12), inset 0 1px 0 rgba(255,255,255,.06)!important;
}
.rgseo-radios-type-card .rgseo-radios-dept-card-icon{
  color:#ffe3f0!important;
  background:linear-gradient(135deg,rgba(255,45,104,.18),rgba(255,120,0,.12))!important;
}
.rgseo-radios-type-card:hover .rgseo-radios-dept-card-arrow,
.rgseo-radios-type-card:focus-visible .rgseo-radios-dept-card-arrow{
  color:#ffb4d2!important;
  border-color:rgba(255,92,162,.28)!important;
  box-shadow:0 10px 20px rgba(0,0,0,.28),0 0 14px rgba(255,45,104,.12), inset 0 1px 0 rgba(255,255,255,.06)!important;
}
@media (max-width:1024px){
  .rgseo-radios-dept-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}
@media (max-width:760px){
  .rgseo-radios-dept-hub{
    width:calc(100vw - 8px)!important;
    padding:14px 8px!important;
    border-radius:24px!important;
    margin:22px 0 28px 50%!important;
  }
  .rgseo-radios-dept-hero{
    padding:18px 14px!important;
    border-radius:22px!important;
  }
  .rgseo-radios-dept-hero h2{
    font-size:clamp(1.78rem,9vw,2.7rem)!important;
    letter-spacing:-.045em!important;
  }
  .rgseo-radios-dept-badges{
    gap:8px!important;
  }
  .rgseo-radios-dept-badges span{
    font-size:12px!important;
    padding:8px 10px!important;
  }
  .rgseo-radios-dept-section{
    padding:14px 10px!important;
    border-radius:22px!important;
    margin-top:16px!important;
  }
  .rgseo-radios-dept-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }
  .rgseo-radios-dept-card{
    min-height:78px!important;
    gap:9px!important;
    padding:10px!important;
    border-radius:18px!important;
  }
  .rgseo-radios-dept-card-icon{
    width:36px!important;
    min-width:36px!important;
    height:36px!important;
    border-radius:13px!important;
  }
  .rgseo-radios-dept-card-copy strong{
    font-size:13.5px!important;
  }
  .rgseo-radios-dept-card-copy small{
    font-size:11px!important;
  }
  .rgseo-radios-dept-card-arrow{
    width:27px!important;
    min-width:27px!important;
    height:27px!important;
  }
  .rgseo-radios-dept-card-arrow i{
    font-size:10px!important;
  }
}
@media (max-width:390px){
  .rgseo-radios-dept-hub{
    padding-left:6px!important;
    padding-right:6px!important;
  }
  .rgseo-radios-dept-card{
    padding:9px 8px!important;
    gap:8px!important;
  }
  .rgseo-radios-dept-card-icon{
    width:34px!important;
    min-width:34px!important;
    height:34px!important;
  }
  .rgseo-radios-dept-card-arrow{
    width:24px!important;
    min-width:24px!important;
    height:24px!important;
  }
}


/* RG SEO v4.7.186 - Hub radios: destacadas y CTA */

.rgseo-radios-dept-cta-wrap{display:flex!important;justify-content:center!important;margin-top:16px!important}
.rgseo-radios-dept-main-cta{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;min-height:46px!important;padding:0 18px!important;border-radius:999px!important;color:#fff!important;text-decoration:none!important;font-weight:950!important;background:linear-gradient(135deg,rgba(255,45,104,.22),rgba(126,62,255,.16))!important;border:1px solid rgba(255,255,255,.10)!important;box-shadow:0 12px 26px rgba(255,45,104,.12),inset 0 1px 0 rgba(255,255,255,.06)!important;transition:transform .22s ease,box-shadow .22s ease,filter .22s ease!important}
.rgseo-radios-dept-main-cta:hover{transform:translateY(-2px)!important;color:#fff!important;text-decoration:none!important;filter:brightness(1.08)!important;box-shadow:0 16px 34px rgba(255,45,104,.18),0 0 18px rgba(126,62,255,.10),inset 0 1px 0 rgba(255,255,255,.08)!important}
.rgseo-radios-featured .rgseo-radios-dept-card-icon{color:#ffe3f0!important;background:linear-gradient(135deg,rgba(255,45,104,.18),rgba(255,120,0,.12))!important}
@media(min-width:761px){.rgseo-radios-featured-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important}.rgseo-radios-featured-grid .rgseo-radios-featured-card:nth-child(n+6){display:none!important}}
@media(max-width:760px){.rgseo-radios-featured-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.rgseo-radios-featured-grid .rgseo-radios-featured-card:nth-child(n+7){display:none!important}.rgseo-radios-dept-main-cta{width:100%!important;min-height:48px!important}}


/* RG SEO v4.7.188 - Hub radios: etiqueta superior clickeable */
.rgseo-radios-dept-kicker-link{
  text-decoration:none!important;
  cursor:pointer!important;
  transition:transform .22s ease,filter .22s ease,box-shadow .22s ease!important;
}
.rgseo-radios-dept-kicker-link:hover,
.rgseo-radios-dept-kicker-link:focus-visible{
  transform:translateY(-1px)!important;
  filter:brightness(1.08)!important;
  color:#fff!important;
  text-decoration:none!important;
  box-shadow:0 10px 22px rgba(255,45,104,.12), inset 0 1px 0 rgba(255,255,255,.08)!important;
  outline:none!important;
}


/* RG SEO v4.7.189 - Hub radios: Continuar escuchando */

.rgseo-radios-continue[hidden]{display:none!important}
.rgseo-radios-continue-grid{display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:12px!important}
.rgseo-radios-continue-card{position:relative!important;min-height:154px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:flex-start!important;gap:10px!important;padding:13px!important;border-radius:20px!important;color:#fff!important;text-decoration:none!important;background:linear-gradient(135deg,rgba(14,24,38,.94),rgba(9,16,27,.98))!important;border:1px solid rgba(255,255,255,.095)!important;box-shadow:0 14px 28px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.035)!important;overflow:hidden!important;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease!important}
.rgseo-radios-continue-card:hover,.rgseo-radios-continue-card:focus-visible{transform:translateY(-4px)!important;border-color:rgba(255,92,162,.26)!important;background:linear-gradient(135deg,rgba(16,27,43,.98),rgba(10,18,30,.99))!important;box-shadow:0 18px 38px rgba(0,0,0,.34),0 0 20px rgba(255,45,104,.08),0 0 0 1px rgba(255,255,255,.03) inset!important;color:#fff!important;text-decoration:none!important;outline:none!important}
.rgseo-radios-continue-thumb{width:86px!important;height:58px!important;display:flex!important;align-items:center!important;justify-content:center!important;border-radius:18px!important;overflow:hidden!important;background:transparent!important;border:0!important;box-shadow:none!important;line-height:0!important}
.rgseo-radios-continue-thumb img{width:100%!important;height:100%!important;object-fit:contain!important;object-position:center!important;border-radius:18px!important;display:block!important}
.rgseo-radios-continue-placeholder{background:linear-gradient(135deg,rgba(255,45,104,.22),rgba(126,62,255,.16))!important;border:1px solid rgba(255,255,255,.10)!important;line-height:1!important}
.rgseo-radios-continue-placeholder b{font-size:18px!important;color:#fff!important}
.rgseo-radios-continue-copy{display:block!important;width:100%!important;text-align:center!important;min-width:0!important}
.rgseo-radios-continue-copy strong{display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;min-height:2.35em!important;color:#fff!important;font-size:14px!important;line-height:1.16!important;font-weight:950!important}
.rgseo-radios-continue-copy small{display:block!important;margin-top:5px!important;color:rgba(255,255,255,.58)!important;font-size:11.5px!important;font-weight:800!important}
.rgseo-radios-continue-card .rgseo-radios-dept-card-arrow{position:absolute!important;right:10px!important;top:10px!important;width:28px!important;min-width:28px!important;height:28px!important}
@media(max-width:1024px){.rgseo-radios-continue-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
@media(max-width:760px){.rgseo-radios-continue-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}.rgseo-radios-continue-card{min-height:142px!important;padding:11px 9px!important;border-radius:18px!important}.rgseo-radios-continue-thumb{width:82px!important;height:55px!important;border-radius:17px!important}.rgseo-radios-continue-thumb img{border-radius:17px!important}.rgseo-radios-continue-copy strong{font-size:13px!important}.rgseo-radios-continue-card .rgseo-radios-dept-card-arrow{width:25px!important;min-width:25px!important;height:25px!important;right:8px!important;top:8px!important}}



/* =========================================================
   RG SEO v4.7.192 - Ajustes móviles finales antes de producción
   1) Home Premium: móvil horizontal 2 columnas, no 3.
   2) Departamentos Home: móvil vertical 1 columna para nombres largos.
   3) Populares Home: móvil vertical y horizontal 2 columnas.
   4) Home favoritos/recientes: 6 visibles en teléfono horizontal por JS.
   5) Hub radios continuar: 6 visibles en teléfono horizontal por JS.
   ========================================================= */

/* Teléfono horizontal: botones Home siempre en 2 columnas */
@media (orientation: landscape) and (max-height:620px) and (pointer:coarse) and (max-width:980px){
  .rgseo-home-premium .rgseo-home-explore-grid,
  .rgseo-home-premium .rgseo-home-departments-grid,
  .rgseo-home-premium .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
  }

  .rgseo-home-premium .rgseo-home-explore-card{
    min-height:82px!important;
    padding:12px 38px 12px 12px!important;
  }

  .rgseo-home-premium .rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow){
    font-size:15px!important;
    line-height:1.16!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
  }

  .rgseo-home-premium .rgseo-home-explore-arrow{
    right:10px!important;
  }

  .rgseo-home-premium .rgseo-home-premium-cards{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
}

/* Teléfono vertical: departamentos en 1 columna para que nombres largos respiren */
@media (orientation: portrait) and (max-width:760px){
  .rgseo-home-premium .rgseo-home-departments-grid{
    grid-template-columns:1fr!important;
  }

  .rgseo-home-premium .rgseo-home-departments-grid .rgseo-home-explore-card{
    min-height:72px!important;
  }

  .rgseo-home-premium .rgseo-home-departments-grid .rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow){
    white-space:normal!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
  }

  /* Populares se mantiene en 2 columnas en vertical */
  .rgseo-home-premium .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

/* Hub radios: Continuar escuchando usa 3 columnas en teléfono horizontal para cerrar 6 en 2 filas */
@media (orientation: landscape) and (max-height:620px) and (pointer:coarse) and (max-width:980px){
  .rgseo-radios-dept-hub .rgseo-radios-continue-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:12px!important;
  }
}


/* =========================================================
   RG SEO v4.7.194 - Home Premium responsive real
   [rgseo_home_premium]
   Solo tablet / móvil vertical / móvil horizontal.
   Corrige Explora rápido, Departamentos y Populares a 2 columnas.
   ========================================================= */

/* Tablet y pantallas medianas táctiles: 2 columnas */
@media (min-width: 761px) and (max-width: 1180px){
  .rgseo-home-premium .rgseo-home-explore-grid,
  .rgseo-home-premium .rgseo-home-departments-grid,
  .rgseo-home-premium .rgseo-home-popular-grid,
  .rgseo-home-premium [class*="explore-grid"],
  .rgseo-home-premium [class*="department"][class*="grid"],
  .rgseo-home-premium [class*="popular"][class*="grid"]{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

/* Teléfono horizontal: 2 columnas, no 3 */
@media (orientation:landscape) and (max-height:620px) and (pointer:coarse){
  .rgseo-home-premium .rgseo-home-explore-grid,
  .rgseo-home-premium .rgseo-home-departments-grid,
  .rgseo-home-premium .rgseo-home-popular-grid,
  .rgseo-home-premium [class*="explore-grid"],
  .rgseo-home-premium [class*="department"][class*="grid"],
  .rgseo-home-premium [class*="popular"][class*="grid"]{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  .rgseo-home-premium .rgseo-home-explore-card,
  .rgseo-home-premium .rgseo-home-popular-card,
  .rgseo-home-premium a[class*="home"][class*="card"]{
    min-height:82px!important;
  }
}

/* Móvil vertical: estos tres grupos también en 2 columnas */
@media (orientation:portrait) and (max-width:760px){
  .rgseo-home-premium .rgseo-home-explore-grid,
  .rgseo-home-premium .rgseo-home-departments-grid,
  .rgseo-home-premium .rgseo-home-popular-grid,
  .rgseo-home-premium [class*="explore-grid"],
  .rgseo-home-premium [class*="department"][class*="grid"],
  .rgseo-home-premium [class*="popular"][class*="grid"]{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

/* Seguridad: textos largos en 2 columnas sin romper la tarjeta */
@media (max-width:1180px){
  .rgseo-home-premium .rgseo-home-explore-card,
  .rgseo-home-premium .rgseo-home-popular-card,
  .rgseo-home-premium a[class*="home"][class*="card"]{
    min-width:0!important;
  }

  .rgseo-home-premium .rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow),
  .rgseo-home-premium .rgseo-home-popular-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow),
  .rgseo-home-premium a[class*="home"][class*="card"] > span:not([class*="icon"]):not([class*="arrow"]){
    white-space:normal!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    line-height:1.16!important;
  }
}


/* =========================================================
   RG SEO v4.7.195 - Home Premium columnas precisas
   Solo tablet / móvil vertical / móvil horizontal.
   PC queda intacto.
   Reglas:
   - Explora rápido: tablet y móvil horizontal = 2 columnas.
   - Explora por departamento: tablet y móvil horizontal = 2 columnas; móvil vertical = 1 columna.
   - Populares en Guatemala: tablet y móvil horizontal = 2 columnas.
   ========================================================= */

/* Tablet: las tres secciones a 2 columnas */
@media (min-width:761px) and (max-width:1180px){
  .rgseo-home-premium .rgseo-home-explore-grid,
  .rgseo-home-premium .rgseo-home-departments-grid,
  .rgseo-home-premium .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

/* Móvil horizontal real: las tres secciones a 2 columnas */
@media (orientation:landscape) and (max-height:620px) and (pointer:coarse){
  .rgseo-home-premium .rgseo-home-explore-grid,
  .rgseo-home-premium .rgseo-home-departments-grid,
  .rgseo-home-premium .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

/* Móvil vertical: departamentos a 1 columna; explora rápido y populares quedan en 2 columnas */
@media (orientation:portrait) and (max-width:760px){
  .rgseo-home-premium .rgseo-home-explore-grid,
  .rgseo-home-premium .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  .rgseo-home-premium .rgseo-home-departments-grid{
    grid-template-columns:1fr!important;
  }

  .rgseo-home-premium .rgseo-home-departments-grid .rgseo-home-explore-card{
    min-height:72px!important;
  }
}

/* Seguridad para textos largos en tablet/móvil */
@media (max-width:1180px){
  .rgseo-home-premium .rgseo-home-explore-card,
  .rgseo-home-premium .rgseo-home-popular-card{
    min-width:0!important;
  }

  .rgseo-home-premium .rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow),
  .rgseo-home-premium .rgseo-home-popular-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow){
    white-space:normal!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    line-height:1.16!important;
  }
}


/* =========================================================
   RG SEO v4.7.196 - Respaldo externo Home Premium responsive
   El principal va inline dentro del shortcode para evitar caché.
   ========================================================= */
@media (min-width:761px) and (max-width:1180px){
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media (orientation:landscape) and (max-height:620px){
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
  }
}
@media (orientation:portrait) and (max-width:760px){
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid{
    grid-template-columns:1fr!important;
  }
}


/* =========================================================
   RG SEO v4.7.197 - Corrección: NO tocar PC/laptop
   Las reglas móviles del Home Premium solo aplican en táctil/móvil.
   ========================================================= */

/* PC/laptop: restaurar distribución original si alguna regla móvil anterior ganó */
@media (min-width:761px) and (pointer:fine){
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{
    grid-template-columns:repeat(auto-fit,minmax(210px,1fr))!important;
  }
}

/* Tablet táctil: 2 columnas */
@media (min-width:761px) and (max-width:1180px) and (pointer:coarse){
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

/* Móvil horizontal táctil: 2 columnas */
@media (orientation:landscape) and (max-height:620px) and (pointer:coarse){
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

/* Móvil vertical: departamentos 1 columna; explora rápido y populares 2 columnas */
@media (orientation:portrait) and (max-width:760px){
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid{
    grid-template-columns:1fr!important;
  }
}


/* =========================================================
   RG SEO v4.7.198 - Radios departamentos hub responsive
   [rgseo_radios_departamentos_hub]
   PC intacto.
   Tablet táctil + móvil horizontal: 2 columnas.
   Móvil vertical: 1 columna.
   Títulos hasta 3 líneas si es necesario.
   ========================================================= */

/* Títulos del hub: permitir hasta 3 líneas en secciones clave */
.rgseo-radios-dept-hub .rgseo-radios-continue-copy strong,
.rgseo-radios-dept-hub .rgseo-radios-dept-card-copy strong{
  white-space:normal!important;
  display:-webkit-box!important;
  -webkit-line-clamp:3!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  min-height:auto!important;
  line-height:1.16!important;
}

/* Continuar escuchando: texto con 3 líneas y tarjeta con más aire */
.rgseo-radios-dept-hub .rgseo-radios-continue-copy strong{
  min-height:3.48em!important;
}

/* Tablet táctil: 2 columnas sin tocar PC/laptop */
@media (min-width:761px) and (max-width:1180px) and (pointer:coarse){
  .rgseo-radios-dept-hub .rgseo-radios-dept-grid,
  .rgseo-radios-dept-hub .rgseo-radios-featured-grid,
  .rgseo-radios-dept-hub .rgseo-radios-type-grid,
  .rgseo-radios-dept-hub .rgseo-radios-continue-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-dept-card{
    min-height:96px!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-continue-card{
    min-height:176px!important;
  }
}

/* Móvil horizontal real: 2 columnas en todas las secciones del hub */
@media (orientation:landscape) and (max-height:620px) and (pointer:coarse){
  .rgseo-radios-dept-hub .rgseo-radios-dept-grid,
  .rgseo-radios-dept-hub .rgseo-radios-featured-grid,
  .rgseo-radios-dept-hub .rgseo-radios-type-grid,
  .rgseo-radios-dept-hub .rgseo-radios-continue-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-dept-card{
    min-height:96px!important;
    padding:12px!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-continue-card{
    min-height:170px!important;
    padding:12px!important;
  }
}

/* Móvil vertical: 1 columna en las cuatro secciones pedidas */
@media (orientation:portrait) and (max-width:760px){
  .rgseo-radios-dept-hub .rgseo-radios-dept-grid,
  .rgseo-radios-dept-hub .rgseo-radios-featured-grid,
  .rgseo-radios-dept-hub .rgseo-radios-type-grid,
  .rgseo-radios-dept-hub .rgseo-radios-continue-grid{
    grid-template-columns:1fr!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-dept-card{
    min-height:88px!important;
    padding:12px!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-continue-card{
    min-height:160px!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-dept-card-copy strong{
    font-size:14px!important;
  }
}


/* =========================================================
   RG SEO v4.7.199 - Ajuste fino Hub Radios
   [rgseo_radios_departamentos_hub]
   1) Continuar escuchando: móvil vertical = 2 tarjetas.
   2) Radios destacadas:
      - PC = 5 visibles.
      - Tablet táctil / móvil horizontal = 6 visibles, 2 columnas.
      - Móvil vertical = 5 visibles, 1 columna.
   ========================================================= */

/* PC/laptop: Radios destacadas mantiene 5 visibles y estilo normal */
@media (min-width:1181px){
  .rgseo-radios-dept-hub .rgseo-radios-featured-grid{
    grid-template-columns:repeat(5,minmax(0,1fr))!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid .rgseo-radios-featured-card{
    display:flex!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid .rgseo-radios-featured-card:nth-child(n+6){
    display:none!important;
  }
}

/* Tablet táctil: destacadas muestra 6 en 2 columnas */
@media (min-width:761px) and (max-width:1180px) and (pointer:coarse){
  .rgseo-radios-dept-hub .rgseo-radios-featured-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid .rgseo-radios-featured-card{
    display:flex!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid .rgseo-radios-featured-card:nth-child(n+7){
    display:none!important;
  }
}

/* Móvil horizontal real: destacadas muestra 6 en 2 columnas */
@media (orientation:landscape) and (max-height:620px) and (pointer:coarse){
  .rgseo-radios-dept-hub .rgseo-radios-featured-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid .rgseo-radios-featured-card{
    display:flex!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid .rgseo-radios-featured-card:nth-child(n+7){
    display:none!important;
  }
}

/* Móvil vertical:
   - Continuar escuchando = 2 tarjetas por fila.
   - Radios destacadas = 1 columna, 5 visibles.
   - Departamentos y tipos mantienen 1 columna.
*/
@media (orientation:portrait) and (max-width:760px){
  .rgseo-radios-dept-hub .rgseo-radios-continue-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid,
  .rgseo-radios-dept-hub .rgseo-radios-dept-grid,
  .rgseo-radios-dept-hub .rgseo-radios-type-grid{
    grid-template-columns:1fr!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid .rgseo-radios-featured-card{
    display:flex!important;
  }

  .rgseo-radios-dept-hub .rgseo-radios-featured-grid .rgseo-radios-featured-card:nth-child(n+6){
    display:none!important;
  }
}


/* =========================================================
   RG SEO v4.7.207 - Radio Emisoras Premium por departamento
   Shortcode: [rgseo_radio_emisoras_premium]
   ========================================================= */
.rgseo-radio-emisoras-premium,
.rgseo-radio-emisoras-premium *{
  box-sizing:border-box;
}

.rgseo-radio-emisoras-premium{
  width:min(1680px,calc(100vw - 8px));
  max-width:none;
  margin:32px 0 36px 50%;
  transform:translateX(-50%);
  padding:24px clamp(10px,1.6vw,24px);
  border-radius:24px;
  color:#fff;
  background:linear-gradient(135deg,#071018 0%,#0c1522 50%,#141a28 100%);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 18px 40px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.045);
  overflow:hidden;
  position:relative;
  isolation:isolate;
}

.rgseo-radio-emisoras-premium:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 0%,rgba(255,0,120,.10),transparent 36%),
    radial-gradient(circle at 92% 8%,rgba(77,126,255,.10),transparent 40%),
    linear-gradient(90deg,transparent,rgba(255,255,255,.025),transparent);
  opacity:.92;
}

.entry-content .rgseo-radio-emisoras-premium,
.post-content .rgseo-radio-emisoras-premium,
.site-content .rgseo-radio-emisoras-premium,
.wp-block-post-content .rgseo-radio-emisoras-premium{
  width:min(1680px,calc(100vw - 8px));
  max-width:none;
  margin-left:50%;
  transform:translateX(-50%);
}

.rgseo-radio-emisoras-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin:0 0 18px;
}

.rgseo-radio-emisoras-title-wrap{
  display:flex;
  align-items:flex-start;
  gap:13px;
  min-width:0;
}

.rgseo-radio-emisoras-icon{
  width:46px;
  height:46px;
  min-width:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,rgba(255,15,109,.28),rgba(129,140,248,.17));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 26px rgba(0,0,0,.25),0 0 18px rgba(255,15,109,.12),inset 0 1px 0 rgba(255,255,255,.10);
}

.rgseo-radio-emisoras-icon i{
  font-size:18px;
  color:#fff;
}

.rgseo-radio-emisoras-head h2{
  margin:0;
  padding:0;
  font-size:clamp(1.22rem,2.6vw,1.72rem);
  line-height:1.15;
  font-weight:950;
  letter-spacing:-.035em;
  color:#fff;
}

.rgseo-radio-emisoras-head p{
  margin:7px 0 0;
  padding:0;
  max-width:760px;
  color:rgba(255,255,255,.70);
  font-size:.98rem;
  line-height:1.45;
}

.rgseo-radio-emisoras-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  white-space:nowrap;
  color:rgba(255,255,255,.86);
  font-size:.82rem;
  font-weight:850;
  letter-spacing:.01em;
  background:linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.09);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.075);
}

.rgseo-radio-emisoras-pill i{
  color:#ff4fa3;
}

.rgseo-radio-emisoras-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  width:100%;
}

.rgseo-radio-emisora-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:248px;
  padding:13px;
  border-radius:20px;
  color:#fff!important;
  text-decoration:none!important;
  background:linear-gradient(180deg,rgba(255,255,255,.058),rgba(255,255,255,.024));
  border:1px solid rgba(255,255,255,.115);
  box-shadow:0 14px 34px rgba(0,0,0,.28),0 0 0 1px rgba(255,255,255,.025) inset,inset 0 1px 0 rgba(255,255,255,.055);
  transition:transform .26s cubic-bezier(.2,.8,.2,1),box-shadow .26s ease,border-color .26s ease,background .26s ease;
  isolation:isolate;
  overflow:hidden;
}

.rgseo-radio-emisora-card:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  background:radial-gradient(circle at 18% 0%,rgba(255,0,120,.085),transparent 42%),radial-gradient(circle at 88% 0%,rgba(66,133,255,.075),transparent 44%);
  opacity:.78;
}

.rgseo-radio-emisora-card:hover,
.rgseo-radio-emisora-card:focus-visible{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,.18);
  background:linear-gradient(180deg,rgba(255,255,255,.074),rgba(255,255,255,.03));
  box-shadow:0 18px 40px rgba(0,0,0,.35),0 0 20px rgba(255,0,120,.08),0 0 0 1px rgba(255,45,111,.10) inset;
  outline:none;
}

.rgseo-radio-emisora-thumb{
  width:100%;
  height:142px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:20px;
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  margin:0;
  clip-path:inset(0 round 20px);
}

.rgseo-radio-emisora-thumb img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
  padding:0;
  margin:0;
  border:0;
  border-radius:20px;
  background:transparent;
  box-shadow:none;
  overflow:hidden;
  clip-path:inset(0 round 20px);
  filter:drop-shadow(0 13px 24px rgba(0,0,0,.34));
  transition:transform .25s cubic-bezier(.2,.8,.2,1),filter .25s ease;
}

.rgseo-radio-emisora-card:hover .rgseo-radio-emisora-thumb img,
.rgseo-radio-emisora-card:focus-visible .rgseo-radio-emisora-thumb img{
  transform:scale(1.035);
  filter:drop-shadow(0 18px 34px rgba(0,0,0,.42));
}

.rgseo-radio-emisora-fallback{
  width:78px;
  height:78px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  color:rgba(255,255,255,.86);
  font-size:2rem;
  font-weight:950;
  background:linear-gradient(135deg,rgba(255,15,109,.22),rgba(129,140,248,.13));
  border:1px solid rgba(255,255,255,.10);
}

.rgseo-radio-emisora-name{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin:15px 2px 0;
  min-height:2.52em;
  color:#fff;
  font-size:1.02rem;
  font-weight:900;
  line-height:1.24;
  letter-spacing:-.02em;
  text-align:center;
}

.rgseo-radio-emisora-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
  padding-top:12px;
}

.rgseo-radio-emisora-type,
.rgseo-radio-emisora-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-width:0;
  border-radius:999px;
  font-size:.74rem;
  font-weight:900;
  line-height:1;
  letter-spacing:.01em;
}

.rgseo-radio-emisora-type{
  padding:7px 9px;
  color:rgba(255,255,255,.84);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.rgseo-radio-emisora-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:#ff0f6d;
  box-shadow:0 0 12px rgba(255,15,109,.55);
}

.rgseo-radio-emisora-action{
  padding:8px 10px;
  color:#fff;
  background:linear-gradient(135deg,rgba(255,15,109,.26),rgba(129,140,248,.14));
  border:1px solid rgba(255,255,255,.10);
}

@media (max-width:1180px){
  .rgseo-radio-emisoras-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media (max-width:1024px){
  .rgseo-radio-emisoras-premium{
    width:calc(100vw - 14px);
    margin:28px 0 32px 50%;
    padding:20px 12px;
    border-radius:26px;
  }

  .rgseo-radio-emisoras-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .rgseo-radio-emisoras-premium{
    width:calc(100vw - 8px);
    padding:16px 7px;
    margin:22px 0 26px 50%;
    border-radius:24px;
  }

  .rgseo-radio-emisoras-head{
    flex-direction:column;
    gap:12px;
    margin-bottom:15px;
  }

  .rgseo-radio-emisoras-title-wrap{
    gap:11px;
  }

  .rgseo-radio-emisoras-icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:15px;
  }

  .rgseo-radio-emisoras-head p{
    font-size:.92rem;
  }

  .rgseo-radio-emisoras-pill{
    white-space:normal;
  }

  .rgseo-radio-emisoras-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:11px;
  }

  .rgseo-radio-emisora-card{
    min-height:214px;
    padding:10px;
    border-radius:20px;
  }

  .rgseo-radio-emisora-thumb{
    height:112px;
    border-radius:20px;
  }

  .rgseo-radio-emisora-thumb img{
    border-radius:20px;
  }

  .rgseo-radio-emisora-name{
    margin-top:11px;
    font-size:.91rem;
  }

  .rgseo-radio-emisora-meta{
    gap:7px;
    padding-top:10px;
  }

  .rgseo-radio-emisora-type,
  .rgseo-radio-emisora-action{
    font-size:.68rem;
    padding:7px 8px;
  }
}

@media (max-width:430px){
  .rgseo-radio-emisoras-premium{
    padding:14px;
  }

  .rgseo-radio-emisoras-grid{
    gap:10px;
  }

  .rgseo-radio-emisora-card{
    min-height:204px;
    padding:9px;
  }

  .rgseo-radio-emisora-thumb{
    height:102px;
  }

  .rgseo-radio-emisora-meta{
    flex-direction:column;
    align-items:stretch;
  }

  .rgseo-radio-emisora-type,
  .rgseo-radio-emisora-action{
    width:100%;
  }
}


/* =========================================================
   RG SEO v4.7.209 - Retention Hub exclusivo para radios
   Shortcode: [rgseo_radio_retention_hub]
   ========================================================= */
.rgseo-radio-retention-hub.rgseo-retention-hub{
  width:min(1680px,calc(100vw - 8px))!important;
  max-width:none!important;
  margin:32px 0 36px 50%!important;
  transform:translateX(-50%)!important;
  padding:0!important;
}

.rgseo-radio-retention-hub .rgseo-retention-panel{
  background:
    radial-gradient(circle at 8% 0%,rgba(255,15,109,.11),transparent 34%),
    radial-gradient(circle at 92% 0%,rgba(72,105,255,.10),transparent 38%),
    linear-gradient(135deg,#071018 0%,#0c1522 52%,#141a28 100%)!important;
  border:1px solid rgba(255,255,255,.07)!important;
  box-shadow:0 20px 46px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.045)!important;
}

.rgseo-radio-retention-hub .rgseo-retention-panel:before{
  background:
    radial-gradient(circle at 10% 0%,rgba(255,15,109,.16),transparent 36%),
    radial-gradient(circle at 94% 0%,rgba(129,140,248,.12),transparent 40%),
    linear-gradient(90deg,transparent,rgba(255,255,255,.026),transparent)!important;
  opacity:.9!important;
}

.rgseo-radio-retention-hub .rgseo-retention-icon{
  border-radius:22px!important;
  background:linear-gradient(180deg,#111820,#090d12)!important;
  border:1px solid rgba(121,139,160,.26)!important;
  box-shadow:-10px 0 18px rgba(255,106,0,.10),10px 0 18px rgba(0,187,212,.12),0 14px 24px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.06),inset 0 0 0 1px rgba(255,255,255,.03)!important;
}
.rgseo-radio-retention-hub .rgseo-retention-icon:before{
  box-shadow:inset 1px 0 0 rgba(255,137,61,.55),inset -1px 0 0 rgba(96,221,235,.62),inset 0 0 0 1px rgba(255,255,255,.03)!important;
}
.rgseo-radio-retention-hub .rgseo-retention-icon-heart{color:#ffd9b6!important;}
.rgseo-radio-retention-hub .rgseo-retention-icon-heart:after{background:linear-gradient(180deg,rgba(255,106,0,.16),rgba(0,187,212,.03))!important;}
.rgseo-radio-retention-hub .rgseo-retention-icon-clock,
.rgseo-radio-retention-hub .rgseo-radio-retention-icon-listen{color:#6fe7f2!important;}
.rgseo-radio-retention-hub .rgseo-radio-retention-icon-listen:after,
.rgseo-radio-retention-hub .rgseo-retention-icon-clock:after{background:linear-gradient(180deg,rgba(0,187,212,.14),rgba(255,106,0,.03))!important;}

.rgseo-radio-retention-hub .rgseo-retention-badge,
.rgseo-radio-retention-hub .rgseo-retention-view-all,
.rgseo-radio-retention-hub .rgseo-retention-mini-btn{
  background:linear-gradient(135deg,rgba(255,15,109,.24),rgba(129,140,248,.14))!important;
  border-color:rgba(255,255,255,.10)!important;
  color:#fff!important;
}

.rgseo-radio-retention-hub .rgseo-retention-grid{
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:14px!important;
}

.rgseo-radio-retention-hub .rgseo-retention-card{
  border-radius:20px!important;
  background:linear-gradient(180deg,rgba(255,255,255,.058),rgba(255,255,255,.024))!important;
  border:1px solid rgba(255,255,255,.115)!important;
  box-shadow:0 14px 34px rgba(0,0,0,.28),0 0 0 1px rgba(255,255,255,.025) inset,inset 0 1px 0 rgba(255,255,255,.055)!important;
}

.rgseo-radio-retention-hub .rgseo-retention-card:hover{
  transform:translateY(-6px)!important;
  border-color:rgba(255,255,255,.18)!important;
  box-shadow:0 18px 40px rgba(0,0,0,.35),0 0 20px rgba(255,0,120,.08),0 0 0 1px rgba(255,45,111,.10) inset!important;
}

.rgseo-radio-retention-hub .rgseo-retention-logo,
.rgseo-radio-retention-hub .rgseo-retention-card-continue .rgseo-retention-logo,
.rgseo-radio-retention-hub .rgseo-retention-card-favorite .rgseo-retention-logo{
  width:100%!important;
  aspect-ratio:3/2!important;
  border-radius:20px!important;
  background:rgba(255,255,255,.035)!important;
  border:1px solid rgba(255,255,255,.045)!important;
  box-shadow:none!important;
  overflow:hidden!important;
  clip-path:inset(0 round 20px)!important;
}

.rgseo-radio-retention-hub .rgseo-retention-logo img{
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center center!important;
  border-radius:20px!important;
  background:transparent!important;
  box-shadow:none!important;
  clip-path:inset(0 round 20px)!important;
}

.rgseo-radio-retention-hub .rgseo-retention-card-title{
  text-align:center!important;
  text-wrap:balance!important;
}

.rgseo-radio-retention-hub .rgseo-retention-type-radio,
.rgseo-radio-retention-hub .rgseo-retention-card-favorite .rgseo-retention-type-radio{
  background:rgba(255,255,255,.06)!important;
  border-color:rgba(255,255,255,.08)!important;
  color:rgba(255,255,255,.86)!important;
}

.rgseo-radio-retention-hub .rgseo-retention-type-radio i,
.rgseo-radio-retention-hub .rgseo-retention-type-radio .fas{
  color:#ff4fa3!important;
}

@media(max-width:1180px){
  .rgseo-radio-retention-hub .rgseo-retention-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
}

@media(max-width:1024px){
  .rgseo-radio-retention-hub.rgseo-retention-hub{
    width:calc(100vw - 14px)!important;
    margin:28px 0 32px 50%!important;
  }
  .rgseo-radio-retention-hub .rgseo-retention-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}

@media(max-width:720px){
  .rgseo-radio-retention-hub.rgseo-retention-hub{
    width:calc(100vw - 8px)!important;
    margin:22px 0 26px 50%!important;
  }
  .rgseo-radio-retention-hub .rgseo-retention-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:11px!important;}
  .rgseo-radio-retention-hub .rgseo-retention-panel{padding:16px 7px!important;border-radius:24px!important;}
  .rgseo-radio-retention-hub .rgseo-retention-logo,
  .rgseo-radio-retention-hub .rgseo-retention-logo img{border-radius:18px!important;clip-path:inset(0 round 18px)!important;}
}

/* =========================================================
   RG SEO v4.7.211 - Etiquetas discretas para relacionados
   Aplica a [rgseo_ver_tambien_premium] y [rgseo_radio_emisoras_premium]
   ========================================================= */
.rgseo-related-card,
.rgseo-radio-emisora-card{
  position:relative;
}

.rgseo-related-badges{
  position:absolute;
  top:10px;
  left:10px;
  z-index:5;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
  max-width:calc(100% - 20px);
  pointer-events:none;
}

.rgseo-related-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
  min-height:24px;
  padding:6px 9px;
  border-radius:999px;
  font-size:.68rem;
  line-height:1;
  font-weight:950;
  letter-spacing:.015em;
  white-space:nowrap;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 8px 18px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.rgseo-related-badge--popular{
  background:linear-gradient(135deg,rgba(255,54,116,.92),rgba(181,28,76,.82));
  border-color:rgba(255,138,168,.34);
  color:#fff;
  text-shadow:0 1px 0 rgba(0,0,0,.22);
  box-shadow:0 10px 22px rgba(255,45,111,.22),0 0 16px rgba(255,45,111,.12),inset 0 1px 0 rgba(255,255,255,.15);
}

.rgseo-related-badge--new{
  background:linear-gradient(135deg,rgba(255,255,255,.14),rgba(255,255,255,.07));
  color:rgba(255,255,255,.94);
}

.rgseo-related-card-popular:after,
.rgseo-radio-emisora-card.rgseo-related-card-popular:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(255,15,109,.16), 0 0 20px rgba(255,15,109,.055);
}

@media(min-width:561px){
  .rgseo-ver-tambien-premium .rgseo-related-badges{
    top:148px;
    left:16px;
    right:auto;
    bottom:auto;
    max-width:calc(100% - 32px);
  }
}

@media(max-width:560px){
  .rgseo-related-badges{
    top:8px;
    left:8px;
    gap:5px;
  }
  .rgseo-related-badge{
    min-height:21px;
    padding:5px 7px;
    font-size:.62rem;
  }
}

/* RG SEO v4.7.252 clean bridge marker. */

/* RG SEO v4.7.255 favorites mobile fix marker. */

/* RG SEO v4.7.256 continue top marker. */

/* RG SEO v4.7.257 favorites text cleanup marker. */

/* RG SEO v4.7.258 favorites tags grid marker. */

/* RG SEO v4.7.259 hero theme marker. */

/* RG SEO v4.7.260 format categories marker. */

/* RG SEO v4.7.261 localStorage migration marker. */

/* RG SEO v4.7.262 strong localStorage clean marker. */

/* RG SEO v4.7.265 formato variada marker. */

/* RG SEO v4.7.266 format priority marker. */

/* RG SEO v4.7.267 localStorage hero mobile marker. */

/* RG SEO v4.7.268 tv badge logo radius marker. */

/* RG SEO v4.7.269 single image radius marker. */

/* RG SEO v4.7.270 premium logo tiles marker. */

/* RG SEO v4.7.271 pure logo marker. */

/* RG SEO v4.7.272 logo radius clip marker. */

/* RG SEO v4.7.273 clean logo css marker. */

/* RG SEO v4.7.274 image only logo marker. */

/* RG SEO v4.7.275 radio emisoras premium format marker. */

/* RG SEO v4.7.276 radio emisoras logo restore marker. */

/* RG SEO v4.7.280 - Radio Emisoras: badges de departamento/formato auto-ajustables */
.rgseo-radio-emisora-tax{
  display:flex!important;
  align-items:center!important;
  gap:clamp(5px,.45vw,8px)!important;
  flex-wrap:nowrap!important;
  width:100%!important;
  min-width:0!important;
  max-width:100%!important;
  overflow:hidden!important;
  min-height:31px!important;
}
.rgseo-radio-emisora-chip{
  min-width:0!important;
  max-width:100%!important;
  min-height:30px!important;
  padding:7px clamp(7px,.45vw,10px)!important;
  gap:clamp(4px,.35vw,7px)!important;
  font-size:clamp(.66rem,.58rem + .18vw,.74rem)!important;
  letter-spacing:-.005em!important;
  white-space:nowrap!important;
  overflow:hidden!important;
}
.rgseo-radio-emisora-chip-dept{
  flex:1 1 auto!important;
  justify-content:flex-start!important;
}
.rgseo-radio-emisora-chip-format{
  flex:0 1 auto!important;
  justify-content:center!important;
}
.rgseo-radio-emisora-chip i{
  flex:0 0 auto!important;
}
.rgseo-radio-emisora-chip-text{
  display:block!important;
  min-width:0!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}
.rgseo-radio-emisora-chip-format .rgseo-radio-emisora-chip-text{
  overflow:visible!important;
  text-overflow:clip!important;
}
@media(max-width:760px){
  .rgseo-radio-emisora-tax{gap:5px!important}
  .rgseo-radio-emisora-chip{font-size:clamp(.62rem,2.8vw,.69rem)!important;padding:7px 7px!important;gap:4px!important}
}
@media(max-width:430px){
  .rgseo-radio-emisora-tax{overflow:visible!important}
  .rgseo-radio-emisora-chip-format .rgseo-radio-emisora-chip-text{overflow:hidden!important;text-overflow:ellipsis!important}
}




/* RG SEO v4.7.281 - Radio Emisoras: badges compactos en una sola fila real */
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-tax{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  align-items:center!important;
  column-gap:6px!important;
  row-gap:0!important;
  flex-wrap:nowrap!important;
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  min-height:30px!important;
  max-height:30px!important;
  margin:2px 0 0!important;
  overflow:hidden!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  min-width:0!important;
  max-width:100%!important;
  height:30px!important;
  min-height:30px!important;
  padding:0 8px!important;
  gap:5px!important;
  border-radius:10px!important;
  font-size:clamp(.64rem,.52rem + .18vw,.72rem)!important;
  line-height:1!important;
  font-weight:850!important;
  letter-spacing:-.012em!important;
  white-space:nowrap!important;
  overflow:hidden!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-dept{
  justify-self:stretch!important;
  width:100%!important;
  flex:1 1 auto!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-format{
  justify-self:end!important;
  width:auto!important;
  max-width:98px!important;
  flex:0 0 auto!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip i{
  flex:0 0 auto!important;
  margin:0!important;
  font-size:.72rem!important;
  line-height:1!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-text{
  display:block!important;
  min-width:0!important;
  max-width:100%!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-format .rgseo-radio-emisora-chip-text{
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}
@media(max-width:760px){
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-tax{column-gap:5px!important;min-height:28px!important;max-height:28px!important}
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip{height:28px!important;min-height:28px!important;padding:0 6px!important;gap:4px!important;font-size:clamp(.61rem,2.75vw,.68rem)!important}
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-format{max-width:88px!important}
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip i{font-size:.67rem!important}
}
@media(max-width:430px){
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-tax{grid-template-columns:minmax(0,1fr) minmax(0,88px)!important;overflow:hidden!important}
}


/* RG SEO v4.7.283 - Radio Emisoras: mismos margenes laterales que Radio Retention Hub */
.entry-content .rgseo-radio-emisoras-premium,
.post-content .rgseo-radio-emisoras-premium,
.site-content .rgseo-radio-emisoras-premium,
.wp-block-post-content .rgseo-radio-emisoras-premium,
.rgseo-radio-emisoras-premium{
  width:min(1680px,calc(100vw - 8px))!important;
  max-width:none!important;
  margin:32px 0 36px 50%!important;
  transform:translateX(-50%)!important;
}
@media(max-width:1024px){
  .entry-content .rgseo-radio-emisoras-premium,
  .post-content .rgseo-radio-emisoras-premium,
  .site-content .rgseo-radio-emisoras-premium,
  .wp-block-post-content .rgseo-radio-emisoras-premium,
  .rgseo-radio-emisoras-premium{
    width:calc(100vw - 14px)!important;
    margin:28px 0 32px 50%!important;
    padding:20px 12px!important;
  }
}
@media(max-width:720px){
  .entry-content .rgseo-radio-emisoras-premium,
  .post-content .rgseo-radio-emisoras-premium,
  .site-content .rgseo-radio-emisoras-premium,
  .wp-block-post-content .rgseo-radio-emisoras-premium,
  .rgseo-radio-emisoras-premium{
    width:calc(100vw - 8px)!important;
    margin:22px 0 26px 50%!important;
    padding:16px 7px!important;
    border-radius:24px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisoras-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:11px!important;
  }
}
@media(max-width:430px){
  .entry-content .rgseo-radio-emisoras-premium,
  .post-content .rgseo-radio-emisoras-premium,
  .site-content .rgseo-radio-emisoras-premium,
  .wp-block-post-content .rgseo-radio-emisoras-premium,
  .rgseo-radio-emisoras-premium{
    padding:16px 7px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisoras-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }
}



/* RG SEO v4.7.284 - Radio Emisoras: Radio + Escuchar en una sola linea móvil vertical */
@media(max-width:430px){
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-meta{
    display:grid!important;
    grid-template-columns:minmax(52px,.72fr) minmax(74px,1fr)!important;
    align-items:center!important;
    justify-content:stretch!important;
    gap:6px!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    padding-top:8px!important;
    flex-direction:row!important;
    overflow:hidden!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-type,
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-action{
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;
    height:36px!important;
    min-height:36px!important;
    padding:0 7px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:5px!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    font-size:.66rem!important;
    line-height:1!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-action{
    flex:0 1 auto!important;
    border-radius:12px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-type{
    flex:0 1 auto!important;
    border-radius:999px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-action:before{
    margin-right:4px!important;
    font-size:.66rem!important;
    flex:0 0 auto!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-dot{
    width:6px!important;
    height:6px!important;
    min-width:6px!important;
    flex:0 0 auto!important;
  }
}
@media(max-width:360px){
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-meta{
    grid-template-columns:minmax(48px,.68fr) minmax(68px,1fr)!important;
    gap:5px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-type,
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-action{
    height:34px!important;
    min-height:34px!important;
    padding:0 6px!important;
    font-size:.62rem!important;
  }
}


/* RG SEO v4.7.285 - Radio Emisoras: región + formato legibles en móvil vertical */
@media(max-width:430px){
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-card{
    min-height:318px!important;
    padding:10px!important;
    gap:8px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-tax{
    display:grid!important;
    grid-template-columns:1fr!important;
    grid-auto-rows:28px!important;
    align-items:center!important;
    justify-content:stretch!important;
    row-gap:6px!important;
    column-gap:0!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    min-height:62px!important;
    max-height:none!important;
    margin:2px 0 0!important;
    overflow:visible!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip,
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-dept,
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-format{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    height:28px!important;
    min-height:28px!important;
    padding:0 8px!important;
    justify-self:stretch!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:5px!important;
    font-size:clamp(.60rem,2.45vw,.66rem)!important;
    line-height:1!important;
    letter-spacing:-.018em!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip i{
    flex:0 0 auto!important;
    font-size:.65rem!important;
    margin:0!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-text{
    min-width:0!important;
    max-width:100%!important;
    display:block!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-name{
    text-align:center!important;
    margin-top:8px!important;
  }
}
@media(max-width:360px){
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-card{
    padding:9px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-tax{
    grid-auto-rows:27px!important;
    min-height:59px!important;
    row-gap:5px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip,
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-dept,
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-format{
    height:27px!important;
    min-height:27px!important;
    padding:0 6px!important;
    gap:4px!important;
    font-size:.58rem!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip i{
    font-size:.60rem!important;
  }
}


/* =========================================================
   RG SEO v4.7.290 - Home Premium: diseño final más clickeable
   Objetivo: conservar ecosistema oscuro y subir intención de clic.
   ========================================================= */
.rgseo-home-premium[data-rgseo-home-premium="1"]{
  --rgseo-neon-pink:#ff2da8;
  --rgseo-neon-fuchsia:#ff3ccf;
  --rgseo-neon-blue:#1097ff;
  --rgseo-neon-cyan:#20d8ff;
  --rgseo-neon-violet:#7d4dff;
  width:min(1680px,calc(100vw - 16px))!important;
  display:flex!important;
  flex-direction:column!important;
  padding:clamp(16px,1.8vw,28px)!important;
  border-radius:clamp(20px,2vw,30px)!important;
  border:1px solid rgba(55,180,255,.18)!important;
  background:
    radial-gradient(circle at 0% 0%,rgba(0,132,255,.20),transparent 34%),
    radial-gradient(circle at 98% 5%,rgba(255,40,190,.18),transparent 33%),
    linear-gradient(135deg,rgba(5,12,28,.98),rgba(16,8,32,.96) 52%,rgba(7,16,31,.98))!important;
  box-shadow:0 24px 65px rgba(0,0,0,.40),0 0 0 1px rgba(255,255,255,.025) inset,0 0 34px rgba(23,139,255,.07)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"]:before{
  background:
    linear-gradient(90deg,rgba(18,157,255,.24),transparent 18%,transparent 78%,rgba(255,45,168,.24)),
    radial-gradient(circle at 8% 12%,rgba(21,126,255,.18),transparent 26%),
    radial-gradient(circle at 92% 20%,rgba(255,43,179,.16),transparent 30%)!important;
  opacity:.96!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular{order:10!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments{order:20!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore[data-home-explore]{order:30!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-grid{order:4!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-empty{order:40!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore{
  position:relative!important;
  margin-top:18px!important;
  padding:clamp(16px,1.7vw,26px)!important;
  border-radius:clamp(20px,1.8vw,28px)!important;
  border:1px solid rgba(48,166,255,.15)!important;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,45,168,.16),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(18,145,255,.12),transparent 36%),
    linear-gradient(180deg,rgba(6,14,31,.86),rgba(5,13,25,.96))!important;
  box-shadow:0 18px 42px rgba(0,0,0,.30),0 0 0 1px rgba(255,255,255,.025) inset!important;
  overflow:hidden!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  pointer-events:none!important;
  border-radius:inherit!important;
  background:linear-gradient(90deg,rgba(15,156,255,.25),transparent 20%,transparent 80%,rgba(255,45,170,.25))!important;
  opacity:.45!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore > *{position:relative!important;z-index:1!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular{
  border-color:rgba(255,52,188,.20)!important;
  box-shadow:0 18px 46px rgba(0,0,0,.31),0 0 28px rgba(255,45,170,.08)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments{border-color:rgba(32,216,255,.18)!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore[data-home-explore]{border-color:rgba(255,52,188,.18)!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-kicker{
  position:relative!important;
  padding:7px 13px!important;
  color:#fff!important;
  background:linear-gradient(135deg,rgba(255,45,168,.28),rgba(20,143,255,.24))!important;
  border:1px solid rgba(255,255,255,.16)!important;
  box-shadow:0 10px 24px rgba(0,0,0,.22),0 0 18px rgba(255,45,168,.16)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-head h3{
  font-size:clamp(23px,2.1vw,34px)!important;
  text-shadow:0 2px 18px rgba(0,0,0,.35)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-head h3:after{
  content:"";display:block;width:44px;height:3px;border-radius:999px;margin-top:8px;
  background:linear-gradient(90deg,var(--rgseo-neon-fuchsia),var(--rgseo-neon-cyan));
  box-shadow:0 0 14px rgba(255,45,168,.35);
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments .rgseo-home-explore-head h3:after{background:linear-gradient(90deg,var(--rgseo-neon-cyan),var(--rgseo-neon-violet));}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:clamp(10px,1vw,15px)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card{
  min-height:clamp(78px,5.5vw,94px)!important;
  padding:clamp(12px,1.15vw,17px)!important;
  border-radius:clamp(18px,1.35vw,22px)!important;
  border:1px solid rgba(93,190,255,.16)!important;
  background:
    radial-gradient(circle at 0 0,rgba(255,45,168,.15),transparent 32%),
    radial-gradient(circle at 100% 100%,rgba(20,150,255,.12),transparent 34%),
    linear-gradient(135deg,rgba(12,25,44,.94),rgba(6,15,30,.98))!important;
  box-shadow:0 14px 30px rgba(0,0,0,.30),0 0 0 1px rgba(255,255,255,.035) inset!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card:hover,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card:focus-visible{
  transform:translateY(-5px)!important;
  border-color:rgba(255,75,200,.36)!important;
  background:
    radial-gradient(circle at 0 0,rgba(255,45,168,.24),transparent 34%),
    radial-gradient(circle at 100% 100%,rgba(25,180,255,.20),transparent 34%),
    linear-gradient(135deg,rgba(15,31,54,.98),rgba(8,18,34,.99))!important;
  box-shadow:0 20px 42px rgba(0,0,0,.40),0 0 24px rgba(255,45,168,.14),0 0 18px rgba(20,150,255,.10)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-icon{
  width:clamp(42px,3vw,52px)!important;
  min-width:clamp(42px,3vw,52px)!important;
  height:clamp(42px,3vw,52px)!important;
  border-radius:clamp(14px,1.2vw,18px)!important;
  background:linear-gradient(135deg,rgba(255,45,168,.82),rgba(102,70,255,.72))!important;
  border:1px solid rgba(255,255,255,.20)!important;
  color:#fff!important;
  box-shadow:0 10px 22px rgba(0,0,0,.28),0 0 18px rgba(255,45,168,.28),inset 0 1px 0 rgba(255,255,255,.18)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-department-card .rgseo-home-explore-icon{
  background:linear-gradient(135deg,rgba(129,80,255,.82),rgba(17,155,255,.72))!important;
  box-shadow:0 10px 22px rgba(0,0,0,.28),0 0 18px rgba(20,150,255,.26),inset 0 1px 0 rgba(255,255,255,.18)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular .rgseo-home-explore-icon{background:linear-gradient(135deg,rgba(255,45,168,.88),rgba(132,75,255,.78))!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow){
  color:#fff!important;
  font-weight:950!important;
  text-shadow:0 2px 10px rgba(0,0,0,.38)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-arrow{
  width:clamp(32px,2.4vw,40px)!important;
  min-width:clamp(32px,2.4vw,40px)!important;
  height:clamp(32px,2.4vw,40px)!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.22)!important;
  background:linear-gradient(135deg,var(--rgseo-neon-pink),var(--rgseo-neon-violet))!important;
  box-shadow:0 10px 22px rgba(0,0,0,.28),0 0 18px rgba(255,45,168,.24),inset 0 1px 0 rgba(255,255,255,.18)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-department-card .rgseo-home-explore-arrow{
  background:linear-gradient(135deg,#0aa7ff,#075ce7)!important;
  box-shadow:0 10px 22px rgba(0,0,0,.28),0 0 18px rgba(20,150,255,.25),inset 0 1px 0 rgba(255,255,255,.18)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card:hover .rgseo-home-explore-arrow{transform:translateX(4px) scale(1.06)!important;filter:brightness(1.16)!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-actions a,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-link{
  background:linear-gradient(135deg,#ff23a9,#1097ff)!important;
  border-color:rgba(255,45,168,.28)!important;
  box-shadow:0 14px 30px rgba(0,0,0,.28),0 0 24px rgba(255,45,168,.18)!important;
}
@media (min-width:761px) and (max-width:1180px){
  .rgseo-home-premium[data-rgseo-home-premium="1"]{width:min(1180px,calc(100vw - 22px))!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media (max-width:760px){
  .rgseo-home-premium[data-rgseo-home-premium="1"]{width:100vw!important;max-width:100vw!important;padding:14px 9px 18px!important;border-radius:0!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore{padding:12px!important;border-radius:18px!important;margin-top:13px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-head{margin-bottom:10px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-head h3{font-size:20px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-head p{font-size:12px!important;line-height:1.28!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments-grid,
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card{min-height:58px!important;padding:9px!important;gap:7px!important;border-radius:14px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-icon{width:30px!important;min-width:30px!important;height:30px!important;border-radius:11px!important;font-size:13px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-arrow{width:24px!important;min-width:24px!important;height:24px!important;font-size:10px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card > span:not(.rgseo-home-explore-icon):not(.rgseo-home-explore-arrow){font-size:12px!important;line-height:1.08!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-kicker{font-size:10px!important;padding:5px 9px!important;}
}

/* RG SEO v1.4.0 - Sidebar Acceso rápido con estilo mockup 3 */
.rgseo-sidebar-save-arrow-v180 i,.rgseo-tv-fav-arrow i,.rgseo-premium-sidebar [data-tv-fav-prev] i,.rgseo-premium-sidebar [data-tv-fav-next] i,.rgseo-premium-sidebar [data-sidebar-trends-prev] i,.rgseo-premium-sidebar [data-sidebar-trends-next] i{color:#e9eef6!important;}
.rgseo-premium-sidebar .rgseo-tv-fav-carousel,.rgseo-premium-sidebar .rgseo-sidebar-trends-as-fav{background:linear-gradient(180deg,rgba(32,38,47,.98),rgba(22,26,33,.99));}
.rgseo-premium-sidebar .rgseo-tv-fav-carousel:before,.rgseo-premium-sidebar .rgseo-sidebar-trends-as-fav:before{content:"";position:absolute;inset:0;pointer-events:none;border-radius:22px;box-shadow:inset 1px 0 0 rgba(96,221,235,.08),inset -1px 0 0 rgba(255,190,102,.08);}


/* RG SEO v1.4.0 - Radio Emisoras Premium: paleta unificada con Ver También Premium */
.rgseo-radio-emisoras-premium{
  --rg-bg:#111318;
  --rg-panel:#171b22;
  --rg-card:#242a33;
  --rg-card-2:#1b2028;
  --rg-border:rgba(255,255,255,.085);
  --rg-orange:#FF6A00;
  --rg-orange-soft:#ff8a3d;
  --rg-cyan:#00BBD4;
  --rg-cyan-soft:#60ddeb;
  --rg-white:#F5F5F7;
  --rg-muted:#bbc4d0;
  position:relative!important;
  overflow:hidden!important;
  color:var(--rg-white)!important;
  background:linear-gradient(180deg,rgba(24,28,35,.985),rgba(15,18,24,.99))!important;
  border:1px solid var(--rg-border)!important;
  box-shadow:0 16px 34px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.035)!important;
}
.rgseo-radio-emisoras-premium:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  border-radius:inherit!important;
  pointer-events:none!important;
  background:radial-gradient(circle at 100% 0%,rgba(255,106,0,.10),transparent 34%),radial-gradient(circle at 0% 100%,rgba(0,187,212,.07),transparent 34%)!important;
  opacity:1!important;
  z-index:-1!important;
}
.rgseo-radio-emisoras-head{position:relative!important;z-index:1!important;}
.rgseo-radio-emisoras-icon{
  position:relative!important;
  isolation:isolate!important;
  overflow:hidden!important;
  width:72px!important;
  min-width:72px!important;
  height:72px!important;
  border-radius:22px!important;
  color:#6fe7f2!important;
  background:linear-gradient(180deg,#111820,#090d12)!important;
  border:1px solid rgba(121,139,160,.26)!important;
  box-shadow:-10px 0 18px rgba(255,106,0,.10),10px 0 18px rgba(0,187,212,.12),0 14px 24px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.06),inset 0 0 0 1px rgba(255,255,255,.03)!important;
}
.rgseo-radio-emisoras-icon:before{
  content:""!important;
  position:absolute!important;
  inset:4px!important;
  border-radius:18px!important;
  background:linear-gradient(180deg,rgba(12,18,25,.98),rgba(6,10,14,.99))!important;
  box-shadow:inset 1px 0 0 rgba(255,137,61,.55),inset -1px 0 0 rgba(96,221,235,.62),inset 0 0 0 1px rgba(255,255,255,.03)!important;
  z-index:0!important;
}
.rgseo-radio-emisoras-icon:after{
  content:""!important;
  position:absolute!important;
  inset:11px!important;
  border-radius:14px!important;
  background:linear-gradient(180deg,rgba(0,187,212,.14),rgba(255,106,0,.03))!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03),inset 0 -16px 18px rgba(0,0,0,.26)!important;
  z-index:0!important;
}
.rgseo-radio-emisoras-icon i,.rgseo-radio-emisoras-icon svg{position:relative!important;z-index:2!important;color:inherit!important;filter:none!important;text-shadow:0 0 14px rgba(0,187,212,.24)!important;}
.rgseo-radio-emisoras-head h2{color:var(--rg-white)!important;text-shadow:none!important;}
.rgseo-radio-emisoras-head p{color:var(--rg-muted)!important;text-shadow:none!important;}
.rgseo-radio-emisoras-pill{
  color:#eef4fb!important;
  background:linear-gradient(180deg,rgba(40,46,56,.96),rgba(25,30,38,.98))!important;
  border:1px solid rgba(245,245,247,.11)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05)!important;
}
.rgseo-radio-emisoras-pill i{color:var(--rg-cyan-soft)!important;}
.rgseo-radio-emisoras-grid{position:relative!important;z-index:1!important;}
.rgseo-radio-emisora-card{
  color:var(--rg-white)!important;
  background:linear-gradient(180deg,rgba(37,42,51,.98),rgba(24,28,35,.99))!important;
  border:1px solid rgba(255,255,255,.09)!important;
  box-shadow:0 10px 22px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.035)!important;
}
.rgseo-radio-emisora-card:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  pointer-events:none!important;
  background:linear-gradient(180deg,rgba(255,255,255,.03),transparent 34%)!important;
  opacity:1!important;
  z-index:0!important;
}
.rgseo-radio-emisora-card:after{
  content:""!important;
  position:absolute!important;
  left:0!important;
  right:0!important;
  bottom:0!important;
  height:2px!important;
  background:linear-gradient(90deg,transparent,rgba(255,106,0,.52),rgba(0,187,212,.28),transparent)!important;
  opacity:0!important;
  transition:opacity .22s ease!important;
}
.rgseo-radio-emisora-card:hover,.rgseo-radio-emisora-card:focus-visible{
  transform:translateY(-4px)!important;
  background:linear-gradient(180deg,rgba(43,49,58,.99),rgba(26,30,38,.99))!important;
  border-color:rgba(255,106,0,.24)!important;
  box-shadow:0 16px 28px rgba(0,0,0,.28)!important;
  color:var(--rg-white)!important;
}
.rgseo-radio-emisora-card:hover:after,.rgseo-radio-emisora-card:focus-visible:after{opacity:1!important;}
.rgseo-radio-emisora-thumb{background:transparent!important;border:0!important;box-shadow:none!important;}
.rgseo-radio-emisora-name{color:var(--rg-white)!important;text-shadow:none!important;}
.rgseo-radio-emisora-badge,
.rgseo-radio-emisora-type,
.rgseo-radio-emisora-chip{
  color:#eef4fb!important;
  background:linear-gradient(135deg,rgba(42,45,52,.94),rgba(27,31,39,.98))!important;
  border:1px solid rgba(255,255,255,.10)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-radio-emisora-badge-radio,
.rgseo-radio-emisora-chip-dept{
  color:#ccf8ff!important;
  background:linear-gradient(135deg,rgba(0,187,212,.16),rgba(24,35,38,.95))!important;
  border-color:rgba(0,187,212,.24)!important;
}
.rgseo-radio-emisora-badge-you,
.rgseo-radio-emisora-chip-format{
  color:#ffd4ba!important;
  background:linear-gradient(135deg,rgba(255,106,0,.18),rgba(36,29,24,.96))!important;
  border-color:rgba(255,106,0,.24)!important;
}
.rgseo-radio-emisora-chip i{color:var(--rg-cyan-soft)!important;}
.rgseo-radio-emisora-chip-format i{color:var(--rg-orange-soft)!important;}
.rgseo-radio-emisora-dot{background:var(--rg-orange)!important;box-shadow:none!important;}
.rgseo-radio-emisora-action{
  color:#fff!important;
  background:linear-gradient(180deg,rgba(34,29,24,.98),rgba(21,18,16,.99))!important;
  border:1px solid rgba(255,106,0,.26)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 6px 12px rgba(0,0,0,.18)!important;
}
.rgseo-radio-emisora-action:hover,.rgseo-radio-emisora-card:focus-visible .rgseo-radio-emisora-action{border-color:rgba(255,106,0,.36)!important;filter:brightness(1.04)!important;}
.rgseo-radio-emisora-fallback{
  color:#ccf8ff!important;
  background:linear-gradient(180deg,rgba(40,46,56,.96),rgba(25,30,38,.98))!important;
  border:1px solid rgba(0,187,212,.18)!important;
}
@media(max-width:760px){.rgseo-radio-emisoras-icon{width:58px!important;min-width:58px!important;height:58px!important;border-radius:18px!important;font-size:24px!important;}}



/* RG SEO v1.4.0 - Radio Emisoras: Radio reemplaza departamento, Escuchar abajo y títulos centrados */
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-name{
  width:100%!important;
  text-align:center!important;
  justify-content:center!important;
  align-items:center!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-tax{
  display:grid!important;
  grid-template-columns:minmax(0,.78fr) minmax(0,1fr)!important;
  align-items:center!important;
  gap:8px!important;
  min-height:32px!important;
  max-height:none!important;
  overflow:visible!important;
  margin:4px 0 0!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-radio{
  justify-content:center!important;
  color:#ccf8ff!important;
  background:linear-gradient(135deg,rgba(0,187,212,.16),rgba(24,35,38,.95))!important;
  border-color:rgba(0,187,212,.24)!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-radio .rgseo-radio-emisora-dot{
  width:7px!important;
  height:7px!important;
  min-width:7px!important;
  display:inline-block!important;
  border-radius:999px!important;
  background:var(--rg-cyan)!important;
  box-shadow:0 0 8px rgba(0,187,212,.22)!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-format{
  justify-content:center!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-meta{
  display:flex!important;
  width:100%!important;
  padding-top:10px!important;
  justify-content:center!important;
  align-items:center!important;
  grid-template-columns:1fr!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-meta .rgseo-radio-emisora-type{
  display:none!important;
}
.rgseo-radio-emisoras-premium .rgseo-radio-emisora-action{
  width:min(100%,150px)!important;
  min-height:36px!important;
  justify-content:center!important;
  margin:0 auto!important;
}
@media(max-width:760px){
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-name{
    text-align:center!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-tax{
    grid-template-columns:minmax(0,.72fr) minmax(0,1fr)!important;
    gap:6px!important;
    min-height:30px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip,
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-radio,
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-chip-format{
    height:30px!important;
    min-height:30px!important;
    width:100%!important;
    max-width:100%!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-action{
    width:100%!important;
    min-height:36px!important;
  }
}
@media(max-width:430px){
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-card{
    min-height:292px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-tax{
    grid-template-columns:minmax(0,.70fr) minmax(0,1fr)!important;
    grid-auto-rows:30px!important;
    row-gap:0!important;
    min-height:30px!important;
  }
  .rgseo-radio-emisoras-premium .rgseo-radio-emisora-meta{
    display:flex!important;
    grid-template-columns:1fr!important;
    padding-top:8px!important;
  }
}



/* RG SEO v1.4.5 - Radios Departamentos Hub con paleta estándar RG SEO */
.rgseo-radios-dept-hub{
  color:#F5F5F7!important;
  background:
    radial-gradient(circle at 8% 0%,rgba(255,106,0,.10),transparent 34%),
    radial-gradient(circle at 92% 0%,rgba(0,187,212,.09),transparent 38%),
    linear-gradient(135deg,#111318 0%,#171B22 52%,#232830 100%)!important;
  border:1px solid rgba(255,255,255,.07)!important;
  box-shadow:0 24px 64px rgba(0,0,0,.34),0 0 24px rgba(0,0,0,.08)!important;
}
.rgseo-radios-dept-hero,
.rgseo-radios-dept-section{
  background:linear-gradient(180deg,rgba(24,28,35,.985),rgba(15,18,24,.992))!important;
  border:1px solid rgba(255,255,255,.07)!important;
  box-shadow:0 16px 35px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.03)!important;
}
.rgseo-radios-dept-kicker,
.rgseo-radios-dept-kicker.is-orange,
.rgseo-radios-dept-kicker-link .rgseo-radios-dept-kicker,
.rgseo-radios-dept-kicker-link .rgseo-radios-dept-kicker.is-orange{
  color:#fff!important;
  background:linear-gradient(135deg,rgba(255,106,0,.20),rgba(36,29,24,.96))!important;
  border:1px solid rgba(255,106,0,.24)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-radios-dept-kicker.is-blue,
.rgseo-radios-dept-kicker-link .rgseo-radios-dept-kicker.is-blue{
  color:#fff!important;
  background:linear-gradient(135deg,rgba(0,187,212,.16),rgba(24,35,38,.95))!important;
  border:1px solid rgba(0,187,212,.24)!important;
}
.rgseo-radios-dept-kicker-link:hover,
.rgseo-radios-dept-kicker-link:focus-visible{
  box-shadow:0 10px 22px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06)!important;
}
.rgseo-radios-dept-badges span{
  color:#eef4fb!important;
  background:linear-gradient(180deg,rgba(40,46,56,.96),rgba(25,30,38,.98))!important;
  border:1px solid rgba(245,245,247,.11)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-radios-dept-section-head h3,
.rgseo-radios-dept-hero h2,
.rgseo-radios-dept-card-copy strong,
.rgseo-radios-continue-copy strong{color:#F5F5F7!important;}
.rgseo-radios-dept-section-head p,
.rgseo-radios-dept-hero p,
.rgseo-radios-dept-card-copy small,
.rgseo-radios-continue-copy small{color:#bbc4d0!important;}
.rgseo-radios-dept-card,
.rgseo-radios-continue-card{
  color:#F5F5F7!important;
  background:linear-gradient(180deg,rgba(37,42,51,.98),rgba(24,28,35,.99))!important;
  border:1px solid rgba(255,255,255,.09)!important;
  box-shadow:0 10px 22px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.035)!important;
}
.rgseo-radios-dept-card:before,
.rgseo-radios-continue-card:before{
  background:linear-gradient(180deg,rgba(255,255,255,.03),transparent 34%)!important;
  opacity:1!important;
}
.rgseo-radios-dept-card:hover,
.rgseo-radios-dept-card:focus-visible,
.rgseo-radios-continue-card:hover,
.rgseo-radios-continue-card:focus-visible{
  transform:translateY(-4px)!important;
  border-color:rgba(255,106,0,.24)!important;
  background:linear-gradient(180deg,rgba(43,49,58,.99),rgba(26,30,38,.99))!important;
  box-shadow:0 16px 28px rgba(0,0,0,.28)!important;
  color:#F5F5F7!important;
}
.rgseo-radios-type-card:hover,
.rgseo-radios-type-card:focus-visible{
  border-color:rgba(0,187,212,.24)!important;
}
.rgseo-radios-dept-card-icon{
  color:#fff!important;
  background:linear-gradient(135deg,#59d8e8,#00BBD4 65%,#0d7f90)!important;
  border:1px solid rgba(255,255,255,.10)!important;
  box-shadow:0 8px 16px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.rgseo-radios-featured .rgseo-radios-dept-card-icon,
.rgseo-radios-type-card .rgseo-radios-dept-card-icon,
.rgseo-radios-continue-placeholder{
  color:#fff!important;
  background:linear-gradient(135deg,#ff8a3d,#FF6A00 60%,#bf4b00)!important;
  border:1px solid rgba(255,255,255,.10)!important;
  box-shadow:0 8px 16px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.rgseo-radios-continue-placeholder b{color:#fff!important;}
.rgseo-radios-dept-card:hover .rgseo-radios-dept-card-icon,
.rgseo-radios-dept-card:focus-visible .rgseo-radios-dept-card-icon,
.rgseo-radios-continue-card:hover .rgseo-radios-dept-card-icon,
.rgseo-radios-continue-card:focus-visible .rgseo-radios-dept-card-icon{
  transform:scale(1.05)!important;
  filter:brightness(1.06)!important;
  box-shadow:0 12px 20px rgba(0,0,0,.24)!important;
}
.rgseo-radios-dept-card-arrow{
  color:#fff!important;
  background:linear-gradient(180deg,rgba(28,33,41,.98),rgba(19,24,31,.99))!important;
  border:1px solid rgba(255,190,102,.22)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-radios-dept-card:hover .rgseo-radios-dept-card-arrow,
.rgseo-radios-dept-card:focus-visible .rgseo-radios-dept-card-arrow,
.rgseo-radios-continue-card:hover .rgseo-radios-dept-card-arrow,
.rgseo-radios-continue-card:focus-visible .rgseo-radios-dept-card-arrow{
  color:#fff!important;
  border-color:rgba(0,187,212,.26)!important;
  background:linear-gradient(180deg,rgba(24,33,36,.98),rgba(17,22,24,.99))!important;
  box-shadow:0 10px 20px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05)!important;
}
.rgseo-radios-dept-main-cta{
  color:#fff!important;
  background:linear-gradient(180deg,rgba(24,33,36,.98),rgba(17,22,24,.99))!important;
  border:1px solid rgba(0,187,212,.26)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 6px 12px rgba(0,0,0,.18)!important;
}
.rgseo-radios-dept-main-cta:hover,
.rgseo-radios-dept-main-cta:focus-visible{
  color:#fff!important;
  border-color:rgba(0,187,212,.34)!important;
  background:linear-gradient(180deg,rgba(28,38,42,.99),rgba(19,25,28,.99))!important;
  filter:brightness(1.04)!important;
  box-shadow:0 12px 22px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05)!important;
}


/* RG SEO v1.4.6 - Radios Departamentos Hub igualado a la paleta de Radio Emisoras Premium */
.rgseo-radios-dept-hub{
  background:
    radial-gradient(circle at 8% 0%,rgba(255,106,0,.11),transparent 34%),
    radial-gradient(circle at 92% 0%,rgba(0,187,212,.10),transparent 38%),
    linear-gradient(135deg,#111318 0%,#171B22 52%,#2A2D34 100%)!important;
  border:1px solid rgba(255,255,255,.07)!important;
  box-shadow:0 20px 46px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.045)!important;
}
.rgseo-radios-dept-hub:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  pointer-events:none!important;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.026),transparent)!important;
  opacity:.92!important;
}
.rgseo-radios-dept-hero,
.rgseo-radios-dept-section{
  background:linear-gradient(180deg,rgba(255,255,255,.058),rgba(255,255,255,.024))!important;
  border:1px solid rgba(255,255,255,.085)!important;
  box-shadow:0 14px 34px rgba(0,0,0,.24),0 0 0 1px rgba(255,255,255,.025) inset,inset 0 1px 0 rgba(255,255,255,.045)!important;
}
.rgseo-radios-dept-kicker,
.rgseo-radios-dept-kicker-link .rgseo-radios-dept-kicker,
.rgseo-radios-dept-kicker.is-orange,
.rgseo-radios-dept-kicker-link .rgseo-radios-dept-kicker.is-orange{
  color:#ffd4ba!important;
  background:linear-gradient(135deg,rgba(255,106,0,.20),rgba(255,106,0,.12))!important;
  border:1px solid rgba(255,255,255,.095)!important;
}
.rgseo-radios-dept-kicker.is-blue,
.rgseo-radios-dept-kicker-link .rgseo-radios-dept-kicker.is-blue{
  color:#ccf8ff!important;
  background:linear-gradient(135deg,rgba(0,187,212,.20),rgba(0,187,212,.14))!important;
  border:1px solid rgba(255,255,255,.095)!important;
}
.rgseo-radios-dept-kicker-link:hover,
.rgseo-radios-dept-kicker-link:focus-visible{
  filter:brightness(1.06)!important;
  box-shadow:0 10px 22px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.rgseo-radios-dept-badges span{
  color:#F5F5F7!important;
  background:rgba(255,255,255,.06)!important;
  border:1px solid rgba(255,255,255,.085)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-radios-dept-section-head h3,
.rgseo-radios-dept-hero h2,
.rgseo-radios-dept-card-copy strong,
.rgseo-radios-continue-copy strong{color:#F5F5F7!important;}
.rgseo-radios-dept-section-head p,
.rgseo-radios-dept-hero p,
.rgseo-radios-dept-card-copy small,
.rgseo-radios-continue-copy small{color:rgba(255,255,255,.70)!important;}
.rgseo-radios-dept-card,
.rgseo-radios-continue-card{
  background:linear-gradient(180deg,rgba(255,255,255,.058),rgba(255,255,255,.024))!important;
  border:1px solid rgba(255,255,255,.115)!important;
  box-shadow:0 14px 34px rgba(0,0,0,.28),0 0 0 1px rgba(255,255,255,.025) inset,inset 0 1px 0 rgba(255,255,255,.055)!important;
}
.rgseo-radios-dept-card:before,
.rgseo-radios-continue-card:before{
  background:radial-gradient(circle at 18% 0%,rgba(255,106,0,.085),transparent 42%),radial-gradient(circle at 88% 0%,rgba(0,187,212,.075),transparent 44%)!important;
  opacity:.78!important;
}
.rgseo-radios-dept-card:hover,
.rgseo-radios-dept-card:focus-visible,
.rgseo-radios-continue-card:hover,
.rgseo-radios-continue-card:focus-visible{
  transform:translateY(-6px)!important;
  border-color:rgba(255,255,255,.18)!important;
  background:linear-gradient(180deg,rgba(255,255,255,.074),rgba(255,255,255,.03))!important;
  box-shadow:0 18px 40px rgba(0,0,0,.35),0 0 20px rgba(0,187,212,.08),0 0 0 1px rgba(0,187,212,.10) inset!important;
  color:#fff!important;
}
.rgseo-radios-dept-card-icon{
  color:#ccf8ff!important;
  background:linear-gradient(135deg,rgba(0,187,212,.16),rgba(24,35,38,.95))!important;
  border:1px solid rgba(0,187,212,.24)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 8px 16px rgba(0,0,0,.18)!important;
}
.rgseo-radios-featured .rgseo-radios-dept-card-icon,
.rgseo-radios-type-card .rgseo-radios-dept-card-icon,
.rgseo-radios-continue-placeholder{
  color:#ffd4ba!important;
  background:linear-gradient(135deg,rgba(255,106,0,.20),rgba(36,29,24,.94))!important;
  border:1px solid rgba(255,106,0,.22)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 8px 16px rgba(0,0,0,.18)!important;
}
.rgseo-radios-dept-card:hover .rgseo-radios-dept-card-icon,
.rgseo-radios-dept-card:focus-visible .rgseo-radios-dept-card-icon,
.rgseo-radios-continue-card:hover .rgseo-radios-dept-card-icon,
.rgseo-radios-continue-card:focus-visible .rgseo-radios-dept-card-icon{
  filter:brightness(1.08)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 12px 20px rgba(0,0,0,.24)!important;
}
.rgseo-radios-dept-card-arrow{
  color:#fff!important;
  background:linear-gradient(180deg,rgba(34,29,24,.98),rgba(21,18,16,.99))!important;
  border:1px solid rgba(255,106,0,.26)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-radios-type-card .rgseo-radios-dept-card-arrow{
  background:linear-gradient(180deg,rgba(24,33,36,.98),rgba(17,22,24,.99))!important;
  border-color:rgba(0,187,212,.26)!important;
}
.rgseo-radios-dept-card:hover .rgseo-radios-dept-card-arrow,
.rgseo-radios-dept-card:focus-visible .rgseo-radios-dept-card-arrow,
.rgseo-radios-continue-card:hover .rgseo-radios-dept-card-arrow,
.rgseo-radios-continue-card:focus-visible .rgseo-radios-dept-card-arrow{
  color:#fff!important;
  background:linear-gradient(180deg,rgba(24,33,36,.98),rgba(17,22,24,.99))!important;
  border-color:rgba(0,187,212,.26)!important;
  box-shadow:0 10px 20px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06)!important;
}
.rgseo-radios-dept-main-cta{
  color:#fff!important;
  background:linear-gradient(180deg,rgba(24,33,36,.98),rgba(17,22,24,.99))!important;
  border:1px solid rgba(0,187,212,.26)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 6px 12px rgba(0,0,0,.18)!important;
}
.rgseo-radios-dept-main-cta:hover,
.rgseo-radios-dept-main-cta:focus-visible{
  color:#fff!important;
  border-color:rgba(0,187,212,.34)!important;
  background:linear-gradient(180deg,rgba(28,38,42,.99),rgba(19,25,28,.99))!important;
  filter:brightness(1.04)!important;
  box-shadow:0 12px 22px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.05)!important;
}


/* RG SEO v1.4.9 - Home Premium Polish: más profundidad, clickabilidad y acabado editorial */
.rgseo-home-premium[data-rgseo-home-premium="1"]{
  gap:20px!important;
  background:
    radial-gradient(circle at 9% 2%,rgba(255,106,0,.13),transparent 33%),
    radial-gradient(circle at 88% 4%,rgba(0,187,212,.115),transparent 36%),
    radial-gradient(circle at 50% 118%,rgba(255,255,255,.045),transparent 42%),
    linear-gradient(135deg,#101217 0%,#171B22 50%,#252A32 100%)!important;
  box-shadow:0 28px 70px rgba(0,0,0,.40),inset 0 1px 0 rgba(255,255,255,.05)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-head{
  min-height:clamp(250px,22vw,390px)!important;
  background:
    radial-gradient(circle at 8% 18%,rgba(255,106,0,.20),transparent 30%),
    radial-gradient(circle at 88% 12%,rgba(0,187,212,.18),transparent 36%),
    linear-gradient(105deg,rgba(33,38,47,.99),rgba(18,22,29,.99) 54%,rgba(13,23,27,.99))!important;
  border-color:rgba(255,255,255,.11)!important;
  box-shadow:0 22px 52px rgba(0,0,0,.34),0 0 0 1px rgba(255,106,0,.055) inset,inset 0 1px 0 rgba(255,255,255,.055)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-head:before{
  background:
    linear-gradient(90deg,rgba(255,106,0,.18),transparent 22%,transparent 68%,rgba(0,187,212,.18)),
    repeating-linear-gradient(90deg,transparent 0 18px,rgba(255,255,255,.018) 19px 20px),
    radial-gradient(circle at 66% 105%,rgba(255,255,255,.07),transparent 38%)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-icon{
  transform:translateY(-2px)!important;
  box-shadow:-16px 0 32px rgba(255,106,0,.16),16px 0 32px rgba(0,187,212,.18),0 22px 44px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.07)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-kicker{
  letter-spacing:.075em!important;
  background:linear-gradient(135deg,rgba(255,106,0,.26),rgba(36,29,24,.96))!important;
  border-color:rgba(255,106,0,.30)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-head h2{
  max-width:1040px!important;
  text-shadow:0 20px 44px rgba(0,0,0,.34),0 0 18px rgba(255,106,0,.035)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-head p{
  max-width:900px!important;
  color:rgba(245,245,247,.82)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-panel,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-empty{
  background:linear-gradient(180deg,rgba(40,45,54,.72),rgba(21,25,32,.90))!important;
  border-color:rgba(255,255,255,.10)!important;
  box-shadow:0 18px 42px rgba(0,0,0,.28),0 0 0 1px rgba(255,255,255,.025) inset,inset 0 1px 0 rgba(255,255,255,.05)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular:before{background:radial-gradient(circle at 16% 0%,rgba(255,106,0,.11),transparent 42%),radial-gradient(circle at 92% 0%,rgba(0,187,212,.055),transparent 44%)!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments:before{background:radial-gradient(circle at 16% 0%,rgba(0,187,212,.10),transparent 42%),radial-gradient(circle at 92% 0%,rgba(255,106,0,.055),transparent 44%)!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore[data-home-explore]:before{background:radial-gradient(circle at 16% 0%,rgba(255,106,0,.09),transparent 42%),radial-gradient(circle at 92% 0%,rgba(0,187,212,.09),transparent 44%)!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-head h3:before,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-panel-head h3:before{
  content:""!important;
  display:inline-flex!important;
  width:9px!important;
  height:9px!important;
  margin-right:9px!important;
  border-radius:999px!important;
  background:var(--rg-orange)!important;
  box-shadow:0 0 13px rgba(255,106,0,.38)!important;
  vertical-align:middle!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-departments .rgseo-home-explore-head h3:before{background:var(--rg-cyan)!important;box-shadow:0 0 13px rgba(0,187,212,.35)!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-card{
  border-color:rgba(255,255,255,.105)!important;
  background:linear-gradient(180deg,rgba(37,42,51,.98),rgba(22,26,33,.99))!important;
  box-shadow:0 12px 26px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.04)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card:hover,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-card:hover,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-card:focus-within{
  transform:translateY(-5px)!important;
  border-color:rgba(0,187,212,.22)!important;
  box-shadow:0 20px 42px rgba(0,0,0,.34),0 0 18px rgba(0,187,212,.07),0 0 0 1px rgba(255,255,255,.03) inset!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-card:hover{border-color:rgba(255,106,0,.24)!important;box-shadow:0 20px 42px rgba(0,0,0,.34),0 0 18px rgba(255,106,0,.075),0 0 0 1px rgba(255,255,255,.03) inset!important;}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-arrow{
  box-shadow:0 8px 16px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.05)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore-card:hover .rgseo-home-explore-arrow{
  background:linear-gradient(180deg,rgba(28,38,42,.99),rgba(19,25,28,.99))!important;
  border-color:rgba(0,187,212,.34)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-popular-card:hover .rgseo-home-explore-arrow,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-explore[data-home-explore] .rgseo-home-explore-card:hover .rgseo-home-explore-arrow{
  background:linear-gradient(180deg,rgba(42,31,23,.99),rgba(24,18,15,.99))!important;
  border-color:rgba(255,106,0,.34)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-panel-head{
  padding-bottom:10px!important;
  border-bottom:1px solid rgba(255,255,255,.065)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-cards:empty:after{
  content:"Guarda o visita señales para llenar esta sección"!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:148px!important;
  color:rgba(245,245,247,.64)!important;
  border:1px dashed rgba(255,255,255,.11)!important;
  border-radius:18px!important;
  background:rgba(0,0,0,.12)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-link,
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-actions a{
  min-height:42px!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.055),0 8px 16px rgba(0,0,0,.22)!important;
  transition:transform .22s ease,filter .22s ease,border-color .22s ease,box-shadow .22s ease!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-actions a:first-child{
  background:linear-gradient(180deg,rgba(48,32,20,.99),rgba(24,18,15,.99))!important;
  border-color:rgba(255,106,0,.34)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-empty{
  background:linear-gradient(90deg,rgba(43,33,25,.82),rgba(22,27,34,.92),rgba(16,34,39,.82))!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-empty-icon{
  box-shadow:0 12px 24px rgba(0,0,0,.24),0 0 20px rgba(255,106,0,.10),inset 0 1px 0 rgba(255,255,255,.08)!important;
}
/* Mejora editorial para el contenido SEO que sigue después del shortcode */
.rgseo-home-premium[data-rgseo-home-premium="1"] ~ h2,
.rgseo-home-premium[data-rgseo-home-premium="1"] ~ h3{
  color:#F5F5F7!important;
  margin-top:34px!important;
  padding-top:12px!important;
  border-top:1px solid rgba(255,255,255,.07)!important;
  letter-spacing:-.025em!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] ~ h2:before,
.rgseo-home-premium[data-rgseo-home-premium="1"] ~ h3:before{
  content:""!important;
  display:inline-block!important;
  width:10px!important;
  height:10px!important;
  margin-right:10px!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,var(--rg-orange),var(--rg-cyan))!important;
  box-shadow:0 0 14px rgba(0,187,212,.18)!important;
}
.rgseo-home-premium[data-rgseo-home-premium="1"] ~ p{
  color:rgba(245,245,247,.72)!important;
  line-height:1.72!important;
}
@media(max-width:760px){
  .rgseo-home-premium[data-rgseo-home-premium="1"]{gap:15px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-head{padding:24px 16px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-kicker{font-size:.68rem!important;padding:7px 10px!important;}
  .rgseo-home-premium[data-rgseo-home-premium="1"] .rgseo-home-premium-panel-head{padding-bottom:8px!important;}
}
