
/* ============================================================
   Pagina Formazione — Modulo 10
   ============================================================ */

/* Body wrapper della sezione FormaRe.te */
.eco-formazione-body {
    max-width: 820px;
    margin: 24px auto 16px;
}
.eco-formazione-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #032019;
    margin: 0 0 18px;
}
.eco-formazione-body a { color: #00411D; font-weight: 700; }
.eco-formazione-body a:hover { color: #56F09F; }

/* Quote — blockquote stilizzato (sostituisce H6 anti-pattern del legacy) */
.eco-quote {
    border-left: 4px solid #56F09F;
    padding: 12px 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: #032019;
}
.eco-quote cite {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #00411D;
    opacity: 0.8;
}
.eco-quote--inverse {
    border-left-color: #56F09F;
    color: #FFFFFF;
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: left;
}
.eco-quote--inverse cite {
    color: #56F09F;
    opacity: 1;
}

/* Sedi grid */
.eco-sedi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
}
.eco-sede-card {
    background: #FFFFFF;
    border: 1px solid rgba(3,32,25,0.10);
    border-radius: 16px;
    padding: 24px;
    transition: all 250ms ease-in-out;
}
.eco-sede-card:hover {
    border-color: #56F09F;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(3,32,25,0.10);
}
.eco-sede-card__city {
    display: block;
    font-family: "Host Grotesk", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #032019;
    margin-bottom: 12px;
}
.eco-sede-card__addr {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #032019;
    opacity: 0.85;
}
.eco-sede-card__tel {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}
.eco-sede-card__tel a {
    color: #00411D;
    text-decoration: none;
    border-bottom: 1px dotted #00411D;
}
.eco-sede-card__tel a:hover {
    color: #56F09F;
    border-bottom-color: #56F09F;
}

/* Features list (aule didattiche) */
.eco-features-list {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(3,32,25,0.08);
}
.eco-features-list h3 {
    margin: 0 0 16px;
    font-size: 20px;
    color: #032019;
    font-weight: 700;
}
.eco-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eco-features-list li {
    padding: 8px 0 8px 28px;
    border-bottom: 1px solid rgba(3,32,25,0.08);
    font-size: 15px;
    color: #032019;
    position: relative;
}
.eco-features-list li:last-child { border-bottom: none; }
.eco-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #56F09F;
    font-weight: 700;
}
