/* ============================
   CONSIGLIO DIRETTIVO — PREMIUM
============================ */

/* HERO */
.page-hero {
    padding: 26px 0 16px 0;
    background: linear-gradient(135deg, #e6eef1, #f5f7f9);
    color: #23333a;
    text-align: center;
    border-bottom: 3px solid #4d798b20;
    border-top: 2px solid #d3dde2;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #355866;
}

.page-subtitle {
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ============================
   FASCIA ISTITUZIONALE
============================ */

.cd-banner {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #355866, #4d798b);
    margin-bottom: 20px;
}

/* ============================
   SEZIONI + TIMELINE
============================ */

.cd-block {
    padding: 18px 0;
    position: relative;
}

.cd-block::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #4d798b20;
    transform: translateX(-50%);
}

/* ============================
   SEPARATORE ELEGANTE
============================ */

.cd-separator {
    width: 100%;
    height: 1px;
    background: #d3dde2;
    margin: 12px 0 18px 0;
}

/* ============================
   CARD PREMIUM
============================ */

.cd-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 26px;
    max-width: 760px;
    margin: 0 auto 18px;
    border-left: 5px solid #4d798b;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.05),
        0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

/* Sigillo istituzionale */
.cd-card::after {
    content: "NWR&V • Consiglio Direttivo";
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.60rem;
    font-weight: 700;
    color: #4d798b55;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cd-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.10),
        0 14px 26px rgba(0, 0, 0, 0.10);
}

/* ============================
   HEADER CARD
============================ */

.cd-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.cd-card-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #355866;
    position: relative;
}

/* Accento grafico sotto il titolo */
.cd-card-header h2::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 28px;
    height: 2px;
    background: #4d798b;
    border-radius: 2px;
}

/* ============================
   BADGE ISTITUZIONALI
============================ */

.cd-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.70rem;
    font-weight: 700;
    border-radius: 6px;
    margin-left: auto;
    background: #355866;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cd-badge-info {
    background: #355866;
}

.cd-badge-web {
    background: #4d798b;
}

.cd-badge-pdf {
    background: #b83232;
}

/* ============================
   ICONA PREMIUM ROTONDA
============================ */

.cd-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e6eef1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-icon-circle i {
    font-size: 1.6rem;
    color: #355866;
}

.cd-card:hover .cd-icon-circle i {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 4px #4d798b55);
}

/* ============================
   TESTO
============================ */

.cd-text p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.55;
}

/* ============================
   LISTE + MINI-ICONE PREMIUM
============================ */

.cd-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.cd-list li {
    font-size: 0.95rem;
    margin-bottom: 6px;
    padding-left: 26px;
    position: relative;
}

.cd-list li::before {
    content: "\f058";
    /* check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #4d798b;
    font-size: 1rem;
    line-height: 1;
}

.cd-origin {
    font-size: 0.95rem;
    color: #355866;
    /* più scura → più leggibile */
    margin-top: 8px;
    margin-bottom: 18px;
    font-style: italic;
    opacity: 1;
    /* leggibilità piena */
    font-weight: 500;
    /* più autorevole */
}

/* DESKTOP: icone premium */
.cd-list li::before {
    content: "\f058";
    /* check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #4d798b;
    font-size: 1rem;
    line-height: 1;
}

/* MOBILE: pallino elegante */
@media (max-width: 900px) {
    .cd-list li {
        padding-left: 20px;
        /* più aria */
    }

    .cd-list li::before {
        content: "•";
        font-family: inherit;
        font-weight: 700;
        font-size: 1.2rem;
        color: #4d798b;
        top: -2px;
    }
}

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

@media (max-width: 900px) {

    .cd-block::before {
        left: 8px;
        transform: none;
    }

    .cd-card {
        padding: 20px 18px;
        margin-bottom: 12px;
    }

    .cd-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cd-card-header h2 {
        font-size: 1.25rem;
    }

    .cd-icon-circle {
        width: 46px;
        height: 46px;
    }

    .cd-icon-circle i {
        font-size: 1.4rem;
    }

    .cd-list li {
        padding-left: 20px;
    }
}