/* ============================================================
   COMUNICATI – Layout dedicato
   - su desktop: align-items flex-start come eventi
   - su mobile: eredita da style.css (centrato, colonna)
============================================================ */

/* =========================
   CARD: desktop flex-start, mobile eredita da style.css
========================= */
.comunicati-faisa-page .evento-card{
    gap: 20px;
}
@media (min-width: 769px) {
    .comunicati-faisa-page .evento-card {
        align-items: flex-start;  /* desktop: come eventi */
    }
}

/* ============================================================
   BOX DATA (IDENTICO A EVENTI)
   75x75 fisso
============================================================ */
.comunicati-faisa-page .evento-date{
    background: #1d4d97;
    color: #ffffff;
    width: 75px;
    height: 75px;
    min-width: 75px;
    min-height: 75px;
    flex: 0 0 75px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
/* Giorno */
.comunicati-faisa-page .evento-day{
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
/* Mese */
.comunicati-faisa-page .evento-month{
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
}
/* Anno */
.comunicati-faisa-page .evento-year{
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    margin-top: 2px;
    opacity: 0.9;
}
/* ============================================================
   Testo comunicato
============================================================ */
.comunicati-faisa-page .evento-desc{
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}
/* ============================================================
   Responsive (identico eventi)
============================================================ */
@media (max-width: 576px){
    .comunicati-faisa-page .evento-card{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .comunicati-faisa-page .evento-date{
        width: 75px;
        height: 75px;
        min-width: 75px;
        min-height: 75px;
        flex: 0 0 75px;
        align-self: center;     /* ← solo su mobile */
    }
    .comunicati-faisa-page .evento-day{
        font-size: 22px;
    }
    .comunicati-faisa-page .evento-month{
        font-size: 12px;
    }
    .comunicati-faisa-page .evento-year{
        font-size: 11px;
    }
}