<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.noticias-grid-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.titulo-noticias {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.noticia-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.noticia-card:hover {
  transform: translateY(-5px);
}

.noticia-imagen img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.noticia-titulo {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #003366;
  font-weight: bold;
}

.noticia-fecha {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.noticia-extracto {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.leer-mas {
  color: #0073aa;
  font-weight: bold;
  text-decoration: none;
}

.paginacion-noticias {
  text-align: center;
  margin-top: 30px;
}
</pre></body></html>