/* qui si gestisce il css di contatti:
    10.3 contatti
*/
/* ------------------------------------------------------------
   10.3 CONTATTI
------------------------------------------------------------ */
/* CONTENITORE PRINCIPALE */
.page-content{
    max-width:1100px;
    margin:45px auto;
    padding:40px 45px;
    background:white;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,.10);
}
/* GRIGLIA CONTATTI */
.contact-grid{
    display:grid;
    grid-template-columns:minmax(0, 1.4fr) minmax(280px, .8fr);
    gap:45px;
    align-items:stretch;
}
/* SEZIONI */
.contact-card{
    min-width:0;
}
.contact-card h3{
    color:#003366;
    margin-bottom:20px;
    font-size:1.7rem;
}
.contact-card p{
    line-height:1.7;
}
/* DOVE SIAMO */
.contact-location{
    padding-right:45px;
    border-right:2px solid #d6a437;
}
.contact-address{
    margin-bottom:20px;
    color:#333;
    font-size:1.05rem;
}
/* MAPPA */
.contact-map{
    width:100%;
    margin-top:20px;
    overflow:hidden;
    border-radius:12px;
}
.contact-map iframe{
    display:block;
    width:100%;
    height:350px;
    border:0;
}
/* RECAPITI */
.contact-details{
    display:flex;
    flex-direction:column;
}
.contact-item{
    padding:20px 0;
    border-bottom:1px solid #d6d6d7;
}
.contact-item:first-of-type{
    padding-top:5px;
}
.contact-item:last-child{
    border-bottom:none;
}
.contact-item strong{
    display:block;
    margin-bottom:8px;
    color:#003366;
    font-size:1.05rem;
}
.contact-item a{
    display:inline-block;
    color:#0066cc;
    text-decoration:none;
    line-height:1.6;
    overflow-wrap:anywhere;
    transition:color .2s ease;
}
.contact-item a:hover{
    color:#d6a437;
    text-decoration:underline;
}
