/* Sección de noticias */
#news {
  background: #111;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.news-item {
  background: #222;
  width: 300px;
  padding: 1rem;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.news-item img {
  max-width: 100%;
  border-radius: 4px;
}

.news-item h4 {
  margin-top: 1rem;
  font-size: 1.1rem;
}
