/* SEZIONE DETTAGLIO CORSO */
.corso-dettaglio {
    padding: 80px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.corso-dettaglio h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
}

.intro {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 50px;
}

/* SOTTOCORSI */
.sottocorsi {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.sottocorso {
    background: #ffffffd0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-left: 6px solid #97CA41; /* verde brand */
}


.sottocorso h3 {
    font-size: 22px;
    margin-bottom: 10px;
    position: relative;
}

.sottocorso h3::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #97CA41;
    display: block;
    margin-top: 6px;
    border-radius: 2px;
}


.sottocorso:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}


.insegnante {
    font-size: 16px;
    font-weight: 600;
}
