/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fffaf0;
}

/* Barra de menú */
header {
  background-color: #2e8b57!important; /* Verde tipo bosque */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
header img {
  height: 80px;
}

/* Menú de navegación */
nav {
  display: flex;
  gap: 15px; /* Espacio entre los enlaces */
}

/* Estilo de los enlaces */
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
}

/* Título principal */
.titulo-principal {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  text-align: center;
  margin: 30px 20px;
  color: #8b0000;
  text-shadow: 2px 2px #ccc;
}

/* Sección periódico/revista */
.seccion-periodico {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.articulo {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.articulo:hover {
  transform: scale(1.05);
}

.imagen-articulo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.articulo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #8b0000;
  margin: 15px;
}

.articulo p {
  font-size: 16px;
  color: #333;
  margin: 0 15px 15px 15px;
  line-height: 1.5;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 50px;
  padding: 15px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
}

/* Responsive ajustes */
@media (max-width: 600px) {
  .titulo-principal {
    font-size: 32px;
  }

  .imagen-articulo {
    height: 150px;
  }
}
