/* ==========================================================
   MOTUS ANIMI FAD — Banner ECM Triennio
   ========================================================== */

.mafad-ecm-banner {
    border-radius: 16px;
    margin: 40px 0 20px;
    padding: 28px 36px;
    position: relative;
    overflow: hidden;
}

.mafad-ecm-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: radial-gradient(circle at 10% 50%, #fff 0%, transparent 60%),
                      radial-gradient(circle at 90% 20%, #fff 0%, transparent 50%);
    pointer-events: none;
}

/* ── Layout interno ── */
.mafad-ecm-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* ── Testo sinistra ── */
.mafad-ecm-banner-text {
    flex: 1 1 0;
}

.mafad-ecm-banner-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.mafad-ecm-banner-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

/* ── CTA destra ── */
.mafad-ecm-banner-cta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.mafad-ecm-banner-deadline {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.90);
    margin: 0;
    text-align: right;
    line-height: 1.4;
}

.mafad-ecm-banner-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
                transform 0.15s ease;
}

.mafad-ecm-banner-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}


/* ==========================================================
   LIVELLI DI URGENZA
   ========================================================== */

/* ── Low (anno 1): teal tranquillo ── */
.mafad-ecm-banner--low {
    background: linear-gradient(135deg, #1d9b93 0%, #178a83 100%);
}

/* ── Medium (anno 2): teal più scuro con tocco pink ── */
.mafad-ecm-banner--medium {
    background: linear-gradient(135deg, #178a83 0%, #0f6b65 60%, #c1146e 100%);
}

.mafad-ecm-banner--medium .mafad-ecm-banner-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* ── High (anno 3): pink deciso, urgente ── */
.mafad-ecm-banner--high {
    background: linear-gradient(135deg, #c1146e 0%, #9a0f58 100%);
}

.mafad-ecm-banner--high .mafad-ecm-banner-btn {
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
}

.mafad-ecm-banner--high .mafad-ecm-banner-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Pulsante animato quando urgenza alta */
.mafad-ecm-banner--high .mafad-ecm-banner-btn {
    animation: mafad-pulse-btn 2.5s ease-in-out infinite;
}

@keyframes mafad-pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25); }
    50%       { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 768px) {
    .mafad-ecm-banner {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .mafad-ecm-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .mafad-ecm-banner-cta {
        align-items: flex-start;
        width: 100%;
    }

    .mafad-ecm-banner-deadline {
        text-align: left;
    }

    .mafad-ecm-banner-btn {
        width: 100%;
        text-align: center;
    }

    .mafad-ecm-banner-title {
        font-size: 19px;
    }
}