/* =========================================================
   NOTICIAS PAGE
   ========================================================= */

.noticias-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 900px;
}

.noticias-intro a {
  color: #0b84b7;
  text-decoration: none;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.noticia-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
}

.noticia-card__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ddd;
  object-fit: cover;
  display: block;
}

.noticia-card__body {
  padding: 14px 16px 18px;
  background: #f5f8fb;
  flex: 1;
}

.noticia-card__title {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  color: #222;
  margin: 0;
}

.noticia-card__date {
  display: block;
  font-size: 0.82rem;
  color: #0b84b7;
  margin-top: 8px;
  font-weight: 300;
}