body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
}

.noticias {
  max-width: 1300px;
  margin: 0 auto;
}

.noticias h2 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #2e4d36;
  margin-bottom: 20px;
  border-bottom: 4px solid #a7c4ab;
  display: inline-block;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.noticia {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.noticia img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.noticia h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 5px;
}

.noticia small {
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
}

.noticia p {
  flex-grow: 1;
  color: #444;
  font-size: 14px;
  line-height: 1.4;
}

.btn-ver-mas {
  margin-top: 10px;
  text-align: center;
  background-color: #2e4d36;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.btn-ver-mas:hover {
  background-color: #3f6b4f;
}

.ver-todas-container {
  text-align: center;
  margin-top: 30px;
}

.btn-ver-todas {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2e4d36;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-ver-todas:hover {
  background-color: #3f6b4f;
}