/* Estilos para la página de noticias */
.news-section {
  padding: 18rem 2rem;
  background-color: var(--color--blanco);
}

.news-container {
  max-width: 75rem;
  margin: 0 auto;
}

.news-container h1 {
  font-size: 2rem;
  color: var(-color--fuentes);
  margin-bottom: 3rem;
  text-align: center;
}

.news-card {
  background: var(--color--blanco);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  border: 1px solid var(--color-amarillo);
}

.news-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  flex: 0 0 60%;
  padding: 2rem;
}

.news-content h2 {
  font-size: 1.5rem;
  color: var(--color--fuentes);
  margin-bottom: 1rem;
}

.news-meta {
  font-size: 1rem;
  color: var(--color--fuentes);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 2rem;
}

.news-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color--fuentes);
  margin-bottom: 2rem;
}
