/* =========================================================
   HOME – BLOQUE SUPERIOR (nota grande + 4 pequeñas + sidebar)
   ========================================================= */

/*VIDEO*/
/* Contenedor responsive para embeds 16:9 (YouTube, etc.) */
.embed-responsive.embed-responsive-16by9{
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 16px auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  /* Moderno: mantiene proporción 16:9 */
  aspect-ratio: 16 / 9;
}

/* El iframe siempre al 100% del contenedor */
.embed-responsive.embed-responsive-16by9 iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Fallback si no soporta aspect-ratio */
@supports not (aspect-ratio: 16 / 9){
  .embed-responsive.embed-responsive-16by9{
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
  }
}

/* Opcional: que respete tu clase existente */
.iframe_video{
  max-width: 100%;
}

/*FIN VIDEO*/

/* Contenedor general: main + sidebar */
.home-top {
  max-width: 1300px;
  margin: 32px auto 48px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px; /* main flexible + sidebar fijo */
  column-gap: 12px;
  align-items: flex-start;
}

/* MAIN: nota grande + columna de cards pequeños (2x2) */
.home-top-main {
  display: grid;
  /* principal algo más chica, secundarios más anchos */
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.6fr);
  column-gap: 12px;
  row-gap: 0;
}

/* ===== NOTA PRINCIPAL ===== */

.home-feature {
  display: flex;
  flex-direction: column;
}

.home-feature-image {
  display: block;
  border-radius: 0;        /* sin esquinas redondeadas */
  overflow: hidden;
  margin-bottom: 18px;
}

.home-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.home-feature-category {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 6px;
}

.home-feature-title {
  font-family: "PrumoDeck", "Georgia", "Times New Roman", serif;
  font-size: 32px;       /* pedido: 32px */
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px;
}

.home-feature-title a {
  color: inherit;
  text-decoration: none;
}

.home-feature-title a:hover {
  text-decoration: underline;
}

.home-feature-summary {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.5;
  color: #202020;
  margin: 0 0 14px;
}

.home-feature-meta {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #555;
}

.home-feature-author {
  font-weight: 600;

}

.home-feature-dot {
  margin: 0 4px;
}

/* ===== CARDS PEQUEÑOS (2 x 2 a la derecha) ===== */

.home-top-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas */
  column-gap: 12px;
  row-gap: 25px;                 /* ESPACIO VERTICAL ENTRE FILAS = 25px */
  justify-content: stretch;

  /* LÍNEA VERTICAL al lado derecho del card principal */
  border-left: 1px solid #111;
  padding-left: 12px;            /* separación entre la línea y los cards */
}

/* Cada card pequeño */
.home-top-card {
  display: block;
  border: none;
  padding: 0;
  border-right: solid 1px #000;
  padding-right: 12px;
}

/* Segunda fila (cards 3 y 4):
   LÍNEA HORIZONTAL arriba + un poco de aire */

.home-top-card:nth-child(2) {
  border-right:none;
}
.home-top-card:nth-child(4) {
  border-right:none;
}

.home-top-card:nth-child(3) a.home-top-card-image {
  border-top: solid 1px #000;
}
.home-top-card:nth-child(4) a.home-top-card-image{
  border-top: solid 1px #000;
}

.home-top-card:nth-child(3) img {
  margin-top: 12px;
}
.home-top-card:nth-child(4) img {
  margin-top: 12px;
}

.home-top-card-image {
  display: block;
  border-radius: 0;      /* sin esquinas redondeadas */
  overflow: hidden;
  margin-bottom: 10px;
}

.home-top-card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.home-top-card-category {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 4px;
}

.home-top-card-title {
  font-family: "PrumoDeck", "Georgia", "Times New Roman", serif;
  font-size: 19px;      /* pedido: 19px */
  line-height: 1.35;
  font-weight: 700;
  margin: 0 0 6px;
  color: #000;
}

.home-top-card-title a {
  color: inherit;
  text-decoration: none;
}

.home-top-card-title a:hover {
  text-decoration: underline;
}

.home-top-card-meta {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 8px;
  color: #555;
}

.home-top-card-author {
  font-weight: 600;
}

.home-top-card-dot {
  margin: 0 3px;
}

/* ===== SIDEBAR DERECHA ===== */

.home-top-sidebar {
  /* el ancho ya lo define el grid (300px) */
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .home-top {
    grid-template-columns: 1fr;        /* main arriba, sidebar abajo */
  }

  .home-top-main {
    grid-template-columns: 1fr;        /* nota grande y cards apiladas */
    row-gap: 24px;
  }

  .home-top-secondary {
    grid-template-columns: 1fr;        /* cards uno bajo otro en tablet */
    border-left: none;
    padding-left: 0;
    row-gap: 20px;
  }

  .home-feature-title {
    font-size: 28px;
  }
}



/* =========================================================
   HOME – BLOQUE 2 (banner + box video)
   ========================================================= */

.home-block2{
  max-width: 1300px;
  margin: 0 auto 32px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px; /* banner flexible + video fijo */
  column-gap: 12px;
  align-items: start;
}

/* Banner izquierda */
.home-block2-banner{
  display: block;
  overflow: hidden;
  border-radius: 0;
}

.home-block2-banner img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* ajusta si quieres una altura consistente */
  /* aspect-ratio: 16 / 4; */
}
.home-block2 .bannermanual{
  margin-top: 18px;
}
/* Box video derecha */
.home-block2-video{
  /* si quieres borde como “card” */
  /* border: 1px solid #111; */
  border-radius: 10px;
  overflow: hidden;
  background: #141459;
  padding: 0 5px 0 5px;

}
.home-block2-video div{
  /* si quieres borde como “card” */
  /* border: 1px solid #111; */
  width: 100%;
}
.home-block2-video div img{
  width: 50%;
  margin: 14px 25% 0 25%;

}
.home-block2-video-link{
  display: block;
}
.home-block2-video iframe{
  border: solid 5px #FF0000 !important;
  border-radius: 5px !important;
}

.home-block2-video img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* mantiene proporción similar a banner, ajusta a gusto */
  /* aspect-ratio: 16 / 9; */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .home-block2{
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .home-block2-video{
    max-width: 520px; /* opcional: que no se vea gigante */
  }
}

/* =========================================================
   HOME – BLOQUE 3 (4 notas fondo azul)
   ========================================================= */

.home-block3{
  max-width: 1300px;
  margin: 0 auto 48px;
  padding: 0 16px;
}

.home-block3-wrap{
  background: #0b0f4a;
  padding: 28px 28px 24px;
}

/* Grid */
.home-block3-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
}

/* Card */
.home-block3-card{
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.35);
}

.home-block3-card:first-child{
  padding-left: 0;
  border-left: none;
}

/* LINK – BLINDADO */
.home-block3-link{
  display: block;
  color: #fff;
  text-decoration: none;
}

.home-block3-link:visited{
  color: #fff;
}

.home-block3-link *{
  color: inherit;
  text-decoration: none;
}

/* Imagen */
.home-block3-thumb{
  display: block;
  margin-bottom: 16px;
  overflow: hidden;
}

.home-block3-thumb img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Kicker */
.home-block3-kicker{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity: .9;
}

/* Título */
.home-block3-title{
  font-family: "PrumoDeck", "Georgia", serif;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 18px;
}

/* Meta */
.home-block3-meta{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 11px;
  color: #FFF;
  opacity: .9;
}

.home-block3-meta strong{
  font-weight: 700;
}

.home-block3-meta .dot{
  margin: 0 6px;
}

/* Hover */
.home-block3-link:hover .home-block3-title{
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px){
  .home-block3-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .home-block3-card{
    padding-left: 0;
    border-left: none;
  }
}


/* =========================================================
   HOME – BLOQUE 4 (ACTUALIDAD) – MAIN + SIDEBAR
   ========================================================= */

.home-block4{
  max-width: 1300px;
  margin: 0 auto 56px;
  padding: 0 16px;
}

.home-block4-head{ margin: 0 0 10px; }
.home-block4-title{
  font-family: "PrumoDeck", "Georgia", serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

/* shell = 2 columnas: main + sidebar */
.home-block4-shell{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  column-gap: 12px;
  align-items: start;
}

/* MAIN: contiene top + row */
.home-b4-main{
  border-right: 1px solid #111; /* línea vertical antes del sidebar */
  padding-right: 12px;
}

/* TOP dentro del main: destacada + stack */
.home-b4-top{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  border-bottom: 1px solid #111;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

/* links blindados */
.home-b4-link{
  display:block;
  color:#000;
  text-decoration:none;
}
.home-b4-link:visited{ color:#000; }
.home-b4-link *{ color:inherit; text-decoration:none; }
.home-b4-link:hover .home-b4-feature-title,
.home-b4-link:hover .home-b4-item-title,
.home-b4-link:hover .home-b4-card-title{
  text-decoration: underline;
}

/* Base: que ningún link de bloque 4 se pinte azul */
.home-b4-item a,
.home-b4-item a:visited{
  color: inherit;
  text-decoration: none;
}

/* Mantén layout típico: texto izq + imagen der */
.home-b4-item{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

/* Links */
.home-b4-kicker-link{
  display:inline-block;
  margin-bottom: 10px;
}
.home-b4-article-link{ display:block; }
.home-b4-article-link--img{ flex: 0 0 auto; }

/* Hover: subrayar solo el título al pasar por el link del título */
.home-b4-article-link:hover .home-b4-item-title{
  text-decoration: underline;
}

/* Autor dentro del meta */
.home-b4-meta a,
.home-b4-meta a:visited{
  color: inherit;
  text-decoration:none;
}
.home-b4-meta a:hover{ text-decoration: underline; }

/* Imagen */
.home-b4-item-img{
  display:block;
  overflow:hidden;
}
.home-b4-item-img img{
  width: 180px;        /* ajusta a tu maqueta */
  height: auto;
  display:block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Por si algo global pinta hijos */
.home-b4-item a *{ color: inherit; }


/* ===== FEATURE ===== */
.home-b4-feature-img{ display:block; overflow:hidden; margin-bottom: 18px; }
.home-b4-feature-img img{
  width:100%; height:auto; display:block;
  aspect-ratio: 16/10; object-fit: cover;
}
.home-b4-kicker{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  margin:0 0 8px;
}
.home-b4-feature-title{
  font-family:"PrumoDeck","Georgia",serif;
  font-size:32px; line-height:1.05;
  font-weight:700;
  margin:0 0 16px;
}
.home-b4-meta{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size:11px; color:#222;
  margin:0;
}
.home-b4-meta strong{ font-weight:700; }
.home-b4-meta .dot{ margin:0 6px; }

/* ===== STACK (3 verticales) ===== */
.home-b4-stack{
  border-left: 1px solid #111;   /* línea vertical entre feature y stack */
  padding-left: 12px;
}
.home-b4-item{ padding: 12px 0; }
.home-b4-item .home-b4-link{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  column-gap: 16px;
  align-items:start;
}
.home-b4-item-img{ display:block; overflow:hidden; }
.home-b4-item-img img{
  /* width:100%;  */
  height:auto;
  display:block;
  aspect-ratio: 16/9; object-fit:cover;
}
.home-b4-item-title{
  font-family:"PrumoDeck","Georgia",serif;
  font-size:19px; line-height:1.15;
  font-weight:600;
  margin:0 0 10px;
}
.home-b4-divider{
  border:none;
  border-top:1px solid #111;
  margin:0;
}

/* ===== ROW 4 cards (dentro del main) ===== */
.home-b4-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
}

.home-b4-card{
  border-left: 1px solid #111;
  padding-left: 12px;
}
.home-b4-card:first-child{
  border-left: none;
  padding-left: 0;
}

.home-b4-card-img{ display:block; overflow:hidden; margin-bottom: 12px; }
.home-b4-card-img img{
  width:100%; height:auto; display:block;
  aspect-ratio:16/10; object-fit:cover;
}
.home-b4-card-title{
  font-family:"PrumoDeck","Georgia",serif;
  font-size:19px; line-height:1.18;
  font-weight:600;
  margin:0 0 10px;
}

/* ===== SIDEBAR ===== */
.home-b4-sidebar{
  display:grid;
  row-gap: 18px;
}
.home-b4-ad-top img{
  width:100%; height:auto; display:block;
}
.home-b4-ad-big{
  margin-top: 12px;
  width:100%;
  min-height: 520px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px){
  .home-block4-shell{
    grid-template-columns: 1fr;
  }
  .home-b4-main{
    border-right: none;
    padding-right: 0;
  }
  .home-b4-top{
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .home-b4-stack{
    border-left: none;
    padding-left: 0;
  }
  .home-b4-row{
    grid-template-columns: repeat(2, minmax(0,1fr));
    row-gap: 22px;
  }
  .home-b4-card{
    border-left: none;
    padding-left: 0;
  }
  .home-b4-sidebar{
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
  }
  .home-b4-ad-big{ min-height: 260px; }
}

/* BLOQUE 4 (Actualidad) - MOBILE: foto arriba SIEMPRE */
@media (max-width: 767px){

  .home-b4-item{
    display: flex;
    flex-direction: column;
  }

  /* TEXTO abajo */
  .home-b4-item .home-b4-item-text{
    order: 2;
    width: 100%;
  }

  /* LINK/CONTENEDOR DE IMAGEN arriba */
  .home-b4-item a.home-b4-article-link--img{
    order: 1;
    width: 100%;
    display: block;
  }

  /* SPAN contenedor imagen */
  .home-b4-item a.home-b4-article-link--img .home-b4-item-img{
    width: 100%;
    display: block;
  }

  /* IMG al 100% */
  .home-b4-item a.home-b4-article-link--img img{
    width: 100%;
    height: auto;
    display: block;
  }

}

.home-b4-link--kicker{
  margin-bottom: 12px;
}

.mtb12{
  margin: 12px 0 12px 0;
}

/* =========================================================
   HOME – BLOQUE 5 (NEGOCIOS)
   ========================================================= */

.home-block5{
  max-width: 1300px;
  margin: 0 auto 56px;
  padding: 0 16px;
}

/* contenedor general: main + sidebar */
.home-b5-shell{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  column-gap: 22px;
  align-items: start;
}

/* MAIN con fondo azul */
.home-b5-main{
  background: #0b0f4a;        /* azul del bloque */
  padding: 26px 26px 22px;
}

/* título */
.home-b5-head{ margin: 0 0 18px; }
.home-b5-title{
  font-family: "PrumoDeck", "Georgia", serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* links blindados (todo blanco) */
.home-b5-link{
  display: block;
  text-decoration: none;
  color: #fff;
}
.home-b5-link:visited{ color:#fff; }
.home-b5-link *{ color: inherit; text-decoration: none; }
.home-b5-link:hover .home-b5-feature-title,
.home-b5-link:hover .home-b5-card-title{
  text-decoration: underline;
}

/* kicker */
.home-b5-kicker{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: rgba(255,255,255,.9);
}

/* ===== FEATURE ===== */
.home-b5-feature{
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.home-b5-feature .home-b5-link{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  column-gap: 22px;
  align-items: start;
}

.home-b5-feature-media{
  display:block;
  overflow:hidden;
}
.home-b5-feature-media img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.home-b5-feature-title{
  font-family: "PrumoDeck", "Georgia", serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}

.home-b5-feature-summary{
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.35;
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
}

.home-b5-meta{
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 8px;
  margin: 0;
  color: rgba(255,255,255,.9);
}
.home-b5-meta strong{ font-weight: 700; }
.home-b5-meta .dot{ margin: 0 6px; }

/* ===== 4 cards ===== */
.home-b5-row{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 22px;
}

.home-b5-card-img{
  display:block;
  overflow:hidden;
  margin-bottom: 12px;
}
.home-b5-card-img img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.home-b5-card-title{
  font-family: "PrumoDeck", "Georgia", serif;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}

/* ===== SIDEBAR ===== */
.home-b5-sidebar{
  border-left: 1px solid #111; /* línea vertical como en maqueta */
  padding-left: 22px;
}

.home-b5-ad img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 18px; /* el banner tuyo tiene bordes redondeados */
}
/* ===== LAYOUT PRINCIPAL (IMAGEN IZQ / TEXTO DER) ===== */
.home-b5-feature-wrap{
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* imagen más grande */
  column-gap: 28px;
  align-items: start;
}

/* imagen */
.home-b5-feature-media{
  display:block;
  overflow:hidden;
}
.home-b5-feature-media img{
  width:100%;
  height:auto;
  display:block;
  object-fit: cover;
}

/* texto */
.home-b5-feature-body{
  display:flex;
  flex-direction: column;
}

/* ===== LINKS SIN AZUL ===== */
.home-b5-feature a,
.home-b5-feature a:visited{
  color: inherit;
  text-decoration: none;
}

/* hover solo en título */
.home-b5-article-link--title:hover .home-b5-feature-title{
  text-decoration: underline;
}

/* kicker */
.home-b5-kicker-link{
  display:inline-block;
  margin-bottom: 8px;
}

/* autor */
.home-b5-meta a:hover{
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .home-b5-feature-wrap{
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1100px){
  .home-b5-shell{
    grid-template-columns: 1fr;
  }
  .home-b5-sidebar{
    border-left: none;
    padding-left: 0;
    margin-top: 18px;
  }
  .home-b5-feature .home-b5-link{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .home-b5-row{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* Banner debajo del bloque negocios */
.home-b5-banner{
  margin: 26px 0;
}
.home-b5-banner a{ display:block; }
.home-b5-banner img{
  width: 100%;
  height: auto;
  display: block;
}

/* 5B: strip azul con 4 cards */
.home-b5b-strip{
  background: #0b0f4a;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 22px;
  align-items: start;
}

/* separadores verticales como en maqueta */
.home-b5b-card{
  border-left: 1px solid rgba(255,255,255,.45);
  padding-left: 22px;
}
.home-b5b-card:first-child{
  border-left: none;
  padding-left: 0;
}

.home-b5b-link{
  display:block;
  color:#fff;
  text-decoration:none;
}
.home-b5b-link:visited{ color:#fff; }
.home-b5b-link *{ color: inherit; text-decoration:none; }
.home-b5b-link:hover .home-b5b-title{ text-decoration: underline; }

.home-b5b-img{
  display:block;
  overflow:hidden;
  margin-bottom: 12px;
}
.home-b5b-img img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.home-b5b-kicker{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: rgba(255,255,255,.9);
}

.home-b5b-title{
  font-family:"PrumoDeck","Georgia",serif;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 14px;
}

.home-b5b-meta{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 11px;
  margin: 0;
  color: rgba(255,255,255,.9);
}
.home-b5b-meta strong{ font-weight: 700; }
.home-b5b-meta .dot{ margin: 0 6px; }

/* Responsive */
@media (max-width: 1100px){
  .home-b5b-strip{
    grid-template-columns: repeat(2, minmax(0,1fr));
    row-gap: 22px;
  }
  .home-b5b-card{
    border-left: none;
    padding-left: 0;
  }
}

/* CONTENEDOR GENERAL (mantiene sidebar a la derecha siempre) */
.home-block5{
  max-width: 1300px;
  margin: 0 auto 56px;
  padding: 0 16px;
}

.home-b5-shell{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px; /* izquierda + sidebar */
  column-gap: 22px;
  align-items: start;
}

.home-b5-left{
  min-width: 0;
}

/* Sidebar con línea */
.home-b5-sidebar{
  border-left: 1px solid #111;
  padding-left: 22px;
}
.home-b5-ad img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 18px;
}

/* Banner ENTRE bloques, pero dentro de la columna izquierda */
.home-b5-banner{
  margin: 22px 0 22px;
}
.home-b5-banner a{ display:block; }
.home-b5-banner img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================================================
   ECUADOR (estilo “lila” del screenshot)
   ========================================================= */
.home-ecuador{
  background: #EDEDFA; /* lila suave */
  padding: 24px;
}

.home-ecu-title{
  font-family: "PrumoDeck", "Georgia", serif;
  font-size: 32px;
  margin: 0 0 18px;
  color: #0b2f6b; /* azul título */
  font-weight: 700;
}

.home-ecu-link{
  display:block;
  color: #0b2f6b;
  text-decoration: none;
}
.home-ecu-link:visited{ color:#0b2f6b; }
.home-ecu-link *{ color: inherit; text-decoration:none; }
.home-ecu-link:hover .home-ecu-h1,
.home-ecu-link:hover .home-ecu-card-title{ text-decoration: underline; }

.home-ecu-feature .home-ecu-link{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  column-gap: 22px;
  align-items: start;
}

.home-ecu-media{
  display:block;
  overflow:hidden;
}
.home-ecu-media img{
  width:100%;
  height:auto;
  display:block;
  object-fit: cover;
  aspect-ratio: 16/11;
}

.home-ecu-kicker-link{margin-bottom: 12px;}
.home-ecu-kicker{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 12px 0 12px;
  color: #141459;
}

.home-ecu-h1{
  font-family:"PrumoDeck","Georgia",serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 600;
  margin: 12px 0 12px;
  color: #141459;
}

.home-ecu-summary{
  font-family:"Georgia","Times New Roman",serif;
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 18px;
  color: #0b2f6b;
}

.home-ecu-meta{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 11px;
  margin: 0;
  color: #141459;
}
.home-ecu-meta strong{ font-weight: 700; }
.home-ecu-meta .dot{ margin: 0 6px; }

.home-ecu-sep{
  border: none;
  border-top: 1px solid rgba(0,0,0,.65);
  margin: 20px 0;
}

.home-ecu-row{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 22px;
}

.home-ecu-card-img{
  display:block;
  overflow:hidden;
  margin-bottom: 12px;
}
.home-ecu-card-img img{
  width:100%;
  height:auto;
  display:block;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.home-ecu-card-title{
  font-family:"PrumoDeck","Georgia",serif;
  font-size: 19px;
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 12px;
  color:#141459;
}

/* Layout feature Ecuador */
.home-ecu-feature-wrap{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Imagen */
.home-ecu-media img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* Links sin azul */
.home-ecu-feature a,
.home-ecu-feature a:visited{
  color: inherit;
  text-decoration: none;
}

/* Hover título */
.home-ecu-article-link--title:hover .home-ecu-h1{
  text-decoration: underline;
}

/* Responsive */
@media (max-width:1024px){
  .home-ecu-feature-wrap{
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
}

/* No azul */
.home-ecu-card a,
.home-ecu-card a:visited{
  color: inherit;
  text-decoration: none;
}

/* Imagen */
.home-ecu-card-img img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  aspect-ratio: 16/10;
}

/* Hover título */
.home-ecu-article-link--title:hover .home-ecu-card-title{
  text-decoration: underline;
}

/* Autor */
.home-ecu-meta a:hover{
  text-decoration: underline;
}
/* CONTENEDOR DE LAS 4 CARDS */
.home-ecu-row{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

/* CADA CARD */
.home-ecu-card{
  display: flex;
  flex-direction: column;
  min-width: 0; /* IMPORTANTÍSIMO en grid */
}

/* Imagen ocupa ancho completo */
.home-ecu-card-img img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* Responsive */
@media (max-width: 1024px){
  .home-ecu-row{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Responsive: cuando cae a mobile, el sidebar baja */
@media (max-width: 1100px){
  .home-b5-shell{ grid-template-columns: 1fr; }
  .home-b5-sidebar{
    border-left: none;
    padding-left: 0;
    margin-top: 18px;
  }

  .home-ecu-feature .home-ecu-link{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .home-ecu-row{
    grid-template-columns: repeat(2, minmax(0,1fr));
    row-gap: 22px;
  }
}



section a, section a:visited{
  text-decoration: none;
  color: inherit;
}


.mundo .home-ecuador{background: #FFF !important;}
.mundo span, .mundo h3, .mundo p {color:#000;}
@media (max-width: 640px){
  .home-top {
    padding: 0 12px;
  }
  .home-feature-title, .home-top-card-title {
    font-size: 24px;
  }
  .home-top-secondary {
    row-gap: 18px;
  }

  .home-feature {
    border: none;

  }
  .home-top-card {
    border: none;
  }
  .home-top-card img{
    padding-top: 18px;
    border-top: 1px solid #000;
  }

  .home-top-card:nth-child(3) a.home-top-card-image {
    border: none;
  }
  .home-top-card:nth-child(4) a.home-top-card-image{
    border: none;
  }
  .home-top-card:nth-child(4) {
    border-bottom: 1px solid #000;
    padding-bottom: 14px;
  }

  .home-feature-title,
  .home-b4-feature-title,
  .home-b5-feature-title,
  .home-ecu-h1{
    font-size:32px;
    font-weight:600;
  }

  .home-b4-card{border-bottom: solid 1px #000; padding-bottom: 12px;}
  .hiddemobile{display:none;}
  .home-top-card-title,
  .home-block3-title,
  .home-b4-item-title,
  .home-b4-card-title,
  .home-b5-card-title,
  .home-ecu-card-title{
    font-size:27px;
    font-weight:600;
  }
  .home-block2{
    padding: 0 12px;
  }

  .home-block2-video{
    max-width: none;
  }
  .home-block2 .bannermanual{
    margin-top: 0;
  }
  .home-block3-wrap{
    padding: 20px 16px;
  }

  .home-block3-card{
      border-bottom: solid 1px #FFF;
      padding-bottom: 10px;
  }
  .home-block3-card:last-child{
    border-bottom: none;
    padding-bottom: 0;
  }
  .home-block3-grid{
    grid-template-columns: 1fr;
  }

  .home-block3-title{
    font-size: 19px;
  }

  .home-b4-feature{border-bottom: solid 1px #000; padding-bottom: 14px;}
  .home-block4-title{ font-size: 34px; }
  .home-b4-feature-title{ font-size: 30px; }
  .home-b4-item .home-b4-link{ grid-template-columns: 1fr; }
  .home-b4-item-img{ margin-top: 12px; }
  .home-b4-row{ grid-template-columns: 1fr; }
  .home-b4-sidebar{ grid-template-columns: 1fr; }

  .home-b5-main{
    padding: 18px 16px 18px;
  }
  .home-b5-title{ font-size: 34px; }
  .home-b5-feature-title{ font-size: 30px; }
  .home-b5-feature-summary{ font-size: 17px; }
  .home-b5-row{ grid-template-columns: 1fr; }


  .home-b5b-strip{
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }
  .home-b5b-title{ font-size: 24px; }

  .home-ecu-row{ grid-template-columns: 1fr; }

  .home-ecuador{ padding: 18px 16px; }
  .home-ecu-title{ font-size: 34px; }
  .home-ecu-h1{ font-size: 30px; }
  .home-ecu-summary{ font-size: 17px; }
  .home-ecu-row{ grid-template-columns: 1fr; }
}

/* =========================================================
   HOME – BLOQUE OPINIÓN
   ========================================================= */
.home-opinion{
  max-width: 1300px;
  margin: 0 auto 56px;
  background: #f7ded6;
  padding: 24px 22px 28px;
  border-radius: 2px;
}

.home-opinion-top{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.15);
  margin-bottom: 18px;
}

.home-opinion-title{
  font-family: "PrumoDeck","Georgia",serif;
  font-weight: 700;
  font-style: italic;
  color: var(--e-global-color-primary);
  font-size: 32px;
  font-style: italic;
  text-align: center;
  margin: 0;
}

.home-opinion-pill{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0b1a44;
  color: #fff;
  padding: 5px 10px 5px 5px;
  border-radius: 999px;
  font-family: "Montserrat", "Roboto", system-ui, sans-serif;
  /* font-weight: 700; */
  font-size: 12px;
  text-decoration: none;
}

.home-opinion-pill-ico{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffc400;
  color: #0b1a44;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}


/* grid 4 columnas */
.home-opinion-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* card base */
.op-card{
  text-align: center;
  padding: 10px 10px 6px;
}

.op-avatar{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
  background: #fff;
}

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

.op-author{
  margin-top: 16px;
  font-family: "Montserrat", "Roboto", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 16px;
}

.op-author-line{
  display: block;
  width: 44px;
  height: 3px;
  background: #0b1a44;
  margin: 10px auto 14px;
}

/* editorial kicker */
.op-kicker{
  font-family: "Montserrat","Roboto",system-ui,sans-serif;
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 18px;
  color: #0b1a44;
}

.op-kicker-line{
  display:block;
  width: 42px;
  height: 3px;
  background: #0b1a44;
  margin: 10px auto 16px;
}

/* títulos */
.op-title{
  font-family: "PrumoDeck","Georgia",serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  color: #0b1a44;
  color: var(--e-global-color-primary);
}

/* resumen editorial */
.op-summary{
  font-family: "PrumoDeck","Georgia",serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  margin: 14px 0 0;
  color: #0b1a44;
}

.op-meta{
  margin: 14px 0 0;
  font-family: "Montserrat","Roboto",system-ui,sans-serif;
  font-size: 13px;
}

/* links (sin subrayado feo) */
.op-title-link,
.op-kicker-link,
.op-author-link,
.op-avatar-link{
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

/* =========================================================
   Responsive
   - mantiene tu regla: títulos “pequeños” 19px en móvil
   ========================================================= */
@media (max-width: 1024px){
  .home-opinion-grid{ grid-template-columns: repeat(2, 1fr); }
  .home-opinion-title{ font-size: 38px; }
}

@media (max-width: 640px){
  .home-opinion{
    padding: 18px 14px 22px;
  }
  .home-opinion-top{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-opinion-pill{
    justify-self: center;
  }
  .home-opinion-title{
    font-size: 34px;
  }
  .home-opinion-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Regla tuya (mobile) */
  .op-title{ font-size: 19px; font-weight: 600; }
}
/* FIX: evitar que autor se ponga al lado del avatar */
.op-card{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* avatar siempre arriba */
.op-avatar-link{
  display: block;
  width: 120px;           /* mismo ancho que .op-avatar */
  margin: 0 auto;
}

/* autor siempre debajo (nunca inline al lado) */
.op-author-link--name{
  display: block;
  width: 100%;
  text-align: center;
}

/* si el nombre estaba en inline por herencia */
.op-author{
  display: block;
  width: 100%;
}

/* por si algún <a> o wrapper quedó inline-block */
.op-title-link,
.op-kicker-link,
.op-author-link{
  display: block;
  width: 100%;
  text-align: center;
}



/* =========================================================
   HOME – BLOQUE DEPORTES
   Fondo SOLO para: título + cards
   Sidebar queda fuera (sin fondo)
========================================================= */

.home-block7-sports{
  width: min(1320px, calc(100% - 32px));
  margin: 28px auto;
}

/* Shell general: main + sidebar */
.home-sports-shell{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
}

/* MAIN: acá va el “fondo” del bloque */
.home-sports-main{
  background: #f5f7ff;
  padding: 22px;
}

/* Title dentro del fondo */
.home-sports-head{ margin: 0 0 16px 0; }

.home-sports-title{
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: #0b2b63;
}
.home-sports-title a{
  color: inherit;
  text-decoration: none;
}
.home-sports-title a:hover{ text-decoration: underline; }

/* Cards layout (feature + stack) */
.home-sports-cards{
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 22px;
  align-items: start;
}

/* ===== Feature ===== */
.home-sports-feature{ padding: 0; }

.home-sports-feature-img img{
  width: 100%;
  height: auto;
  display: block;
  background: #e9eefc;
}

.home-sports-kicker{
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #0b2b63;
}

.home-sports-feature-title{
  margin: 12px 0 0 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 600;
  color: #0b2b63;
}

/* ===== Stack ===== */
.home-sports-stack{
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(11,43,99,.35);
}

.home-sports-item{
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 18px;
  align-items: start;
}

.home-sports-item-img img{
  width: 100%;
  height: auto;
  display: block;
  background: #e9eefc;
}

.home-sports-item-title{
  margin: 10px 0 0 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 19px;
  line-height: 1.08;
  font-weight: 600;
  color: #0b2b63;
}

.home-sports-divider{
  border: 0;
  border-top: 1px solid rgba(11,43,99,.35);
  margin: 18px 0;
}

/* Links */
.home-sports-link,
.home-sports-kicker-link,
.home-sports-author-link{
  color: inherit;
  text-decoration: none;
}
.home-sports-link:hover,
.home-sports-kicker-link:hover,
.home-sports-author-link:hover{
  text-decoration: underline;
}

/* Meta */
.home-sports-meta{
  margin: 16px 0 0 0;
  font-size: 13px;
  color: #1b2a4a;
  display: block;
  clear: both;
}
.home-sports-meta--small{
  margin-top: 12px;
  font-size: 11px;
}

/* =========================================================
   SIDEBAR (afuera del fondo)
========================================================= */
.home-sports-sidebar{
  padding: 0; /* sin fondo */
}

/* tu sidebar mantiene sus estilos propios */
.home-sports-sidebox{
  background: #121a60;
  border-radius: 22px;
  padding: 12px;
  color: #fff;
}

.home-sports-side-title{
  margin: 0 0 18px 0;
  font-family: "PrumoDeck", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
}
.home-sports-side-title a{
  color: #fff;
  text-decoration: none;
}
.home-sports-side-title a:hover{ text-decoration: underline; }

.home-sports-widget{ margin-top: 18px; }

.home-sports-widget-title{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-sports-widget-embed{
  background: #0f144a;
  border-radius: 14px;
  padding: 10px;
}
.home-sports-widget-embed img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .home-sports-shell{
    grid-template-columns: 1fr;
  }
  .home-sports-cards{
    grid-template-columns: 1fr;
  }
  .home-sports-stack{
    border-left: 0;
    border-top: 1px solid rgba(11,43,99,.35);
    padding: 18px 0 0 0;
    margin-top: 18px;
  }
  .home-sports-item{
    grid-template-columns: 1fr 180px;
  }
}

@media (max-width: 767px){
  .home-block7-sports{
    width: calc(100% - 24px);
    margin: 22px auto;
  }

  .home-sports-main{ padding: 16px; }

  .home-sports-title{ font-size: 34px; }

  /* requerido: mobile 32 grande / 19 chico con fw 600 */
  .home-sports-feature-title{
    font-size: 32px;
    font-weight: 600;
  }
  .home-sports-item-title{
    font-size: 19px;
    font-weight: 600;
  }

  .home-sports-item{ grid-template-columns: 1fr; }
  .home-sports-item-img{ order: -1; }

  .home-sports-side-title{ font-size: 32px; }
}

.home-block3.gastronomia{
    background: #FFF1CC;
}
.home-block3 .gastronomia{
    background: #FFF1CC;
}
.home-block3 .gastronomia a{
    background: #FFF1CC;
    color: #000;
}
.home-block3 .gastronomia p{
    background: #FFF1CC;
    color: #000;
}
.gastronomia .home-block3-card {
    border-left: 1px solid #000;
}
.gastronomia .home-block3-card:first-child{
  padding-left: 0;
  border-left: none;
}

/* ===== PLAY ICON OVERLAY (solo si tiene .ico-video) ===== */

/* El contenedor de la imagen debe ser el "marco" del overlay */
a.home-feature-image.ico-video,
a.home-top-card-image.ico-video {
  position: relative; /* clave */
}

/* Botón circular + triángulo */
a.home-feature-image.ico-video::after,
a.home-top-card-image.ico-video::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 56px;
  height: 56px;
  border-radius: 999px;

  background-color: rgba(0,0,0,0.55);

  /* triángulo play */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'%3E%3Cpolygon points='23,18 23,38 40,28' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 56px 56px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  pointer-events: none; /* no bloquea el click del <a> */
}

/* Hover opcional */
a.home-feature-image.ico-video:hover::after,
a.home-top-card-image.ico-video:hover::after {
  background-color: rgba(0,0,0,0.70);
}

/* Responsive */
@media (max-width: 480px) {
  a.home-feature-image.ico-video::after,
  a.home-top-card-image.ico-video::after {
    width: 44px;
    height: 44px;
    background-size: 44px 44px;
  }
}
