/* estilos.css (COMPLETO, limpio y sin duplicar secciones) */
:root{
  --brand-red: #9D2C30;
  --blue-top: #0b2d4a;
  --text: #101418;
  --muted: #6b7280;
  --border: #e6e7ea;
}


*{ box-sizing: border-box; }

body{
  color: var(--text);
  background: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* =========================
   TOP BAR
========================= */
.topbar{ background: var(--brand-red); position: sticky;
  top: 0;
  z-index: 1050;}

.topbar-pill{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .95;
  color: #fff;
}
.topbar-link{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 12px;
}
.topbar-link:hover{ text-decoration: underline; }
.topbar-brand{
  font-size: 12px;
  letter-spacing: .06em;
  font-weight: 700;
  opacity: .95;
}
.icon-link{
  color: rgba(255,255,255,.9);
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.icon-link:hover{ color: #fff; }

/* =========================
   MASTHEAD
========================= */
.masthead{ background: #fff; }
.masthead-btn{
  color: #111;
  font-size: 26px;
  line-height: 1;
}
.masthead-btn:hover{ color: #000; }

.brand{
  text-decoration: none;
  color: var(--brand-red);
  display: inline-block; 
    text-align: center;
    padding-right: 40px;
    

}
.brand-title{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1;
}
.brand-subtitle{
  font-size: 11px;
  letter-spacing: .45em;
  text-transform: uppercase;
  margin-top: 2px;
  color: var(--brand-red);
}

/* =========================
   CATEGORY NAV
========================= */
.cats{ background: #fff; }
.cats-nav .nav-link{
  color: #101418;
  font-size: 13px;
  padding: .35rem .55rem;
  font-weight: 600;
}
.cats-nav .nav-link:hover{
  text-decoration: underline;
}

/* =========================
   COMMON
========================= */
.kicker{
  color: #1f6fb5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.byline{
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}

/* =========================
   LEFT/RIGHT CARDS
========================= */
.news-card{
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.news-card:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}
.news-img{
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
}
.news-img img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.news-body{
  padding-top: 10px;
}
.news-title{
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  font-weight: 800;
}
.news-title a{
  color: #111;
  text-decoration: none;
}
.news-title a:hover{ text-decoration: underline; }

/* =========================
   HERO (centro)
========================= */
.hero{
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 18px;
}
@media (max-width: 991.98px){
  .hero{
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
}

.hero-img{
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
}
.hero-img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.hero-body{
  padding-top: 14px;
}
.hero-title{
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-title a{
  color: #111;
  text-decoration: none;
}
.hero-title a:hover{ text-decoration: underline; }

.hero-meta{
  margin-top: 10px;
  color: #374151;
  font-size: 12px;
}
.hero-excerpt{
  margin-top: 10px;
  color: #4b5563;
  font-size: 14px;
  max-width: 62ch;
}

/* =========================
   OPINION BOX
========================= */
.opinion{
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.opinion-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #111;
}
.opinion-item{
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.opinion-item:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.opinion-avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.opinion-author{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 2px;
}
.opinion-link{
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.15;
  display: inline-block;
}
.opinion-link:hover{ text-decoration: underline; }

/* =========================
   SECCIONES REUTILIZABLES
   (LO MÁS LEÍDO / TE RECOMENDAMOS / y futuras)
========================= */
.section-block{
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.section-title{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  margin: 0 0 14px 0;
  color: #111;
}

.section-bottom-line{
  border-bottom: 1px solid var(--border);
  margin-top: 8px;
}

/* Separadores verticales para grids (3 o 4 columnas) */
.grid-sep > [class*="col-"]{
  padding: 0 16px;
}
@media (min-width: 992px){
  .grid-sep > [class*="col-"]:not(:last-child){
    border-right: 1px solid var(--border);
  }
}

/* Card editorial genérica */
.story-img{
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
}
.story-img img{
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Variantes de altura (reutilizables) */
.story--tall .story-img img{ height: 210px; }
.story--short .story-img img{ height: 170px; }

/* Títulos reutilizables */
.story-title{
  margin: 0;
  line-height: 1.2;
  font-weight: 900;
}
.story-title a{
  color: #111;
  text-decoration: none;
}
.story-title a:hover{ text-decoration: underline; }

/* Extracto reutilizable (para tarjetas con párrafo) */
.story-excerpt{
  font-size: 13px;
  color: #4b5563;
  margin-top: 6px;
}
/* =========================
   LO DESTACADO (replicado)
========================= */
.featured{
  /* centra el bloque como en tu captura (no full width visual) */
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* separadores verticales (como Heraldo) */
@media (min-width: 992px){
  .featured-top-left,
  .featured-bottom-left{
    border-right: 1px solid var(--border);
  }
}

/* paddings internos (la clave para que se vea igual) */
.featured-top-left{ padding-right: 18px; }
.featured-top-right{ padding-left: 18px; }

.featured-bottom-left{ padding-right: 18px; }
.featured-bottom-right{ padding-left: 18px; }

/* espacios entre bloque 1 y 2 */
.featured-bottom{ margin-top: 44px; }

/* HERO dentro de destacado */
.featured-hero-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(22px, 2.2vw, 32px);
}
.featured-hero-title a{
  color: #111;
  text-decoration: none;
}
.featured-hero-title a:hover{ text-decoration: underline; }

.featured-hero-excerpt{
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 12px;           /* como en la captura (más compacto) */
  line-height: 1.35;
  max-width: 68ch;
}

/* Imagen hero: altura “cuadrada” como en tu screenshot */
.featured-hero-img img{
  height: 255px;
}
@media (min-width: 992px){
  .featured-hero-img img{ height: 270px; }
}
/* la de abajo suele verse un poco más baja */
.featured-hero-img--bottom img{
  height: 240px;
}
@media (min-width: 992px){
  .featured-hero-img--bottom img{ height: 260px; }
}

/* Lista derecha */
.featured-list{
  border-top: 1px solid var(--border);
}
.featured-item{
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.featured-item:last-child{ border-bottom: 0; }

.featured-thumb{
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  display: block;
}
.featured-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-item-title{
  margin: 0;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
}
.featured-item-title a{
  color: #111;
  text-decoration: none;
}
.featured-item-title a:hover{ text-decoration: underline; }

/* Mini cards izquierda (bloque inferior) */
.featured-mini-card{
  padding-bottom: 18px;
}
.featured-mini-card:last-child{
  padding-bottom: 0;
}

.featured-mini-img img{
  height: 110px;
}
@media (min-width: 992px){
  .featured-mini-img img{ height: 115px; }
}

.featured-mini-title{
  margin: 0;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
}
.featured-mini-title a{
  color: #111;
  text-decoration: none;
}
.featured-mini-title a:hover{ text-decoration: underline; }

/* móvil: evita paddings raros */
@media (max-width: 991.98px){
  .featured{
    max-width: none;
  }
  .featured-top-left,
  .featured-top-right,
  .featured-bottom-left,
  .featured-bottom-right{
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
  .featured-bottom{ margin-top: 28px; }
}

body {
    display: flex;
    margin: 0;
    flex-direction: column;
    min-height: 100vh;
}

main {
  flex: 1;
}


.site-footer{
  background: #9D2C30;
  color: #fff;
  margin-top: auto;
}

.site-footer a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.site-footer a:hover{
  color: #fff;
  text-decoration: underline;
}



/* =========================
   NOTICIA (contenido)
========================= */
article img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 18px auto;
  border-radius: 10px;
}
article hr{
  border: 0;
  border-top: 1px solid rgba(0,0,0,.12);
  margin: 28px 0;
}
article h2{
  font-weight: 800;
  margin-top: 26px;
  margin-bottom: 12px;
  line-height: 1.2;
}
article h3{
  font-weight: 750;
  margin-top: 22px;
  margin-bottom: 10px;
  line-height: 1.25;
}
article figure{ margin: 18px 0; }
article figcaption{
  font-size: .9rem;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}

hr {
  background-color: black; /* Color (ej. negro) */


}   
blockquote{
  border-left: 3px solid #ccc;
}
.noticia-img {
  width: 100%;
  max-width: 900px;   /* ancho estándar */
  height: 420px;      /* alto estándar */
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
}

.noticia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 🔥 clave */
  display: block;
}
.masthead-row{ position: relative; }

@media (max-width: 768px){
  .masthead-center{
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .masthead-right{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
  }

}



