/* Tarjetas de noticia */
.news-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.news-description {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.news-date {
  font-size: 0.8rem;
  color: #6b7280;
}


/* Imagen fija dentro del modal de noticias */
.news-modal-img {
    width: 100%;
    height: 12rem; /* equivalente a h-48 */
    object-fit: cover;
    border-top-left-radius: 0.5rem; /* opcional, para redondear igual que las cards */
    border-top-right-radius: 0.5rem;
}