/* ================================================
   SEZIONE: COMUNICAZIONI / NEWS
   ================================================ */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item {
  display: flex;
  align-items: stretch;
  background: var(--bianco);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--ombra-sm);
  border: 1px solid var(--bordo);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.news-item:hover {
  transform: translateX(4px);
  box-shadow: var(--ombra-md);
}

.news-item__data {
  min-width: 68px;
  background: linear-gradient(145deg, var(--verde-scuro), var(--verde-medio));
  color: var(--bianco);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
}

.news-item__g {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.news-item__m {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-top: 2px;
}

.news-item__body {
  padding: 16px 20px;
  flex: 1;
}

.news-item__body h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--testo);
  margin-bottom: 6px;
  line-height: 1.3;
}

.news-item__body p {
  font-size: 0.82rem;
  color: var(--testo-l);
  line-height: 1.5;
}
