/* ===== News ===== */
.news .news__lead{
  display:inline-block; margin:.2rem 0 1rem; font-weight:700; letter-spacing:.3px;
}

.news__grid{
  display:grid; gap:1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px){ .news__grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .news__grid{ grid-template-columns: 1fr; } }

.news__card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius:14px; overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.news__card:hover{
  transform: translateY(-4px);
  box-shadow:0 14px 34px rgba(0,0,0,.32);
  border-color: rgba(212,175,55,.45); /* oro sutil */
}

.news__thumb{
  display:block; position:relative; overflow:hidden; aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(12,18,24,.18), rgba(12,18,24,.45));
}
.news__thumb img{
  width:100%; height:100%; object-fit:cover; transition: transform .4s ease;
}
.news__card:hover .news__thumb img{ transform: scale(1.05); }

.news__meta{
  display:flex; align-items:center; gap:.5rem;
  padding:.6rem .8rem 0 .8rem;
}
.news__tag{
  display:inline-block; padding:.2rem .5rem; border-radius:999px;
  background: linear-gradient(180deg, rgba(8,12,16,.40), rgba(8,12,16,.28));
  color:#e6f0ee; font-size:.78rem; border:1px solid rgba(255,255,255,.08);
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.news__date{ color:#9ecac6; font-size:.82rem; }

.news__title{
  font-size:1.02rem; margin:.45rem .8rem .25rem;
}
.news__title a{
  color:#fff; text-decoration:none;
  text-shadow:0 1px 6px rgba(0,0,0,.35);
}
.news__title a:hover{ text-decoration: underline; }

.news__desc{
  color:#cfe7e4; margin:0 .8rem .6rem; line-height:1.45;
}

.news__more{
  display:inline-block; margin:0 .8rem .9rem;
  color: var(--bone-50); text-decoration:none; font-weight:700;
  transition: transform .18s ease, text-shadow .18s ease;
}
.news__more:hover{ transform: translateX(2px); text-shadow:0 0 12px rgba(212,175,55,.35); }

.news__actions{ text-align:center; margin-top:1rem; }
