/* RESET GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f6f6f4;
  color: #2b2b2b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* CABECERA Y LOGOTIPO */
.site-header {
  padding: 2.5rem 2rem 1rem 2rem;
  text-align: center;
  border-bottom: none; /* ← LÍNEA ELIMINADA (antes tenía border-bottom) */
}

.header-content {
  margin-bottom: 1.5rem;
}

/* LOGO CON ALICE - MINÚSCULAS */
.logo {
  font-family: 'Alice', serif;
  font-size: 4.5rem;
  color: #707070;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: block;
  line-height: 0.85;
  margin-bottom: 0.2rem;
  text-transform: lowercase;
  margin-top: 0.5rem;
}

.tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #a0a0a0;
  letter-spacing: 0.12em;
  margin-top: -0.2rem;
  margin-bottom: 1rem;
}

/* NAVEGACIÓN - TAMAÑO AUMENTADO */
.main-nav {
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-nav a {
  margin: 0 1.2rem;
  text-decoration: none;
  font-size: 0.92rem; /* ↑ AUMENTADO de 0.85rem a 0.92rem */
  color: #5a6b67;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #2c3e50;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #2c3e50;
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* LAYOUT - 2 COLUMNAS */
.layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 1.5rem 2rem 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== COLUMNA IZQUIERDA - ESTRUCTURA COMPLETA ===== */
.left-column .box {
  background: #ffffff;
  padding: 1.8rem;
  margin-bottom: 1.8rem;
  margin-top: 0;
  border-radius: 4px;
  border-left: 4px solid #006666;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.left-column .box:hover {
  transform: translateY(-2px);
}

/* ===== ESTRUCTURA CORREGIDA PARA COLUMNA IZQUIERDA ===== */

/* Título de la sección (ej: "Despensa mínima") - AHORA ES <h1> */
.left-column .box h1 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
}

/* Título de la nota específica - AHORA ES <h2> */
.left-column .box h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

/* Cuerpo de la nota */
.left-column p {
  color: #34495e;
  font-size: 0.90rem;
  line-height: 1.7;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #006666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.read-more:hover {
  color: #004d4d;
}

/* ===== COLUMNA DERECHA - MATUTINO ===== */
.matutino {
  background: #ffffff;
  padding: 1.5rem 3rem 3rem 3rem;
  border-radius: 2px;
  border-top: 4px solid #990033;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-top: 0;
}

.matutino h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 12px;
}

/* Tipografía igualada para párrafos */
.matutino > div > p {
  color: #34495e;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  -webkit-font-smoothing: antialiased;
}

/* Estilos para subtítulos (INTERNACIONAL, NACIONAL, etc.) */
.matutino > div > span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2c3e50;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  -webkit-font-smoothing: antialiased;
  padding: 0.2rem 0;
  border-bottom: 1px solid #eaeaea;
}

/* Separación entre bloques de noticias */
.matutino > div {
  margin-bottom: 1.2rem;
}

.matutino .read-more {
  display: inline-block;
  margin-top: 2rem;
  color: #990033;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.matutino .read-more:hover {
  border-bottom: 1px solid #990033;
  color: #990033;
}

/* FOOTER */
.site-footer {
  padding: 1.5rem 2rem;
  font-size: 0.8rem;
  color: #7f8c8d;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f6f6f4;
}

.site-footer p {
  color: #7f8c8d;
}

/* ===== RESPONSIVE - MÓVILES (Matutino primero) ===== */
@media (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "matutino"
      "contenido";
    gap: 1.5rem;
    padding: 0.5rem 1.5rem 2rem 1.5rem;
  }

  .right-column {
    grid-area: matutino;
  }

  .left-column {
    grid-area: contenido;
  }

  /* Línea ya eliminada en general, solo ajuste de padding */
  .site-header {
    padding: 2rem 1rem 0.5rem 1rem;
  }

  .logo {
    font-size: 3.5rem;
  }

  /* Navegación móvil - tamaño aumentado también */
  .main-nav a:nth-child(3) {
    display: none;
  }
  
  .main-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.8rem 0;
  }
  
  .main-nav a {
    margin: 0;
    font-size: 0.9rem; /* ↑ Aumentado también en móvil */
    padding: 0.5rem 0;
  }

  /* Recuadro Matutino subido */
  .matutino {
    padding: 1rem 2rem 2rem 2rem;
    margin-top: 0;
  }

  .matutino h2 {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .matutino > div > p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
