/* =========================
   MINI TAILWIND GLOBAL
========================= */

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto { margin-left: auto; }

.bg-background { background: var(--background, #fff); }
.bg-transparent { background: transparent; }

.border-none { border: none; }
.cursor-pointer { cursor: pointer; }

.p-0 { padding: 0; }

.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }

.shrink-0 { flex-shrink: 0; }
.whitespace-nowrap { white-space: nowrap; }
.uppercase { text-transform: uppercase; }




/* UTILITY CLASSES */

.flex-reverse {
    flex-wrap: wrap-reverse;
}





/* =========================
   HOME HEADER REDESIGN
========================= */


.home-redesign {
  --background: #ffffff;
  --foreground: #000000;
  --border: #dddddd;

  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

.lp-header-section {
  position: relative;
  top: 0;
  z-index: 1000;
  background: var(--background);
}

.lp-header-mobile {
  border-bottom: 1px solid var(--border);
}

.lp-header-mobile-inner {
  height: 60px;
  padding-left: 14px;
  padding-right: 14px;
}

.lp-header-logo-mobile {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lp-header-desktop {
  padding-top: 16px;
}

.lp-header-desktop-inner {
  max-width: 1200px;
  height: 62px;
}

.lp-header-logo-desktop {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfil-button {
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
}

.search-header a {
  display: flex;
  align-items: center;
}

.card-icon-mobile {
    display: none;
}

.card-icon-mobile.is-visible {
    display: inline-flex;
}


.perfil-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 240px;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 1001;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}



/* EVOLOK BUTTONS */

.lp-homepage-new .lp-header-evolok-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-homepage-new .lp-header-evolok-profile ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-homepage-new .lp-header-evolok-profile li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-homepage-new .lp-header-evolok-profile a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
}

.lp-homepage-new .lp-header-evolok-profile .ev-link-login,
.lp-homepage-new .lp-header-evolok-profile .ev-link-profile {
  border: 1px solid #d4d4d4;
  background: #fff;
  color: #555;
}

.lp-homepage-new .lp-header-evolok-profile a.red {
  border: 1px solid #e12248;
  background: #e12248 !important;
  color: #fff !important;
}

.lp-homepage-new .lp-header-evolok-profile .ev-link-loginNew a,
.lp-homepage-new .lp-header-evolok-profile .ev-link-profile {
  border: 1px solid #d4d4d4;
  background: #fff;
  color: #555;
}

/* USER ICON OCULTO */

.lp-homepage-new .lp-new-header-user-icon {
    display: none;
    align-items: center;
}

.lp-homepage-new .lp-new-header-user-icon.active {
    display: inline-flex;
}

/* Botón Inicia Sesión / Perfil */
.lp-homepage-new .lp-header-evolok-profile .ev-link-loginNew a:hover,
.lp-homepage-new .lp-header-evolok-profile .ev-link-profile:hover {
    background-color: #e12248;
    color: #fff;
    border: 1px solid transparent;
}

/* Botón Suscríbete */
.lp-homepage-new .lp-header-evolok-profile .ev-button-suscribase-new a:hover {
    opacity: 0.9;
}

/* ------------ */



.lp-menu-bar {
  height: 42px;
  /* border-bottom: 1px solid #ddd; */
}

.top-menu-socials a,
.top-menu-apps a,
.top-menu-apps button {
  cursor: pointer;
}

.lp-menu-bar-inner {
  max-width: 1200px;
  height: 100%;
  gap: 21px;
  border-top: 1px solid #E12248;
}

.lp-menu-bar button,
.lp-menu-bar a {
  height: 100%;
}

.lp-menu-bar button span,
.lp-menu-bar a span {
  font-weight: 700;
  font-size: 12px;
  color: var(--foreground);
  white-space: nowrap;
}

.lp-menu-bar a {
  color: inherit;
  text-decoration: none;
}

.menu-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #000;
}

.desktop-menu-dropdown {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.desktop-menu-placeholder {
  width: 100%;
  height: 690px;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  padding: 24px;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82vw;
  max-width: 320px;
  z-index: 1001;
  background: #fff;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
  z-index: 9999999;
}

.mobile-menu-drawer-header {
  padding: 16px;
  border-bottom: 1px solid #eaeaea;
}

.mobile-menu-section {
  border-bottom: 1px solid #eaeaea;
}

.mobile-menu-section-button {
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-section-button span {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.mobile-menu-section-content {
  border-left: 2px solid #ddd;
  margin-left: 16px;
  padding-left: 14px;
  padding-bottom: 16px;
}

.mobile-menu-section-content a {
  padding: 8px 0;
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #444;
  display: block;
  text-decoration: none;
}

.temas-bar {
  min-height: 40px;
}

.temas-bar-inner {
  max-width: 1200px;
  min-height: 40px;
  border-top: 1px solid #dddddd;
  gap: 20px;
}

.temas-title {
  font-weight: 700;
  font-size: 11.2px;
  color: #E12248;
}

/* =========================
   TEMAS DE HOY
========================= */

.temas-bar {
  width: 100%;
  min-height: 40px;
  background: var(--background, #fff);
}

.temas-bar-inner {
  width: 100%;
  max-width: 1200px;
  min-height: 40px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  border-top: 1px solid #dddddd;
}

.temas-title {
  flex-shrink: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 11.2px;
  font-weight: 700;
  line-height: 1;
  color: #e12248;
  text-transform: uppercase;
  white-space: nowrap;
}

.temas-bar a,
.temas-bar button,
.temas-bar span.tema-item {
  margin: 0;
  padding: 0;

  border: 0;
  background: transparent;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 11.2px;
  font-weight: 400;
  line-height: 1;
  color: var(--foreground, #000);

  text-decoration: none;
  white-space: nowrap;
}

.temas-bar a,
.temas-bar button {
  cursor: pointer;
}

.temas-bar a:hover,
.temas-bar button:hover {
  color: #e12248;
  text-decoration: underline;
}


.lp-logo-svg {
  width: 300px;
  height: auto;
  display: block;
}

.lp-header-logo-mobile {
  left: 50%;
  /* transform: translateX(-50%); */
  width: 180px;
}


/* Mobile */
@media (max-width: 989px) {
  .lp-logo-svg {
    width: 160px;
  }

  .lp-header-logo-mobile {
    width: 160px;
  }
}


/* HEADER SKELETON */
.lp-header-skeleton {
    display: flex;
    gap: 10px;
}

.lp-skeleton-button {
    width: 95px;
    height: 32px;
    border-radius: 6px;
    background: #ececec;
    animation: lpSkeleton 1.2s infinite;
}

.lp-skeleton-red {
    width: 110px;
}

@keyframes lpSkeleton {
    0% {
        opacity: .5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: .5;
    }
}

/* =========================
   CSS PROPIO SIN TAILWIND
========================= */

.top-menu-real {
  width: 100%;
}

.top-menu-real-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 16px;
}

.top-menu-grid {
  display: grid;
  grid-template-columns: 210px 210px 210px 210px 250px;
  gap: 26px;
  align-items: start;
  justify-content: center;
}

.top-menu-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.top-menu-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8e8e8;
}

.top-menu-heading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background: #e12248;
}

.top-menu-heading-icon {
  color: #e12248;
  font-size: 10px;
}

.top-menu-heading h3 {
  font-family: 'Open Sans';
  margin: 0;
  font-size: 12px;
  color: #777;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.top-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.top-menu-list a {
  padding: 5px 0;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.top-menu-list a.is-main {
  padding-top: 7px;
  padding-bottom: 7px;
}

.top-menu-subgroup {
  margin-top: 10px;
}

.top-menu-subgroup h4 {
  font-family: 'Open Sans';

  margin: 0 0 4px;
  font-size: 11px;
  color: #777;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.top-menu-exclusive {
  min-height: 481px;
  padding: 21px;
  background: #faf7f8;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}

.top-menu-exclusive-title {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid #e12248;
}

.top-menu-exclusive-title span {
  color: #e12248;
}

.top-menu-exclusive-title h3 {
  margin: 0;
  font-size: 12px;
  font-family: 'Open Sans';
  color: #e12248;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.top-menu-exclusive a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: none;
}


span.top-menu-exclusive-icon {
    padding-right: 5px;
}


.top-menu-bottom {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.top-menu-bottom h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  color: #777;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: 'Open Sans';
}

.top-menu-socials span {
  width: 42px;
  height: 42px;
}

.top-menu-socials {
  display: flex;
  gap: 10px;
}

.top-menu-socials a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: #f5f5f5;
  border-radius: 50%;

  text-decoration: none;
}

.top-menu-socials a svg {
  display: block;
}

.top-menu-socials a:hover {
  background: #eeeeee;
}

.top-menu-apps {
  display: flex;
  gap: 8px;
}

.top-menu-apps button {
  height: 30px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #777;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  font-weight: 700;
}




/*  LO ÚLTIMO */
.lo-ultimo {
  width: 280px;
  padding-top: 30px;
}

.lo-ultimo-header {
  width: 104px;
  height: 26px;
  margin-bottom: 10px;
  background: #e12248;

  display: flex;
  align-items: center;
  justify-content: center;
}

.lo-ultimo-header-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.lo-ultimo-item {
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding-top: 20px;
  padding-bottom: 20px;
}

.lo-ultimo-item-border {
  border-bottom: 1px solid #eaeaea;
}

.lo-ultimo-category,
.lo-ultimo-description,
.lo-ultimo-author {
  margin: 0;
}

.lo-ultimo-category {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: -0.5px;
}

.lo-ultimo-description {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #555555;
}

.lo-ultimo-author {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: -0.5px;
  color: #999999;
}

.lo-ultimo-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lo-ultimo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lo-ultimo-mobile-only {
  display: none;
}

.lo-ultimo-item .lo-ultimo-headline {
  color: #000;
  text-decoration: none;
}

.lo-ultimo-item .lo-ultimo-headline:hover {
  color: #e12248;
  text-decoration: underline;
}

/* efecto de imagen */
.terraza-principal .lo-ultimo-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.terraza-principal .lo-ultimo-image-wrapper > a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.terraza-principal .lo-ultimo-image-wrapper .lo-ultimo-image {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1) !important;
    transition: transform 0.4s ease !important;
    will-change: transform;
}


.lo-ultimo .story-box-author-gray, .story-box-author-gray a {
    text-transform: capitalize !important;
}

/* Dispositivos con mouse */
.terraza-principal .lo-ultimo-image-wrapper > a:hover .lo-ultimo-image {
    transform: scale(1.08) !important;
}

/* Dispositivos táctiles */
.terraza-principal .lo-ultimo-image-wrapper > a:active .lo-ultimo-image {
    transform: scale(1.08) !important;
}

@media (max-width: 769px) {

  article.lo-ultimo-item:first-of-type {
    padding-top: 0;
  }

  .lo-ultimo {
    width: 100%;
    padding-top: 0px;
  }

  .lo-ultimo-mobile-only {
    display: block;
  }
}

/* =====================================================
   NUEVO REDISEÑO HOME
   Bootstrap conserva los anchos y breakpoints.
   Nosotros controlamos los espacios.
   ===================================================== */

.terraza-principal .terraza-layout-row,
.terraza-principal .terraza-title-row,
.terraza-principal .terraza-content-row {
  margin-left: 0;
  margin-right: 0;
}

/* Columna principal externa: sin gutter de Bootstrap */
.terraza-principal .terraza-main-column {
  padding-left: 0;
  padding-right: 0;
}

/* Base de las columnas internas */
.terraza-principal .terraza-column {
  box-sizing: border-box;
}

/* Izquierda:
   0 hacia el borde exterior
   25px hacia el centro */
.terraza-principal .terraza-column-left {
  padding-left: 0;
  padding-right: 25px;
}

/* Centro:
   25px por ambos lados */
.terraza-principal .terraza-column-center {
  padding-left: 25px;
  padding-right: 25px;
}

/* Derecha externa:
   25px hacia el centro
   0 hacia el borde exterior */
.terraza-principal .terraza-side-column {
  padding-left: 25px;
  padding-right: 0;
}

/* Evita sumar padding dentro de la columna derecha */
.terraza-principal .terraza-column-right {
  padding-left: 0;
  padding-right: 0;
}

/* test */

.terraza-principal {
  /* outline: 5px solid red !important; */
}

.terraza-principal .terraza-column-left {
  padding-left: 0 !important;
  padding-right: 25px !important;
  /* background: rgba(255, 0, 0, 0.15) !important; */
}

.terraza-principal .terraza-column-center {
  padding-left: 25px !important;
  padding-right: 25px !important;
  /* background: rgba(0, 0, 255, 0.15) !important; */
}

.terraza-principal .terraza-side-column {
  padding-left: 25px !important;
  padding-right: 0 !important;
  /* background: rgba(0, 255, 0, 0.15) !important; */
}

.terraza-principal .terraza-column-right {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* RESET  */

@media (max-width: 989px) {
  .terraza-principal .terraza-main-column,
  .terraza-principal .terraza-side-column,
  .terraza-principal .terraza-column-left,
  .terraza-principal .terraza-column-center,
  .terraza-principal .terraza-column-right {
  padding-left: 0 !important;
    padding-right: 0 !important;
  }

   /* El margen móvil lo controla una sola vez la terraza */
  .lp-homepage-new main {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* fix padding in mobile */
  .story-mobile-content {
        padding-left: 0px;
  }

}


/* OVERRIDE */

/* REMUEVE ANIMACION DE FLASHEO EN FOTOS - SOLO EN TERRAZA PRINCIPAL */
.terraza-principal .story-box:hover img {
    animation: none !important;
}

.terraza-principal.destacado-1.story-box figure video, .destacado-1.story-box figure img {
    height: inherit;
}

  .terraza-principal .destacado-1.story-box.large {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }


.terraza-principal .story-box figure img,
.terraza-principal .lo-ultimo-image {
    filter: none !important;
    animation: none !important;
    opacity: 1 !important;
}

/* QUITA KICKER (TRANSMISIÓN) EN TERRAZA PRINCIPAL */
.terraza-principal .image-title-and-author.directo .kicker-in-direct {
    display: none;
}

/* QUITA TIEMPO DE LECTURA - EJEMPLO 1 MIN */
.terraza-principal .destacado-1 span.story-box-read-time {
  display: none;
}
.terraza-principal .image-title-and-author span.story-box-read-time {
  display: none;
}

/* Autor capitalizado */
.terraza-principal article.story-box .story-box-author-gray a {
    color: inherit;
    text-transform: capitalize;
    transition: color 0.2s ease;
}

/* Hover del autor */
.terraza-principal article.story-box .story-box-author-gray a:hover {
    color: #E12248;
    text-decoration: underline;
}

/*  NOTICIAS RELACIONADAS */

.relacionadas-desktop {
  display: flex;
}

.relacionadas-mobile {
  display: none;
}

.relacionadas-mobile-link:hover {
  color: #e12248 !important;
  text-decoration: underline !important;
}

section.relacionadas-wrapper a:hover {
    color: #e12248 !important;
}

@media (max-width: 989px) {
  .relacionadas-desktop {
    display: none !important;
  }

  .relacionadas-mobile {
    display: flex !important;
  }

  .relacionadas-title {
    display: block !important;
  }
}


/* ARC SEPARATOR */

.arc-separator {
  display: none;
  width: 100%;
  box-sizing: border-box;
}

.arc-separator__line {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

/* Desktop */
@media (min-width: 990px) {
  .arc-separator--desktop {
    display: block;
  }
}

/* Móvil y tablet */
@media (max-width: 989px) {
  .arc-separator--mobile {
    display: block;
  }
}

/* ==========================================================
   OVERRIDE FORMATO DESTACADO - NUEVA PANTILLA - TERRAZA PRINCIPAL
   ========================================================== */

   /* TÍTULO */
  .lp-homepage-new .destacado-1 h2 {
    margin-top: 4px;
    font-size: 32px !important;
    line-height: 1.35;
  }

  /* DESCRIPCIÓN */
  .lp-homepage-new .destacado-1 span.story-box-lead {
    font-weight: 500;
    font-size: 16px;
    color: rgb(85, 85, 85);
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* CAPTION */
  .terraza-principal .destacado-1.story-box.large figcaption {
    font-size: 12px;
    color: rgb(153, 153, 153);
    line-height: normal;
  }

/* ==========================================================
   OVERRIDE FORMATO IMAGE-TITLE-AND-AUTHOR - NUEVA PANTILLA - TERRAZA PRINCIPAL
   ========================================================== */

  
  .lp-homepage-new .image-title-and-author h2 {
    font-weight: 700;
    font-size: 18px;
    color: var(--foreground);
    text-decoration: none;
    line-height: 22px;
    cursor: pointer;
    display: block; 
    margin-top: 8px;
  }

/* ==========================================================
   OVERRIDE VIDEO ICON - TERRAZA PRINCIPAL
   ========================================================== */

/* Evita que el enlace recorte la imagen a 120px */
.terraza-principal .story-box figure > a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: hidden;
}

/* Imagen completa y proporcional */
.terraza-principal .story-box figure > a > img {
    display: block;
    width: 100%;
    height: 360px;
    max-height: none;
    object-fit: cover;
}

/* Nuevo contenedor del icono */
.terraza-principal .story-box-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;

    width: 128px !important;
    height: 128px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translate(-50%, -50%);

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;

    display: block !important;
    z-index: 20;
    pointer-events: none;
}

/* Oculta el icono anterior */
.terraza-principal .story-box-icon .icon,
.terraza-principal .story-box-icon .icon::before {
    display: none !important;
    content: none !important;
}

/* Nuevo PNG */
.terraza-principal .story-box-icon::after {
    content: "";
    display: block;
    width: 128px;
    height: 128px;

    background-image: url("https://multimedia.corprensa.com/la-prensa/assets/play-icon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    filter: grayscale(100%) invert(25%) opacity(0.55)
}


/* EN DIRECTO DESTACADO TERRAZA PRINCIPAL */

article.story-box.image-title-and-author.story-mobile-layout.directo
{
    border-radius: 8px;
    overflow: hidden;
}

.terraza-principal .story-box.directo figure > a{
    position:relative;
    display:block;
}

/* Banda EN DIRECTO */
.terraza-principal .story-box.directo figure > a::before {
    content: "EN DIRECTO";
    position: absolute;
    left: 0;
    bottom: 0;

    background: #E12248;
    color: #fff;

    padding: 8px 14px 8px 28px;

    font: 700 14px "Open Sans", sans-serif;
    text-transform: uppercase;
    line-height: 1;

    z-index: 50;
}

/* Punto blanco */
.terraza-principal .story-box.directo figure > a::after {
    content: "";

    position: absolute;

    left: 12px;
    bottom: 12px;

    width: 8px;
    height: 8px;

    background: #fff;
    border-radius: 50%;

    z-index: 51;

    animation: livePulse 1.2s ease-in-out infinite;
}

@keyframes livePulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }

    100% {
        opacity: 1;
    }
}


/* La imagen */
.terraza-principal .story-box figure img {
    display: block;
    width: 100%;
    height: auto;

    transform: scale(1);
    transition: transform .4s ease;
}

/* Zoom al pasar el mouse */
.terraza-principal .story-box:hover figure img {
    transform: scale(1.05);
}

.terraza-principal .story-box figure {
    overflow: hidden;
}

/* =========================================
   EN DIRECTO - IMAGE TITLE AND AUTHOR
   ========================================= */

/* El enlace que contiene la imagen será la referencia */
.terraza-principal
article.image-title-and-author.directo
> a.stories-elements {
    position: relative;
    display: block;
    overflow: hidden;
}

/* Asegura que el figure no agregue espacios */
.terraza-principal
article.image-title-and-author.directo
> a.stories-elements
.figure-story-box {
    position: relative;
    display: block;
    margin: 0;
}

/* Banda EN DIRECTO */
.terraza-principal
article.image-title-and-author.directo
> a.stories-elements::before {
    content: "EN DIRECTO";

    position: absolute;
    left: 0;
    bottom: 0;

    display: flex;
    align-items: center;

    min-height: 30px;
    padding: 8px 14px 8px 28px;

    background-color: #e12248;
    color: #fff;

    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    z-index: 20;
}

/* Bolita blanca animada */
.terraza-principal
article.image-title-and-author.directo
> a.stories-elements::after {
    content: "";

    position: absolute;
    left: 12px;
    bottom: 11px;

    width: 8px;
    height: 8px;

    background-color: #fff;
    border-radius: 50%;

    animation: livePulse 1.2s ease-in-out infinite;

    z-index: 21;
}

/* Ocultar la etiqueta TRANSMISIÓN actual */
.terraza-principal
article.image-title-and-author.directo
.kicker-in-direct {
    display: none;
}

/* Animación de la bolita */
@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}


/* DEBES SABER */

.debes-saber-headline {
  color: var(--foreground, #000);
  text-decoration: none;
}

.debes-saber-headline:hover {
  color: #e12248 !important;
  text-decoration: underline;
}


/* PODCAST WIDGET */

.lp-homepage-new .podcast-feed {  
  max-width: 1200px;
  margin: 0 auto;
}

/* Título de podcast dentro de la nueva portada */
.lp-homepage-new h3.heading.podcast-title {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 26px !important;

    margin: 0 auto 15px auto;
    padding: 0 !important;

    border: 0 !important;
    border-bottom: 0 !important;

    font-family: "Open Sans", sans-serif !important;
    font-size: 14px !important;
    line-height: 26px !important;
    text-transform: uppercase !important;
    max-width: 1200px;
  
}

.lp-homepage-new h3.heading.podcast-title::before,
.lp-homepage-new h3.heading.podcast-title::after {
    content: "";
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background-color: #ddd;
}

.lp-homepage-new h3.heading.podcast-title > a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 202px !important;
    height: 26px !important;

    margin: 0 !important;
    padding: 0 !important;

    background-color: #000 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.lp-homepage-new h3.heading.podcast-title > a > span {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-bottom: 0 !important;

    color: #fff !important;
    background: transparent !important;

    font-family: "Open Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 26px !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
}

.lp-homepage-new .podcast-thumb {
    overflow: hidden;
}

.lp-homepage-new .podcast-thumb img {
    display: block;
    width: 100%;
    height: auto;

    animation: none !important;
    filter: none !important;
    opacity: 1 !important;

    transform: scale(1);
    transition: transform .4s ease;
}

.lp-homepage-new .podcast-thumb:hover img,
.lp-homepage-new .podcast-thumb:active img {
    transform: scale(1.05);
}


/* EXCLUSIVO */
/* Solo para la plantilla lp-homepage-new */
.lp-homepage-new .kicker-container .exclusive,
.lp-homepage-new .kicker-container a.exclusive {
    width: 71px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    background: #BE924C;
    color: #fff;

    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
}

/* Elimina el punto rojo */
.lp-homepage-new .kicker-container .exclusive::before,
.lp-homepage-new .kicker-container a.exclusive::before {
    content: none;
    display: none;
}








/* ==========================================================
   APERTURA URGENTE NEW
   ========================================================== */


 /* SOBRE ESCRIBIR ICONO DEL VIDEO */

/* ==========================================================
   NUEVO ÍCONO DE VIDEO - APERTURA URGENTE NEW
   ========================================================== */

.apertura-urgente-new__image-wrapper {
  position: relative;
}

.lp-homepage-new
.apertura-urgente-new
.apertura-urgente-new__video-icon {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;

  width: 128px !important;
  height: 128px !important;

  margin: 0 !important;
  padding: 0 !important;

  transform: translate(-50%, -50%) !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;

  display: block !important;
  z-index: 20;
  pointer-events: none;
}

/* Oculta el icono anterior */
.lp-homepage-new
.apertura-urgente-new
.apertura-urgente-new__video-icon
.icon,
.lp-homepage-new
.apertura-urgente-new
.apertura-urgente-new__video-icon
.icon::before {
  display: none !important;
  content: none !important;
}

/* Nuevo icono */
.lp-homepage-new
.apertura-urgente-new
.apertura-urgente-new__video-icon::after {
  content: "";
  display: block;

  width: 128px;
  height: 128px;

  background-image: url("https://multimedia.corprensa.com/la-prensa/assets/play-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  filter: grayscale(100%) invert(25%) opacity(0.55);
}

@media (max-width: 989px) {
  .lp-homepage-new
  .apertura-urgente-new
  .apertura-urgente-new__video-icon,
  .lp-homepage-new
  .apertura-urgente-new
  .apertura-urgente-new__video-icon::after {
    width: 80px !important;
    height: 80px !important;
  }
}
  
  
.apertura-urgente-new__image-wrapper {
  position: relative;
}


.lp-homepage-new .apertura-urgente-new h2 a {
    font-weight: 700;
    font-size: 38px;
    color: #FFFFFF;
    line-height: 44px;
    cursor: pointer;
    display: block;
}

.lp-homepage-new .apertura-urgente-new {
  padding: 0;
}

.apertura-urgente-new {
  position: relative;
  width: 100%;
  background-color: #000;
  box-sizing: border-box;
}

.apertura-urgente-new *,
.apertura-urgente-new *::before,
.apertura-urgente-new *::after {
  box-sizing: border-box;
}

.apertura-urgente-new__container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

/* ==========================================================
   IMAGEN
   ========================================================== */

.apertura-urgente-new__media {
  width: 565px;
  padding-top: 29px;
  padding-right: 25px;
  padding-bottom: 29px;
  flex-shrink: 0;
}

.apertura-urgente-new__image-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.apertura-urgente-new__image-wrapper {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.apertura-urgente-new__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 1 !important;
  filter: none !important;
  animation: none !important;

  transform: scale(1);
  transition: transform 0.4s ease;
  will-change: transform;
}

.apertura-urgente-new__image-link:hover
  .apertura-urgente-new__image {
  transform: scale(1.05);
}

.apertura-urgente-new__caption {
  width: 100%;
  margin-top: 4px;

  overflow: hidden;
  color: #777;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================
   CONTENIDO
   ========================================================== */

.apertura-urgente-new__content {
  display: flex;
  min-width: 0;
  padding-top: 29px;
  padding-bottom: 29px;
  padding-left: 25px;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================
   ETIQUETA EN VIVO
   ========================================================== */

.apertura-urgente-new__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;

  width: fit-content;
  min-height: 20px;
  padding: 0 10px 0 6px;
  gap: 6px;

  background-color: #e12248;
  white-space: nowrap;
}

.apertura-urgente-new__badge-dot {
  display: block;
  width: 9px;
  height: 9px;

  flex-shrink: 0;

  background-color: #fff;
  border-radius: 50%;

  animation: aperturaUrgenteNewPulse 1.2s ease-in-out infinite;
}

.apertura-urgente-new__badge-text {
  display: block;

  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes aperturaUrgenteNewPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

/* ==========================================================
   TIEMPO
   ========================================================== */

.apertura-urgente-new__time {
  margin: 0;

  color: #555;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: -0.5px;
}

/* ==========================================================
   TITULAR
   ========================================================== */

.apertura-urgente-new__headline {
  margin: 0;
  padding: 0;

  font-family: "Merriweather", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.apertura-urgente-new__headline-link {
  display: block;
  color: #fff;
  text-decoration: none;
}

.lp-homepage-new .apertura-urgente-new h2 a:hover {
  color: #e12248;
  text-decoration: underline;
}

/* ==========================================================
   DESCRIPCIÓN Y AUTOR
   ========================================================== */

.apertura-urgente-new__description {
  margin: 0;

  color: #ccc;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.apertura-urgente-new__author {
  margin: 0;

  color: #999;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: -0.5px;
}

/* ==========================================================
   NOTICIAS RELACIONADAS
   ========================================================== */

.apertura-urgente-new__related {
  width: 100%;
  padding-top: 10px;
}

.apertura-urgente-new__related-divider {
  width: 100%;
  height: 1px;
  background-color: #555;
}

.apertura-urgente-new__related-list {
  display: flex;
  width: 100%;
  padding-top: 20px;
  align-items: flex-start;
  gap: 10px;
}

.apertura-urgente-new__related-item {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;

  align-items: flex-start;
  flex: 1;
  gap: 10px;
}

.apertura-urgente-new__related-separator {
  position: relative;
  width: 3px;
  height: 50px;
  flex-shrink: 0;
}

.apertura-urgente-new__related-separator-top {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  width: 2px;
  height: 16px;

  background-color: #555;
}

.apertura-urgente-new__related-separator-line {
  position: absolute;
  top: 0;
  left: 2px;

  display: block;
  width: 1px;
  height: 50px;

  background-color: #555;
}

.apertura-urgente-new__related-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 6px;
}

.apertura-urgente-new__related-time {
  margin: 0;

  color: #555;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: -0.5px;
}

.apertura-urgente-new__related-link {
  display: block;

  color: #999;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
}

/* .apertura-urgente-new__related-link:hover {
  color: #fff;
  text-decoration: underline;
} */

/* ==========================================================
   TABLET Y MÓVIL
   ========================================================== */

@media (max-width: 989px) {
  .apertura-urgente-new {
    margin-right: -15px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }

  .apertura-urgente-new__container {
    display: flex;
    flex-direction: column;
  }

  .apertura-urgente-new__media {
    width: 100%;
    padding: 0;
  }

  .apertura-urgente-new__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .apertura-urgente-new__caption {
    padding-right: 15px;
    padding-left: 15px;
  }

  .apertura-urgente-new__content {
    width: 100%;
    padding: 20px 15px 25px;
    gap: 10px;
  }

  .apertura-urgente-new__headline {
    font-size: 30px;
    line-height: 1.25;
  }

  .apertura-urgente-new__description {
    font-size: 16px;
    line-height: 1.45;
  }

  .apertura-urgente-new__related-list {
    flex-direction: column;
    gap: 18px;
  }

  .apertura-urgente-new__related-item {
    width: 100%;
  }

  .apertura-urgente-new__related-separator {
    height: 46px;
  }

  .apertura-urgente-new__related-separator-line {
    height: 46px;
  }

  .apertura-urgente-new__related-link {
    font-size: 14px;
    line-height: 19px;
  }
}

/* ==========================================================
   MÓVILES PEQUEÑOS
   ========================================================== */

@media (max-width: 480px) {

  .lp-homepage-new .apertura-urgente-new h2 a {
    font-size: 18px;
    line-height: 22px;
}

  .apertura-urgente-new__badge {
    max-width: 100%;
    white-space: normal;
  }

  .apertura-urgente-new__badge-text {
    line-height: 13px;
  }

  .apertura-urgente-new__headline {
    font-size: 27px;
  }

  .apertura-urgente-new__description {
    font-size: 15px;
  }
}


/* COMPONENTE DE SALUDO EN MOBILE - GREETING BAR */

.lp-homepage-new .evolok-mobile-greeting {
  display: none;
}

@media (max-width: 989px) {
  .lp-homepage-new .evolok-mobile-greeting.is-visible {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .lp-homepage-new .evolok-mobile-greeting-text {
    display: block;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #777;
    text-align: center;
  }
}


/*  BANNER */

.lp-homepage-new .height-bantop-fijo {
    background: #efefef;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 0;
    padding-bottom: 10px;
    height: 122px;
}

@media screen and (max-width: 480px) {
    .lp-homepage-new .height-bantop-fijo {
        margin-top: 0;
    }
}


/* CHAIN DE ALTURA FIJA */

.banner-container {
  width: 100%;
  min-height: var(--banner-height-desktop);
  background-color: #F7F7F7;
}

@media (max-width: 990px) {
  .banner-container {
    min-height: var(--banner-height-mobile);
  }
}
 
/* .lp-homepage-new .yout-vertical-rd {
  margin-top: 20px;
} */