/* =========================
   NEWS LIST CON THUMBNAIL
   ========================= */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ARTICLE */
.news-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

/* =========================
   THUMBNAIL
   ========================= */

.news-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

/* CATEGORIA (pseudo elemento) */
.news-thumb::after {
  content: attr(data-category);
  position: absolute;
  top: 10px;
  left: 10px;
  background: #004b87;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
