/* ── NOTÍCIES / NEWS ── */
.noticies {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.noticies-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.news-card:hover { transform: translateY(-3px); }
.news-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--maroon), #C03030);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.3);
}
.news-body { padding: 1.2rem 1.3rem; background: var(--white); }
.news-tag {
  display: inline-block;
  background: var(--cream-d);
  color: var(--maroon);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  padding: .15rem .6rem;
  border-radius: 50px;
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.news-body h4 { font-size: .97rem; font-weight: 700; margin-bottom: .4rem; }
.news-body p  { font-size: .83rem; color: #666; margin-bottom: .8rem; }
.news-body a  { font-size: .82rem; color: var(--maroon); font-weight: 700; }
