/************************************************************************/
/* W1Q COMUNICAZIONI TEMPLATE                                           */
/************************************************************************/
/* Container principale */
.t-Alerts {
    margin-bottom: 1rem;
    max-width: 100%;
    overflow: hidden;
}

/* Titolo sezione */
.t-Alerts h2.W1Q_DARK_BLUE {
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-top: 0;
}

/* Stili base comunicazione */
.W1Q_COMUNICAZIONE_ITEM {
    border-radius: 10px !important;
    border: solid 2px #1877c4 !important;
    margin-bottom: 1rem;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.W1Q_COMUNICAZIONE_ITEM .t-Alert-wrap {
    display: flex;
    align-items: center;
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.W1Q_COMUNICAZIONE_ITEM .t-Alert-content {
    flex: 1;
    padding: 1rem 1.5rem;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.W1Q_COMUNICAZIONE_ITEM .t-Alert-title {
    color: #033c6a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.W1Q_COMUNICAZIONE_ITEM .t-Alert-body {
    color: #404040;
    line-height: 1.5;
}

.W1Q_COMUNICAZIONE_ITEM_DOWNLOAD {
    text-align: center;
    padding: 10px;
    border-left: 1px solid rgba(24, 119, 196, 0.2);
    flex-shrink: 0;
}

/* Responsive per tablet e mobile */
@media only screen and (max-width: 768px) {
    /* Rimuovi margin top dal titolo */
    .t-Alerts h2.W1Q_DARK_BLUE {
        margin-top: 0;
        padding-top: 0;
    }
    
    /* Forza contenitore a non eccedere */
    .t-Alerts {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .W1Q_COMUNICAZIONE_ITEM {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-wrap {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem;
        box-sizing: border-box;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-header {
        margin-bottom: 0.5rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-title {
        font-size: 1.1rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-body {
        font-size: 0.9rem;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .W1Q_COMUNICAZIONE_ITEM_DOWNLOAD {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.75rem;
        border-left: none;
        border-top: 1px solid rgba(24, 119, 196, 0.2);
        box-sizing: border-box;
    }
    
    .W1Q_COMUNICAZIONE_ITEM_DOWNLOAD .t-Button {
        width: 100%;
        max-width: 100%;
        margin: 0.25rem 0;
    }
}

/* Responsive per smartphone */
@media only screen and (max-width: 480px) {
    .t-Alerts h2.W1Q_DARK_BLUE {
        font-size: 1.3rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM {
        border-radius: 8px !important;
        margin-bottom: 0.75rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-content {
        padding: 0.75rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-title {
        font-size: 1rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-body {
        font-size: 0.85rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM_DOWNLOAD {
        padding: 0.5rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM_DOWNLOAD .t-Button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Extra small screens */
@media only screen and (max-width: 375px) {
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-content {
        padding: 0.5rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-title {
        font-size: 0.95rem;
    }
    
    .W1Q_COMUNICAZIONE_ITEM .t-Alert-body {
        font-size: 0.8rem;
    }
}