/*
 * NexoRadio Globo Premium 6.1.7
 * Capa visual final. Se carga después del CSS heredado para mantener
 * compatibilidad con el reproductor y los tipos de contenido de WordPress.
 */

:root {
  --nxr-bg: #070609;
  --nxr-bg-soft: #0e0910;
  --nxr-panel: #151017;
  --nxr-panel-2: #1b1118;
  --nxr-text: #ffffff;
  --nxr-muted: rgba(255, 255, 255, .64);
  --nxr-line: rgba(255, 255, 255, .08);
  --nxr-pink: var(--globo-primary, #d10f50);
  --nxr-pink-bright: #ff2f7b;
  --nxr-green: #21c765;
  --nxr-radius: 24px;
  --nxr-shadow: 0 28px 78px rgba(0, 0, 0, .38);
}

html { scroll-behavior: smooth; }
html.nxg5-modal-open { overflow: hidden; }
body.nxglobo-front-page {
  background: var(--nxr-bg) !important;
  color: var(--nxr-text);
  overflow-x: hidden;
  padding-bottom: 116px !important;
}
body.nxglobo-front-page main { overflow: clip; }
body.nxglobo-front-page .nxg5-shell,
body.nxglobo-front-page .hder-container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
body.nxglobo-front-page .nxglobo-site-header {
  height: 78px !important;
  background: rgba(8, 5, 9, .82) !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  box-shadow: 0 12px 38px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(22px) saturate(150%);
}
body.nxglobo-front-page .nxglobo-site-header.is-scrolled {
  background: rgba(8, 5, 9, .94) !important;
}
body.nxglobo-front-page .nxglobo-site-header__inner {
  height: 78px;
  gap: 22px;
}
body.nxglobo-front-page .nxglobo-site-header__logo img {
  max-height: 44px;
  width: auto;
}
body.nxglobo-front-page .nxglobo-desktop-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
body.nxglobo-front-page .nxglobo-desktop-menu a {
  position: relative;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
body.nxglobo-front-page .nxglobo-desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--nxr-pink-bright);
  transition: right .22s ease;
}
body.nxglobo-front-page .nxglobo-desktop-menu a:hover { color: #fff; }
body.nxglobo-front-page .nxglobo-desktop-menu a:hover::after { right: 0; }
body.nxglobo-front-page .nxglobo-site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.nxglobo-front-page .nxglobo-header-socials {
  display: flex;
  align-items: center;
  gap: 7px;
}
body.nxglobo-front-page .nxglobo-header-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
body.nxglobo-front-page .nxglobo-header-socials a:hover {
  transform: translateY(-2px);
  background: var(--nxr-pink);
  border-color: var(--nxr-pink);
}
body.nxglobo-front-page .nxglobo-header-promo {
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 13px !important;
  background: linear-gradient(135deg, var(--nxr-pink-bright), #b00043) !important;
  color: #fff !important;
  box-shadow: 0 13px 30px rgba(229,0,90,.26);
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .05em;
}
body.nxglobo-front-page .nxglobo-header-promo:hover { transform: translateY(-2px); }

/* React slider */
.nxg6-react-slider-root { min-height: 1px; }
.nxr-slider {
  position: relative;
  padding: 104px 0 26px;
  background:
    radial-gradient(circle at 84% 3%, rgba(225,0,90,.17), transparent 30%),
    linear-gradient(180deg, #09060a 0%, #070609 100%);
}
body.admin-bar .nxr-slider { padding-top: 136px; }
.nxr-slider__frame {
  position: relative;
  aspect-ratio: 16 / 7.35;
  min-height: 430px;
  max-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255,47,123,.38);
  border-radius: 30px;
  background: #10080e;
  box-shadow: var(--nxr-shadow), inset 0 1px 0 rgba(255,255,255,.07);
}
.nxr-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity .55s ease, visibility .55s ease, transform .75s ease;
}
.nxr-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 2;
}
.nxr-slider__link {
  position: absolute;
  inset: 0;
  display: block;
  background: #11080f;
}
.nxr-slider__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.nxr-slider__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  background: rgba(8,5,10,.62);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.nxr-slider__arrow:hover {
  background: var(--nxr-pink);
  border-color: var(--nxr-pink);
  transform: translateY(-50%) scale(1.06);
}
.nxr-slider__arrow--prev { left: 18px; }
.nxr-slider__arrow--next { right: 18px; }
.nxr-slider__dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(6,4,7,.50);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}
.nxr-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}
.nxr-slider__dots button.is-active {
  width: 28px;
  background: var(--nxr-pink-bright);
}
.nxr-slider--fallback .nxr-slider__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

/* WhatsApp */
body.nxglobo-front-page .nxg6-whatsapp-strip {
  padding: 0 0 28px;
  background: var(--nxr-bg);
}
body.nxglobo-front-page .nxg6-whatsapp-strip__button {
  min-height: 82px;
  border: 1px solid rgba(55,235,124,.35);
  border-radius: 22px;
  background: linear-gradient(135deg, #0d9f4c, #20c665 55%, #079345);
  box-shadow: 0 18px 46px rgba(13,169,78,.20);
}

/* Secciones */
body.nxglobo-front-page .nxg5-section {
  padding: 70px 0;
  background: var(--nxr-bg);
}
body.nxglobo-front-page .nxg5-section:nth-of-type(even) {
  background: linear-gradient(180deg, #0b080d, #08070a);
}
body.nxglobo-front-page .nxg5-section-heading {
  margin-bottom: 30px;
}
body.nxglobo-front-page .nxg5-section-heading > div > span {
  color: var(--nxr-pink-bright);
  font-size: 10px;
  letter-spacing: .18em;
}
body.nxglobo-front-page .nxg5-section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.045em;
}
body.nxglobo-front-page .nxg5-section-heading > a {
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
}
body.nxglobo-front-page .nxg5-section-heading > a:hover { color: #fff; }

/* Programación */
body.nxglobo-front-page .nxg5-section--programs {
  background: #f6f2f4 !important;
  color: #1b0b13;
}
body.nxglobo-front-page .nxg5-section--programs .nxg5-section-heading h2 { color: #1b0b13; }
body.nxglobo-front-page .nxg5-schedule-tabs {
  border: 1px solid rgba(42,10,25,.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(61,18,38,.09);
}
body.nxglobo-front-page .nxg5-schedule-tab.is-active {
  background: linear-gradient(135deg, var(--nxr-pink), #a4003d);
  color: #fff;
  box-shadow: 0 12px 28px rgba(209,15,80,.24);
}
body.nxglobo-front-page .nxg5-schedule-item {
  border: 1px solid rgba(42,10,25,.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(61,18,38,.08);
}

/* Noticias: estructura exacta de referencia */
body.nxglobo-front-page .nxg5-news-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(0, .84fr) minmax(0, .84fr);
  grid-template-areas:
    "hero top tall"
    "hero mid tall";
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 14px;
  min-height: 500px;
}
body.nxglobo-front-page .nxg5-news-premium--count-1 {
  grid-template-columns: 1fr;
  grid-template-areas: "hero";
}
body.nxglobo-front-page .nxg5-news-premium--count-2 {
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .95fr);
  grid-template-areas: "hero tall";
}
body.nxglobo-front-page .nxg5-news-premium--count-3 {
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .95fr);
  grid-template-areas: "hero top" "hero mid";
}
body.nxglobo-front-page .nxg5-news-premium-card__link {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: none;
}
body.nxglobo-front-page .nxg5-news-premium-card__content {
  padding: 18px 20px 20px;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content {
  max-width: 80%;
  padding: 26px 28px;
}
body.nxglobo-front-page .nxg5-news-premium-card__tag {
  min-height: 27px;
  padding: 0 13px;
  color: #ec2297;
  font-size: 11px;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero h3 {
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1.06;
  -webkit-line-clamp: 4;
}
body.nxglobo-front-page .nxg5-news-premium-card--top h3,
body.nxglobo-front-page .nxg5-news-premium-card--mid h3,
body.nxglobo-front-page .nxg5-news-premium-card--tall h3 {
  font-size: clamp(16px, 1.35vw, 23px);
  line-height: 1.13;
}

/* Canales */
@media (min-width: 1101px) {
  body.nxglobo-front-page .nxg5-live-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
body.nxglobo-front-page .nxg5-live-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #171018, #100c12);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
body.nxglobo-front-page .nxg5-live-card:hover {
  border-color: rgba(255,47,123,.50);
  transform: translateY(-5px);
}
body.nxglobo-front-page .nxg5-live-card__media { border-radius: 19px 19px 0 0; }
body.nxglobo-front-page .nxg5-live-card__content h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Videos y tarjetas */
body.nxglobo-front-page .nxg5-video-card,
body.nxglobo-front-page .nxg5-podcast-card,
body.nxglobo-front-page .nxg5-host-card {
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(180deg, #171018, #100c12);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

/* Mini player */
body.nxglobo-front-page #app-super .player {
  border: 1px solid rgba(255,255,255,.13) !important;
  background: linear-gradient(110deg, rgba(84,3,34,.97), rgba(209,15,80,.97), rgba(109,3,43,.97)) !important;
  box-shadow: 0 20px 55px rgba(0,0,0,.42) !important;
  backdrop-filter: blur(16px);
}
body.nxglobo-front-page #app-super .player-button-play {
  box-shadow: 0 10px 26px rgba(0,0,0,.20) !important;
}

/* React promociones */
.nxr-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 10090;
  display: grid;
  place-items: center;
  padding: 18px;
}
.nxr-promo-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3,3,5,.82);
  backdrop-filter: blur(12px);
  cursor: default;
}
.nxr-promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(255,47,123,.32);
  border-radius: 28px;
  background: linear-gradient(145deg, #180b15, #09070a 72%);
  box-shadow: 0 34px 100px rgba(0,0,0,.58);
  outline: none;
}
.nxr-promo-modal__dialog--form { width: min(620px, calc(100vw - 32px)); }
.nxr-promo-modal__close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(8,5,10,.76);
  color: #fff;
  cursor: pointer;
}
.nxr-promo-gallery { padding: 42px; }
.nxr-promo-gallery__heading { padding-right: 48px; margin-bottom: 22px; }
.nxr-promo-gallery__heading span {
  color: var(--nxr-pink-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.nxr-promo-gallery__heading h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.04em;
}
.nxr-promo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.nxr-promo-gallery__grid.is-single {
  grid-template-columns: minmax(0, 340px);
  justify-content: center;
}
.nxr-promo-gallery__item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: #220811;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.nxr-promo-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 6.8;
  display: block;
  object-fit: contain;
  background: #220811;
}
.nxr-promo-gallery__item > span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(8,5,10,.78);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  backdrop-filter: blur(9px);
}
.nxr-promo-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  color: #fff;
}
.nxr-promo-empty > i { color: var(--nxr-pink-bright); font-size: 34px; }
.nxr-promo-empty p { margin: 0; color: var(--nxr-muted); }
.nxr-promo-form-view { padding: 48px 32px 32px; }
.nxr-promo-form-view__back {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}
.nxr-promo-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(155deg, #d31335, #b50825);
  box-shadow: 0 24px 60px rgba(0,0,0,.30);
}
.nxr-promo-form__heading span {
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.nxr-promo-form__heading h2 {
  margin: 6px 0 4px;
  color: #fff;
  font-size: 30px;
  line-height: 1.05;
}
.nxr-promo-form label { display: flex; flex-direction: column; gap: 5px; }
.nxr-promo-form label > span { color: rgba(255,255,255,.92); font-size: 10px; font-weight: 800; }
.nxr-promo-form input,
.nxr-promo-form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #282126;
  font: inherit;
  outline: 0;
}
.nxr-promo-form input { height: 48px; padding: 0 14px; }
.nxr-promo-form textarea { min-height: 92px; padding: 13px 14px; resize: vertical; }
.nxr-promo-form input:focus,
.nxr-promo-form textarea:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.24); }
.nxr-promo-form__submit {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 11px;
  background: rgba(88,0,15,.25);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.nxr-promo-form__submit:disabled { opacity: .65; cursor: wait; }
.nxr-promo-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
}
.nxr-promo-status.is-success { background: rgba(20,100,53,.42); color: #d9ffe8; }
.nxr-promo-status.is-error { background: rgba(89,0,13,.42); color: #fff0f2; }
.nxr-honeypot { position: absolute !important; left: -9999px !important; }

/* Footer */
body.nxglobo-front-page .nxg5-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: #070507;
}

/* Responsive */
@media (max-width: 1100px) {
  body.nxglobo-front-page .nxglobo-header-socials { display: none; }
  body.nxglobo-front-page .nxg5-news-premium {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
    grid-template-areas: "hero hero" "top tall" "mid tall";
    grid-template-rows: minmax(350px, auto) repeat(2, minmax(190px, 1fr));
  }
  body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content { max-width: 88%; }
}
@media (max-width: 900px) {
  body.nxglobo-front-page .nxglobo-desktop-menu { display: none; }
  .nxr-slider { padding-top: 94px; }
  body.admin-bar .nxr-slider { padding-top: 138px; }
  .nxr-slider__frame {
    width: calc(100% - 18px) !important;
    aspect-ratio: 16 / 8.3;
    min-height: 0;
    border-radius: 22px;
  }
  body.nxglobo-front-page .nxg5-news-premium,
  body.nxglobo-front-page .nxg5-news-premium--count-2,
  body.nxglobo-front-page .nxg5-news-premium--count-3 {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "top" "mid" "tall";
    grid-template-rows: none;
    min-height: 0;
  }
  body.nxglobo-front-page .nxg5-news-premium-card { min-height: 280px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content,
  body.nxglobo-front-page .nxg5-news-premium-card__content { max-width: 100%; }
  .nxr-promo-gallery { padding: 42px 18px 20px; }
  .nxr-promo-gallery__grid { grid-template-columns: 1fr; }
  .nxr-promo-gallery__grid.is-single { grid-template-columns: minmax(0, 320px); }
}
@media (max-width: 620px) {
  body.nxglobo-front-page .nxg5-shell,
  body.nxglobo-front-page .hder-container { width: min(100% - 22px, 1220px); }
  body.nxglobo-front-page .nxglobo-header-promo span { display: none; }
  body.nxglobo-front-page .nxglobo-header-promo { width: 42px; padding: 0 !important; justify-content: center; }
  .nxr-slider__frame { aspect-ratio: 4 / 3; border-radius: 18px; }
  .nxr-slider__arrow { width: 38px; height: 38px; }
  .nxr-slider__arrow--prev { left: 8px; }
  .nxr-slider__arrow--next { right: 8px; }
  .nxr-slider__dots { bottom: 9px; }
  body.nxglobo-front-page .nxg5-section { padding: 54px 0; }
  body.nxglobo-front-page .nxg5-section-heading { align-items: flex-start; }
  body.nxglobo-front-page .nxg5-section-heading > a { margin-top: 10px; }
  .nxr-promo-modal { padding: 6px; }
  .nxr-promo-modal__dialog { width: calc(100vw - 12px); max-height: calc(100vh - 12px); border-radius: 20px; }
  .nxr-promo-form-view { padding: 48px 14px 16px; }
  .nxr-promo-form { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ======================================================================
 * GLOBO PREMIUM 6.1.0 · STUDIO POP REFINEMENT
 * Escala más fina, editorial y juvenil. Esta capa compacta los elementos
 * principales sin modificar el motor del reproductor ni la lógica React.
 * ====================================================================== */

:root {
  --nxr-bg: #08080c;
  --nxr-bg-soft: #0c0c12;
  --nxr-panel: #121219;
  --nxr-panel-2: #171720;
  --nxr-text: #f8f8fb;
  --nxr-muted: rgba(248, 248, 251, .58);
  --nxr-line: rgba(255, 255, 255, .075);
  --nxr-pink: var(--globo-primary, #d10f50);
  --nxr-pink-bright: #ff2f7d;
  --nxr-violet: #8a63ff;
  --nxr-green: #1fd36b;
  --nxr-radius: 16px;
  --nxr-shadow: 0 18px 55px rgba(0, 0, 0, .30);
}

body.nxglobo-front-page {
  background:
    radial-gradient(circle at 78% 4%, rgba(255, 47, 125, .055), transparent 26%),
    radial-gradient(circle at 8% 34%, rgba(138, 99, 255, .035), transparent 25%),
    var(--nxr-bg) !important;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  letter-spacing: -.006em;
  padding-bottom: 96px !important;
}
body.nxglobo-front-page .nxg5-shell,
body.nxglobo-front-page .hder-container,
body.nxglobo-front-page .nxglobo-shell {
  width: min(1160px, calc(100% - 48px));
}
body.nxglobo-front-page a,
body.nxglobo-front-page button { -webkit-tap-highlight-color: transparent; }
body.nxglobo-front-page img { image-rendering: auto; }

/* Header más fino */
body.nxglobo-front-page .nxglobo-site-header {
  height: 68px !important;
  background: rgba(8, 8, 12, .78) !important;
  border-bottom-color: rgba(255,255,255,.055) !important;
  box-shadow: 0 8px 26px rgba(0,0,0,.16) !important;
  backdrop-filter: blur(20px) saturate(145%);
}
body.nxglobo-front-page .nxglobo-site-header.is-scrolled {
  background: rgba(8, 8, 12, .94) !important;
}
body.nxglobo-front-page .nxglobo-site-header__inner {
  height: 68px;
  grid-template-columns: 144px 1fr auto;
  gap: 18px;
}
body.nxglobo-front-page .nxglobo-site-header__logo img {
  height: auto !important;
  max-height: 38px !important;
  max-width: 112px !important;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.25));
}
body.nxglobo-front-page .nxglobo-desktop-menu { gap: 23px; }
body.nxglobo-front-page .nxglobo-desktop-menu a {
  padding: 24px 0 21px;
  color: rgba(255,255,255,.67);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .065em;
}
body.nxglobo-front-page .nxglobo-desktop-menu a::after {
  bottom: 14px;
  height: 1.5px;
}
body.nxglobo-front-page .nxglobo-site-header__actions { gap: 8px; }
body.nxglobo-front-page .nxglobo-header-socials { gap: 5px; }
body.nxglobo-front-page .nxglobo-header-socials a {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 11px;
  background: rgba(255,255,255,.025);
}
body.nxglobo-front-page .nxglobo-header-socials a:hover {
  transform: translateY(-1px);
  background: rgba(255,47,125,.16);
  border-color: rgba(255,47,125,.45);
  color: #ff74aa;
}
body.nxglobo-front-page .nxglobo-header-promo {
  min-height: 36px !important;
  padding: 0 14px !important;
  border-radius: 11px !important;
  gap: 7px !important;
  box-shadow: 0 9px 22px rgba(209,15,80,.20) !important;
  font-size: 9px !important;
  letter-spacing: .075em;
}

/* Slider editorial, menos alto */
.nxr-slider {
  padding: 88px 0 20px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,47,125,.10), transparent 28%),
    transparent;
}
body.admin-bar .nxr-slider { padding-top: 120px; }
.nxr-slider__frame {
  aspect-ratio: 16 / 6.7;
  min-height: 350px;
  max-height: 478px;
  border-color: rgba(255,47,125,.22);
  border-radius: 20px;
  box-shadow: 0 20px 58px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.045);
}
.nxr-slider__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}
.nxr-slider__slide { transform: scale(1.008); }
.nxr-slider__arrow {
  width: 38px;
  height: 38px;
  border-color: rgba(255,255,255,.14);
  background: rgba(8,8,12,.54);
  font-size: 12px;
}
.nxr-slider__arrow--prev { left: 13px; }
.nxr-slider__arrow--next { right: 13px; }
.nxr-slider__dots {
  bottom: 12px;
  gap: 6px;
  padding: 5px 8px;
  border-color: rgba(255,255,255,.075);
  background: rgba(8,8,12,.46);
}
.nxr-slider__dots button { width: 6px; height: 6px; }
.nxr-slider__dots button.is-active { width: 20px; }

/* WhatsApp cabina: protagonista sin ser pesado */
body.nxglobo-front-page .nxg6-whatsapp-strip { padding: 0 0 18px; }
body.nxglobo-front-page .nxg6-whatsapp-strip__button {
  min-height: 62px;
  padding: 8px 16px;
  border-radius: 16px;
  border-color: rgba(52,231,119,.24);
  background: linear-gradient(108deg, #0b8f43, #17b85a 55%, #0a9447);
  box-shadow: 0 12px 31px rgba(9,150,70,.17);
}
body.nxglobo-front-page .nxg6-whatsapp-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  font-size: 20px;
}
body.nxglobo-front-page .nxg6-whatsapp-strip__copy { gap: 2px; }
body.nxglobo-front-page .nxg6-whatsapp-strip__copy strong { font-size: 14px; letter-spacing: -.015em; }
body.nxglobo-front-page .nxg6-whatsapp-strip__copy small { font-size: 9px; opacity: .72; }
body.nxglobo-front-page .nxg6-whatsapp-strip__status {
  min-height: 28px;
  padding: 0 10px;
  font-size: 7.5px;
  letter-spacing: .08em;
}
body.nxglobo-front-page .nxg6-whatsapp-strip__arrow {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

/* Ritmo general de secciones */
body.nxglobo-front-page .nxg5-section,
body.nxglobo-front-page .nxg5-home .nxglobo-section {
  padding: 52px 0;
  background: transparent !important;
}
body.nxglobo-front-page .nxg5-section + .nxg5-section,
body.nxglobo-front-page .nxglobo-section + .nxg5-section,
body.nxglobo-front-page .nxg5-section + .nxglobo-section {
  border-top: 1px solid rgba(255,255,255,.035);
}
body.nxglobo-front-page .nxg5-section-heading,
body.nxglobo-front-page .nxglobo-section-heading {
  align-items: center;
  margin-bottom: 22px;
  gap: 18px;
}
body.nxglobo-front-page .nxg5-section-heading > div > span,
body.nxglobo-front-page .nxglobo-section-heading > div > span {
  margin: 0;
  color: #ff5a98 !important;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .19em;
}
body.nxglobo-front-page .nxg5-section-heading h2,
body.nxglobo-front-page .nxglobo-section-heading h2,
body.nxglobo-front-page .nxglobo-section-heading--light h2 {
  margin-top: 5px;
  color: #f8f8fb !important;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 790;
  line-height: 1;
  letter-spacing: -.045em;
}
body.nxglobo-front-page .nxglobo-section-heading::before { display: none; }
body.nxglobo-front-page .nxg5-section-heading > i,
body.nxglobo-front-page .nxglobo-section-heading > i {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  box-shadow: none;
  color: #ff5a98;
  font-size: 14px;
}
body.nxglobo-front-page .nxg5-section-heading > a,
body.nxglobo-front-page .nxglobo-section-heading > a {
  min-height: 34px;
  padding: 0 12px;
  border-color: rgba(255,255,255,.075);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.61);
  font-size: 8px;
  letter-spacing: .075em;
}

/* Programación compacta estilo estudio */
body.nxglobo-front-page .nxg5-section--schedule {
  color: #fff;
  background:
    radial-gradient(circle at 96% 8%, rgba(255,47,125,.055), transparent 29%),
    transparent !important;
}
body.nxglobo-front-page .nxg5-schedule {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 16px;
  background: rgba(255,255,255,.018);
  box-shadow: 0 16px 45px rgba(0,0,0,.15);
}
body.nxglobo-front-page .nxg5-schedule-tabs {
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  border-radius: 0;
  background: rgba(255,255,255,.018);
  box-shadow: none;
}
body.nxglobo-front-page .nxg5-schedule-tab {
  min-height: 46px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.04);
  background: transparent;
  color: rgba(255,255,255,.53);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .01em;
}
body.nxglobo-front-page .nxg5-schedule-tab:last-child { border-right: 0; }
body.nxglobo-front-page .nxg5-schedule-tab.is-active {
  position: relative;
  background: rgba(255,47,125,.095);
  color: #fff;
  box-shadow: inset 0 -2px 0 #ff2f7d;
}
body.nxglobo-front-page .nxg5-schedule-panels { padding: 10px; }
body.nxglobo-front-page .nxg5-schedule-list { gap: 8px; }
body.nxglobo-front-page .nxg5-schedule-item {
  min-height: 96px;
  grid-template-columns: 104px 92px minmax(0,1fr) 48px;
  border-color: rgba(255,255,255,.055);
  border-radius: 13px;
  background: linear-gradient(108deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  box-shadow: none;
}
body.nxglobo-front-page .nxg5-schedule-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255,47,125,.28);
  background: linear-gradient(108deg, rgba(255,47,125,.055), rgba(255,255,255,.02));
}
body.nxglobo-front-page .nxg5-schedule-item.is-live {
  border-color: rgba(255,47,125,.34);
  box-shadow: inset 3px 0 0 #ff2f7d;
}
body.nxglobo-front-page .nxg5-schedule-item__time {
  padding: 10px 8px;
  border-right-color: rgba(255,255,255,.05);
  background: rgba(255,47,125,.035);
}
body.nxglobo-front-page .nxg5-schedule-item__time span { font-size: 7px; letter-spacing: .09em; }
body.nxglobo-front-page .nxg5-schedule-item__time strong {
  margin-top: 5px;
  color: #ff5a98;
  font-size: 24px;
  font-weight: 770;
}
body.nxglobo-front-page .nxg5-schedule-item__time em { margin-top: 3px; font-size: 8.5px; }
body.nxglobo-front-page .nxg5-schedule-item__time em::before { font-size: 6px; }
body.nxglobo-front-page .nxg5-schedule-item__image { background: #171018; }
body.nxglobo-front-page .nxg5-schedule-item__content { padding: 13px 18px; }
body.nxglobo-front-page .nxg5-schedule-item__content > span { font-size: 7.5px; }
body.nxglobo-front-page .nxg5-schedule-item__content h3 {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.025em;
}
body.nxglobo-front-page .nxg5-schedule-item__content p {
  margin-top: 5px;
  color: rgba(255,255,255,.50);
  font-size: 9px;
}
body.nxglobo-front-page .nxg5-card-arrow {
  width: 31px;
  height: 31px;
  align-self: center;
  justify-self: center;
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  color: #ff5a98;
  font-size: 11px;
}

/* Noticias editoriales, menos masivas */
body.nxglobo-front-page .nxg5-news-premium {
  grid-template-columns: minmax(0, 1.52fr) minmax(0, .78fr) minmax(0, .78fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 10px;
  min-height: 410px;
}
body.nxglobo-front-page .nxg5-news-premium-card__link {
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 14px;
  background: #121217;
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
body.nxglobo-front-page .nxg5-news-premium-card__overlay {
  background:
    linear-gradient(to top, rgba(7,7,11,.91) 0%, rgba(7,7,11,.50) 40%, rgba(7,7,11,.08) 74%, transparent 100%),
    linear-gradient(135deg, rgba(255,47,125,.055), transparent 45%);
}
body.nxglobo-front-page .nxg5-news-premium-card__content {
  gap: 7px;
  padding: 14px 15px 15px;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content {
  max-width: 75%;
  padding: 20px 21px;
}
body.nxglobo-front-page .nxg5-news-premium-card__tag {
  min-height: 22px;
  padding: 0 9px;
  border-radius: 7px;
  background: rgba(255,255,255,.92);
  color: #d51a65;
  font-size: 7.5px;
  letter-spacing: .03em;
}
body.nxglobo-front-page .nxg5-news-premium-card__tag i { width: 5px; height: 5px; background: #8a63ff; }
body.nxglobo-front-page .nxg5-news-premium-card--hero h3 {
  font-size: clamp(25px, 2.55vw, 38px);
  line-height: 1.08;
  -webkit-line-clamp: 3;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero p { font-size: 11px; line-height: 1.48; }
body.nxglobo-front-page .nxg5-news-premium-card--top h3,
body.nxglobo-front-page .nxg5-news-premium-card--mid h3,
body.nxglobo-front-page .nxg5-news-premium-card--tall h3 {
  font-size: clamp(13px, 1.14vw, 18px);
  line-height: 1.17;
}
body.nxglobo-front-page .nxg5-news-premium-card--tall p { font-size: 9.5px; }
body.nxglobo-front-page .nxg5-news-premium-card__dots { right: 12px; bottom: 14px; gap: 4px; }
body.nxglobo-front-page .nxg5-news-premium-card__dots b { width: 4px; height: 4px; }
body.nxglobo-front-page .nxg5-news-premium-card__dots b:nth-child(2) { height: 15px; }

/* Canales, videos y tarjetas */
body.nxglobo-front-page .nxg5-live-grid { gap: 10px; }
body.nxglobo-front-page .nxg5-live-card {
  border-color: rgba(255,255,255,.06);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.016));
  box-shadow: 0 12px 34px rgba(0,0,0,.14);
}
body.nxglobo-front-page .nxg5-live-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,47,125,.30);
}
body.nxglobo-front-page .nxg5-live-card__media { border-radius: 13px 13px 0 0; }
body.nxglobo-front-page .nxg5-live-card__status {
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  font-size: 6.5px;
}
body.nxglobo-front-page .nxg5-live-card__play {
  width: 42px;
  height: 42px;
  border-color: rgba(255,255,255,.30);
  font-size: 12px;
}
body.nxglobo-front-page .nxg5-live-card__content { padding: 13px 13px 14px; }
body.nxglobo-front-page .nxg5-live-card__content h3 { font-size: 13px; line-height: 1.28; }
body.nxglobo-front-page .nxg5-live-card__content p {
  min-height: 27px;
  margin: 5px 0 10px;
  font-size: 8.5px;
  line-height: 1.45;
}
body.nxglobo-front-page .nxg5-live-card__actions { gap: 6px; }
body.nxglobo-front-page .nxg5-live-action {
  min-height: 29px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 6.5px;
  letter-spacing: .04em;
}
body.nxglobo-front-page .nxg5-video-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
body.nxglobo-front-page .nxg5-video-card {
  border-color: rgba(255,255,255,.055);
  border-radius: 13px;
  background: rgba(255,255,255,.022);
  box-shadow: none;
}
body.nxglobo-front-page .nxg5-video-card:hover { transform: translateY(-3px); border-color: rgba(255,47,125,.30); }
body.nxglobo-front-page .nxg5-video-card__media { aspect-ratio: 16 / 9; }
body.nxglobo-front-page .nxg5-video-card__media b { width: 38px; height: 38px; font-size: 11px; }
body.nxglobo-front-page .nxg5-video-card__content { gap: 4px; padding: 11px; }
body.nxglobo-front-page .nxg5-video-card__content strong { font-size: 10px; }
body.nxglobo-front-page .nxg5-video-card__content small { font-size: 7px; }

/* Componentes heredados integrados al nuevo lenguaje visual */
body.nxglobo-front-page .nxglobo-podcast-grid,
body.nxglobo-front-page .nxglobo-host-grid { gap: 12px; }
body.nxglobo-front-page .nxglobo-podcast-card,
body.nxglobo-front-page .nxglobo-host-card {
  border-color: rgba(255,255,255,.06);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
  box-shadow: 0 12px 34px rgba(0,0,0,.13);
}
body.nxglobo-front-page .nxglobo-podcast-card:hover,
body.nxglobo-front-page .nxglobo-host-card:hover { transform: translateY(-3px); }
body.nxglobo-front-page .nxglobo-podcast-card__body { padding: 14px; }
body.nxglobo-front-page .nxglobo-podcast-card__body > span { font-size: 7px; }
body.nxglobo-front-page .nxglobo-podcast-card h3 { margin: 6px 0; font-size: 15px; }
body.nxglobo-front-page .nxglobo-podcast-card p { font-size: 9px; }
body.nxglobo-front-page .nxglobo-host-card { min-height: 320px; }
body.nxglobo-front-page .nxglobo-ranking-list { gap: 8px; }
body.nxglobo-front-page .nxglobo-ranking-item {
  min-height: 68px;
  grid-template-columns: 34px 50px minmax(0,1fr) auto;
  gap: 10px;
  padding: 8px 11px 8px 8px;
  border-radius: 13px;
  background: rgba(255,255,255,.045);
}
body.nxglobo-front-page .nxglobo-ranking-item__position { font-family: Montserrat,sans-serif; font-size: 22px; font-weight: 800; }
body.nxglobo-front-page .nxglobo-ranking-item img { width: 50px; height: 50px; border-radius: 10px; }
body.nxglobo-front-page .nxglobo-ranking-item h3 { font-size: 11px; }
body.nxglobo-front-page .nxglobo-ranking-item p { font-size: 7.5px; }
body.nxglobo-front-page .nxglobo-ranking-item > i { width: 29px; height: 29px; border-radius: 9px; font-size: 9px; }

/* Modal de promociones más limpio */
.nxr-promo-modal__dialog {
  width: min(820px, calc(100vw - 32px));
  border-color: rgba(255,47,125,.20);
  border-radius: 20px;
  background: linear-gradient(145deg, #151119, #09090d 75%);
  box-shadow: 0 28px 80px rgba(0,0,0,.52);
}
.nxr-promo-modal__dialog--form { width: min(560px, calc(100vw - 32px)); }
.nxr-promo-modal__close { width: 36px; height: 36px; top: 11px; right: 11px; }
.nxr-promo-gallery { padding: 34px; }
.nxr-promo-gallery__heading { margin-bottom: 17px; }
.nxr-promo-gallery__heading h2 { font-size: clamp(25px, 3vw, 38px); }
.nxr-promo-gallery__grid { gap: 12px; }
.nxr-promo-gallery__item { border-radius: 15px; box-shadow: 0 14px 36px rgba(0,0,0,.24); }
.nxr-promo-gallery__item > span { left: 10px; right: 10px; bottom: 10px; min-height: 35px; border-radius: 9px; font-size: 7px; }
.nxr-promo-form-view { padding: 42px 25px 25px; }
.nxr-promo-form { gap: 10px; padding: 21px; border-radius: 15px; background: linear-gradient(145deg, #d81652, #a70b3d); }
.nxr-promo-form__heading h2 { font-size: 25px; }
.nxr-promo-form input { height: 43px; }
.nxr-promo-form textarea { min-height: 82px; }
.nxr-promo-form__submit { min-height: 43px; }

/* Footer */
body.nxglobo-front-page .nxg5-footer {
  padding: 44px 0 118px;
  border-top-color: rgba(255,255,255,.055);
  background: #07070a;
}
body.nxglobo-front-page .nxg5-footer__grid { gap: 32px; }
body.nxglobo-front-page .nxg5-footer__brand img { width: 92px; height: 62px; }
body.nxglobo-front-page .nxg5-footer__copyright { margin-top: 30px; }

/* Mini player más delgado y elegante */
body.nxglobo-front-page #app-super .player {
  bottom: 15px !important;
  width: min(900px, calc(100vw - 32px)) !important;
  min-height: 64px !important;
  border-color: rgba(255,255,255,.12) !important;
  border-radius: 16px !important;
  background: linear-gradient(105deg, rgba(55,8,28,.97), rgba(184,15,76,.96), rgba(73,8,36,.97)) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.38) !important;
}
body.nxglobo-front-page #app-super .player-wrapper { min-height: 64px !important; padding: 6px 11px 6px 7px !important; }
body.nxglobo-front-page #app-super .player-cover { min-height: 52px !important; }
body.nxglobo-front-page #app-super .player-artwork-style { width: 50px !important; height: 50px !important; border-radius: 11px !important; }
body.nxglobo-front-page #app-super .player-picture img { border-radius: 11px !important; }
body.nxglobo-front-page #app-super .player-cover-title { min-width: 220px !important; max-width: 390px !important; }
body.nxglobo-front-page #app-super .player-controller { right: 16px !important; gap: 7px !important; }
body.nxglobo-front-page #app-super .player-button-play { width: 44px !important; height: 44px !important; }
body.nxglobo-front-page #app-super .player-button-volume-toggle { width: 36px !important; height: 36px !important; border-radius: 10px !important; }

/* Responsive */
@media (max-width: 1100px) {
  body.nxglobo-front-page .nxg5-shell,
  body.nxglobo-front-page .hder-container,
  body.nxglobo-front-page .nxglobo-shell { width: min(100% - 34px, 1160px); }
  body.nxglobo-front-page .nxglobo-site-header__inner { grid-template-columns: 125px 1fr auto; }
  body.nxglobo-front-page .nxglobo-header-socials { display: none; }
  body.nxglobo-front-page .nxg5-news-premium {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, .82fr);
    grid-template-areas: "hero hero" "top tall" "mid tall";
    grid-template-rows: minmax(300px, auto) repeat(2, minmax(160px, 1fr));
    min-height: 0;
  }
  body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content { max-width: 83%; }
  body.nxglobo-front-page .nxg5-video-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  body.nxglobo-front-page .nxglobo-site-header,
  body.nxglobo-front-page .nxglobo-site-header__inner { height: 64px !important; }
  body.nxglobo-front-page .nxglobo-desktop-menu { display: none; }
  body.nxglobo-front-page .nxglobo-menu-button { display: inline-grid; place-items: center; }
  .nxr-slider { padding-top: 80px; }
  body.admin-bar .nxr-slider { padding-top: 122px; }
  .nxr-slider__frame {
    width: calc(100% - 18px) !important;
    aspect-ratio: 16 / 8.6;
    min-height: 0;
    border-radius: 17px;
  }
  body.nxglobo-front-page .nxg5-section,
  body.nxglobo-front-page .nxg5-home .nxglobo-section { padding: 44px 0; }
  body.nxglobo-front-page .nxg5-schedule-tabs { grid-template-columns: repeat(7, 94px); overflow-x: auto; scrollbar-width: none; }
  body.nxglobo-front-page .nxg5-schedule-tabs::-webkit-scrollbar { display: none; }
  body.nxglobo-front-page .nxg5-schedule-item { grid-template-columns: 92px 78px minmax(0,1fr); }
  body.nxglobo-front-page .nxg5-schedule-item > .nxg5-card-arrow { display: none; }
  body.nxglobo-front-page .nxg5-news-premium,
  body.nxglobo-front-page .nxg5-news-premium--count-2,
  body.nxglobo-front-page .nxg5-news-premium--count-3,
  body.nxglobo-front-page .nxg5-news-premium--count-4 {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "top" "mid" "tall";
    grid-template-rows: none;
  }
  body.nxglobo-front-page .nxg5-news-premium-card { min-height: 235px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero { min-height: 310px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content,
  body.nxglobo-front-page .nxg5-news-premium-card__content { max-width: 100%; }
  body.nxglobo-front-page .nxg5-live-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  body.nxglobo-front-page #app-super .player { bottom: 68px !important; }
}

@media (max-width: 620px) {
  body.nxglobo-front-page { padding-bottom: 122px !important; }
  body.nxglobo-front-page .nxg5-shell,
  body.nxglobo-front-page .hder-container,
  body.nxglobo-front-page .nxglobo-shell { width: min(100% - 20px, 1160px); }
  body.nxglobo-front-page .nxglobo-site-header,
  body.nxglobo-front-page .nxglobo-site-header__inner { height: 60px !important; }
  body.nxglobo-front-page .nxglobo-site-header__inner { grid-template-columns: 1fr auto; gap: 10px; }
  body.nxglobo-front-page .nxglobo-site-header__logo img { max-height: 34px !important; }
  body.nxglobo-front-page .nxglobo-header-promo {
    width: 36px;
    min-height: 36px !important;
    padding: 0 !important;
    border-radius: 11px !important;
  }
  .nxr-slider { padding-top: 72px; padding-bottom: 13px; }
  body.admin-bar .nxr-slider { padding-top: 118px; }
  .nxr-slider__frame { aspect-ratio: 16 / 10.8; border-radius: 14px; }
  .nxr-slider__arrow { width: 32px; height: 32px; }
  .nxr-slider__arrow--prev { left: 7px; }
  .nxr-slider__arrow--next { right: 7px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip { padding-bottom: 10px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__button { min-height: 55px; padding: 7px 10px; border-radius: 13px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__icon { width: 36px; height: 36px; border-radius: 11px; font-size: 18px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__copy strong { font-size: 12px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__copy small,
  body.nxglobo-front-page .nxg6-whatsapp-strip__status { display: none; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__arrow { width: 31px; height: 31px; }
  body.nxglobo-front-page .nxg5-section,
  body.nxglobo-front-page .nxg5-home .nxglobo-section { padding: 38px 0; }
  body.nxglobo-front-page .nxg5-section-heading,
  body.nxglobo-front-page .nxglobo-section-heading { align-items: flex-end; margin-bottom: 17px; }
  body.nxglobo-front-page .nxg5-section-heading h2,
  body.nxglobo-front-page .nxglobo-section-heading h2 { font-size: 26px; }
  body.nxglobo-front-page .nxg5-section-heading > i,
  body.nxglobo-front-page .nxglobo-section-heading > i { width: 34px; height: 34px; border-radius: 10px; }
  body.nxglobo-front-page .nxg5-section-heading > a { display: none; }
  body.nxglobo-front-page .nxg5-schedule { border-radius: 13px; }
  body.nxglobo-front-page .nxg5-schedule-panels { padding: 7px; }
  body.nxglobo-front-page .nxg5-schedule-item { min-height: 84px; grid-template-columns: 73px 66px minmax(0,1fr); border-radius: 10px; }
  body.nxglobo-front-page .nxg5-schedule-item__time strong { font-size: 19px; }
  body.nxglobo-front-page .nxg5-schedule-item__content { padding: 9px 10px; }
  body.nxglobo-front-page .nxg5-schedule-item__content h3 { font-size: 13px; }
  body.nxglobo-front-page .nxg5-schedule-item__content p { font-size: 7.5px; -webkit-line-clamp: 2; }
  body.nxglobo-front-page .nxg5-news-premium { gap: 8px; }
  body.nxglobo-front-page .nxg5-news-premium-card,
  body.nxglobo-front-page .nxg5-news-premium-card--hero { min-height: 220px; }
  body.nxglobo-front-page .nxg5-news-premium-card__link { border-radius: 12px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero h3 { font-size: 23px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero p { display: none; }
  body.nxglobo-front-page .nxg5-live-grid,
  body.nxglobo-front-page .nxg5-video-grid,
  body.nxglobo-front-page .nxglobo-podcast-grid,
  body.nxglobo-front-page .nxglobo-host-grid { grid-template-columns: 1fr; }
  body.nxglobo-front-page .nxglobo-ranking-list { grid-template-columns: 1fr; }
  .nxr-promo-gallery { padding: 32px 14px 16px; }
  .nxr-promo-form-view { padding: 42px 12px 14px; }
  body.nxglobo-front-page .nxg5-footer { padding: 38px 0 152px; }
  body.nxglobo-front-page #app-super .player {
    bottom: 63px !important;
    width: calc(100vw - 14px) !important;
    min-height: 58px !important;
    border-radius: 13px !important;
  }
  body.nxglobo-front-page #app-super .player-wrapper { min-height: 58px !important; padding: 4px 7px !important; }
  body.nxglobo-front-page #app-super .player-artwork-style { width: 46px !important; height: 46px !important; }
  body.nxglobo-front-page #app-super .player-cover-title { width: calc(100vw - 150px) !important; min-width: 0 !important; }
  body.nxglobo-front-page #app-super .player-button-play { width: 40px !important; height: 40px !important; }
  body.nxglobo-front-page .nxglobo-mobile-nav { height: 58px; }
}


/* Navegación de regreso en noticias individuales */
body.single-post .nxglobo-post-home-nav {
  display: flex;
  align-items: center;
}
body.single-post .nxglobo-post-home-nav--top {
  margin: 16px 0 14px;
}
body.single-post .nxglobo-post-home-nav--bottom {
  justify-content: center;
  margin: 34px 0 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 17, 29, .09);
}
body.single-post .nxglobo-post-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(109, 37, 69, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #2a1720;
  box-shadow: 0 9px 24px rgba(53, 15, 33, .07);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .025em;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease;
}
body.single-post .nxglobo-post-home-link i {
  font-size: 11px;
  color: var(--nxr-pink);
  transition: transform .2s ease, color .2s ease;
}
body.single-post .nxglobo-post-home-link:hover,
body.single-post .nxglobo-post-home-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(209, 15, 80, .34);
  background: #fff;
  color: var(--nxr-pink);
  box-shadow: 0 13px 30px rgba(119, 15, 54, .13);
  outline: none;
}
body.single-post .nxglobo-post-home-link:hover i,
body.single-post .nxglobo-post-home-link:focus-visible i {
  transform: translateX(-2px);
  color: var(--nxr-pink-bright);
}

@media (max-width: 620px) {
  body.single-post .nxglobo-post-home-nav--top { margin: 12px 0 11px; }
  body.single-post .nxglobo-post-home-nav--bottom { margin-top: 27px; padding-top: 20px; }
  body.single-post .nxglobo-post-home-link {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 10px;
  }
}

/* =========================================================
   6.1.3 · Noticias recientes con principal rotativa
   ========================================================= */
body.nxglobo-front-page .nxg5-news-premium-card {
  position: relative;
  transition: opacity .18s ease, transform .18s ease;
}
body.nxglobo-front-page .nxg5-news-premium.is-changing .nxg5-news-premium-card {
  opacity: .34;
  transform: scale(.994);
}
body.nxglobo-front-page .nxg5-news-premium-card__content p {
  display: none;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content p,
body.nxglobo-front-page .nxg5-news-premium-card--tall .nxg5-news-premium-card__content p {
  display: -webkit-box;
}
body.nxglobo-front-page .nxg5-news-premium-card__dots {
  display: none;
  right: 12px;
  bottom: 14px;
  z-index: 5;
  flex-direction: column;
  gap: 4px;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__dots {
  display: flex;
}
body.nxglobo-front-page .nxg5-news-premium-card__dots button {
  width: 5px;
  height: 5px;
  min-width: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  box-shadow: none;
  cursor: pointer;
  transition: height .18s ease, background-color .18s ease, opacity .18s ease;
}
body.nxglobo-front-page .nxg5-news-premium-card__dots button.is-active {
  height: 16px;
  background: #fff;
}
body.nxglobo-front-page .nxg5-news-premium-card__dots button:focus-visible {
  outline: 2px solid #ff4d91;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  body.nxglobo-front-page .nxg5-news-premium-card {
    transition: none;
  }
}

/* =========================================================
   6.1.4 · Optimización móvil: slider y footer proporcionados
   ========================================================= */
@media (max-width: 620px) {
  html,
  body.nxglobo-front-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
  }

  body.nxglobo-front-page main,
  body.nxglobo-front-page .nxg5-home,
  body.nxglobo-front-page .nxg6-react-slider-root,
  body.nxglobo-front-page .nxr-slider,
  body.nxglobo-front-page .nxg5-section,
  body.nxglobo-front-page .nxglobo-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  /* El banner conserva su proporción panorámica y deja de recortarse. */
  body.nxglobo-front-page .nxr-slider {
    padding-top: 70px;
    padding-bottom: 12px;
  }
  body.admin-bar.nxglobo-front-page .nxr-slider {
    padding-top: 116px;
  }
  body.nxglobo-front-page .nxr-slider__frame {
    width: calc(100% - 20px) !important;
    max-width: 100%;
    min-height: 0 !important;
    max-height: none !important;
    height: auto;
    aspect-ratio: 1920 / 850;
    margin-inline: auto;
    border-radius: 14px;
    overflow: hidden;
  }
  body.nxglobo-front-page .nxr-slider__slide,
  body.nxglobo-front-page .nxr-slider__link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  body.nxglobo-front-page .nxr-slider__image,
  body.nxglobo-front-page .nxr-slider--fallback .nxr-slider__frame img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #08070a;
  }
  body.nxglobo-front-page .nxr-slider__arrow {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  body.nxglobo-front-page .nxr-slider__dots {
    bottom: 7px;
    gap: 5px;
    padding: 5px 8px;
  }
  body.nxglobo-front-page .nxr-slider__dots button {
    width: 5px;
    height: 5px;
  }
  body.nxglobo-front-page .nxr-slider__dots button.is-active {
    width: 18px;
  }

  /* Previene anchos heredados que pueden empujar otras secciones. */
  body.nxglobo-front-page .nxg5-schedule,
  body.nxglobo-front-page .nxg5-news-premium,
  body.nxglobo-front-page .nxg5-live-grid,
  body.nxglobo-front-page .nxg5-video-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* Footer móvil compacto: marca arriba y enlaces en dos columnas. */
  body.nxglobo-front-page .nxg5-footer {
    padding: 30px 0 132px;
  }
  body.nxglobo-front-page .nxg5-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "links info";
    column-gap: 22px;
    row-gap: 24px;
  }
  body.nxglobo-front-page .nxg5-footer__brand {
    grid-area: brand;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
    row-gap: 6px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  body.nxglobo-front-page .nxg5-footer__brand > a {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
  }
  body.nxglobo-front-page .nxg5-footer__brand img {
    width: 64px;
    height: 48px;
    object-fit: contain;
  }
  body.nxglobo-front-page .nxg5-footer__brand p {
    margin: 0;
    font-size: 9px;
    line-height: 1.45;
  }
  body.nxglobo-front-page .nxg5-footer__socials {
    margin-top: 0;
    gap: 7px;
  }
  body.nxglobo-front-page .nxg5-footer__socials a {
    width: 29px;
    height: 29px;
    font-size: 10px;
  }
  body.nxglobo-front-page .nxg5-footer__column {
    gap: 9px;
    min-width: 0;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2) {
    grid-area: links;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) {
    grid-area: info;
  }
  body.nxglobo-front-page .nxg5-footer__column:last-child {
    display: none;
  }
  body.nxglobo-front-page .nxg5-footer__column > strong {
    margin-bottom: 3px;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: .09em;
  }
  body.nxglobo-front-page .nxg5-footer__column > a {
    font-size: 9px;
    line-height: 1.35;
  }
  body.nxglobo-front-page .nxg5-footer__copyright {
    width: calc(100% - 28px);
    margin: 24px auto 0;
    padding-top: 16px;
    font-size: 7.5px;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  body.nxglobo-front-page .nxr-slider__frame {
    width: calc(100% - 16px) !important;
    border-radius: 12px;
  }
  body.nxglobo-front-page .nxg5-footer__grid {
    column-gap: 16px;
  }
  body.nxglobo-front-page .nxg5-footer__brand {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 11px;
  }
  body.nxglobo-front-page .nxg5-footer__brand img {
    width: 56px;
    height: 43px;
  }
}

/* ========================================================================
   6.1.5 · Menú móvil funcional y alineación fina del footer
   ======================================================================== */
body.nxglobo-front-page .nxglobo-front-offcanvas {
  width: min(88vw, 350px);
  max-width: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255,47,123,.14), transparent 32%),
    #0a080c;
  border-left: 1px solid rgba(255,255,255,.08);
  box-shadow: -24px 0 70px rgba(0,0,0,.52);
  color: #fff;
}
body.nxglobo-front-page .nxglobo-front-offcanvas[aria-hidden="false"] { visibility: visible; }
body.nxglobo-front-page .nxglobo-front-offcanvas__header {
  min-height: 76px;
  padding: 14px 18px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
body.nxglobo-front-page .nxglobo-front-offcanvas__logo {
  display: inline-flex;
  align-items: center;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__logo img {
  width: 72px;
  height: 46px;
  max-width: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
body.nxglobo-front-page .nxglobo-front-offcanvas .offcanvas-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 13px;
  background: rgba(255,255,255,.045);
  color: #fff;
  font-size: 17px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__body {
  flex: 1 1 auto;
  padding: 28px 18px 20px;
  overflow-y: auto;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__eyebrow {
  display: block;
  margin: 0 8px 13px;
  color: var(--nxr-pink-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu {
  padding: 0;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu ul {
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu li { margin: 0; }
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a {
  width: 100%;
  min-height: 54px;
  height: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.88) !important;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a > span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a > span i {
  width: 19px;
  color: var(--nxr-pink-bright);
  font-size: 14px;
  text-align: center;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a > i {
  color: rgba(255,255,255,.28);
  font-size: 10px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a:hover,
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a:focus-visible {
  padding: 0 15px;
  transform: translateX(-2px);
  border-color: rgba(255,47,123,.42);
  border-radius: 16px;
  background: rgba(255,47,123,.10);
  color: #fff !important;
  outline: none;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__footer {
  flex: 0 0 auto;
  padding: 18px 22px max(22px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.16);
}
body.nxglobo-front-page .nxglobo-front-offcanvas__footer p {
  margin: 0 0 13px;
  color: rgba(255,255,255,.56);
  font-size: 10px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: #fff;
  font-size: 11px;
}
body.nxglobo-front-page .offcanvas-overlay { backdrop-filter: blur(4px); }

@media (max-width: 760px) {
  /* Marca y redes centradas; columnas del menú con la misma línea de inicio. */
  body.nxglobo-front-page .nxg5-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "links info";
    column-gap: 28px;
    row-gap: 25px;
  }
  body.nxglobo-front-page .nxg5-footer__brand {
    grid-area: brand;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 21px;
    text-align: center;
  }
  body.nxglobo-front-page .nxg5-footer__brand > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.nxglobo-front-page .nxg5-footer__brand img {
    width: 72px;
    height: 52px;
  }
  body.nxglobo-front-page .nxg5-footer__brand p {
    margin: 0;
    text-align: center;
  }
  body.nxglobo-front-page .nxg5-footer__socials {
    width: 100%;
    margin: 2px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }
  body.nxglobo-front-page .nxg5-footer__socials a {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2),
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) {
    width: 100%;
    align-items: flex-start;
    padding-inline: 4px;
    text-align: left;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2) { grid-area: links; }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) { grid-area: info; }
  body.nxglobo-front-page .nxg5-footer__column > strong,
  body.nxglobo-front-page .nxg5-footer__column > a {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 380px) {
  body.nxglobo-front-page .nxg5-footer__grid { column-gap: 19px; }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2),
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) { padding-inline: 0; }
}


/* ========================================================================
   6.1.6 · Alineación fina footer móvil y navegación inferior
   ======================================================================== */
@media (max-width: 760px) {
  body.nxglobo-front-page .nxglobo-mobile-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
    padding-inline: 6px;
  }
  body.nxglobo-front-page .nxglobo-mobile-nav a {
    width: 100%;
    padding-inline: 0;
  }
  body.nxglobo-front-page .nxglobo-mobile-nav a span {
    width: 100%;
    text-align: center;
  }

  body.nxglobo-front-page .nxg5-footer__grid {
    width: min(100%, 360px);
    margin-inline: auto;
    column-gap: 18px;
    row-gap: 24px;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2),
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) {
    width: min(100%, 148px);
    justify-self: center;
    padding-inline: 0;
    align-self: start;
  }
  body.nxglobo-front-page .nxg5-footer__column > strong {
    min-height: 1.2em;
  }
}

@media (max-width: 420px) {
  body.nxglobo-front-page .nxg5-footer__grid {
    width: calc(100% - 36px);
    max-width: 340px;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2),
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) {
    width: min(100%, 136px);
  }
}

/* ========================================================================
   6.1.7 · Hamburguesa reversible y respuesta visible del formulario
   ======================================================================== */
body.nxglobo-front-page .nxglobo-menu-button {
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
body.nxglobo-front-page .nxglobo-menu-button.is-open {
  border-color: rgba(255,47,123,.56);
  background: rgba(255,47,123,.14);
  box-shadow: 0 0 0 4px rgba(255,47,123,.08);
}
body.nxglobo-front-page .nxglobo-menu-button.is-open i { transform: rotate(90deg); }

.nxr-promo-status {
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  outline: none;
}
.nxr-promo-status > i {
  flex: 0 0 auto;
  font-size: 23px;
}
.nxr-promo-status__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nxr-promo-status__copy strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}
.nxr-promo-status__copy span {
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.42;
}
.nxr-promo-status.is-success {
  border-color: rgba(116,255,175,.42);
  background: linear-gradient(135deg, #087a3f, #0fa85a);
  color: #fff;
}
.nxr-promo-status.is-error {
  border-color: rgba(255,142,157,.44);
  background: linear-gradient(135deg, #a7152d, #d52b47);
  color: #fff;
}

@media (max-width: 760px) {
  .nxr-promo-status {
    min-height: 64px;
    padding: 13px 14px;
    border-radius: 12px;
  }
  .nxr-promo-status > i { font-size: 21px; }
  .nxr-promo-status__copy strong { font-size: 13px; }
  .nxr-promo-status__copy span { font-size: 10px; }
}
