/* =========================
   NOTIZIE CARD (stile tipo screenshot)
   ========================= */
.notizia-card{
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  overflow: hidden;
}

.notizia-left{
  width: 38%;
  min-width: 280px;
}

.notizia-img{
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--blue);
}

/* colonna destra */
.notizia-right{
  width: 62%;
  padding: 16px 18px;
  box-sizing: border-box;
}

/* label top */
.notizia-label{
  display:flex;
  align-items:center;
  gap:8px;
  background: #25b7c8; /* se vuoi usare una variabile, dimmelo */
  color: var(--white);
  padding: 8px 12px;
  width: fit-content;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.notizia-date{
  margin: 0;
  color: rgba(0,0,0,0.70);
  font-weight: 500;
}

.notizia-title{
  margin: 0;
  color: var(--dark-blue);
  line-height: 1.2;
}

/* CTA */
.notizia-cta{
  margin-top: 6px;
}

.notizia-btn{
  display:inline-block;
  padding: 10px 16px;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* hover */
.notizia-card:hover{
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  transform: translateY(-1px);
  transition: 180ms ease;
}

/* =========================
   RESPONSIVE
   ========================= */
@media screen and (max-width: 700px){
  .notizia-card{
    flex-direction: column;
  }
  .notizia-left,
  .notizia-right{
    width: 100%;
    min-width: unset;
  }
  .notizia-img{
    height: 200px;
  }
}

@media screen and (max-width: 400px){
  .notizia-card{ --mw: 250px !important; }
  .notizia-img{ height: 180px !important; }
  .notizia-right{ padding: 14px 14px; }
}
