/* =========================================
   PAGINA CONTATTI
========================================= */

.ctt-main {
    margin-top: 60px;
}

.ctt-section {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 60px;
    align-items: center;
}

.ctt-text p {
    margin: 10px 0;
}

.ctt-nome {
    font-size: 1.1em;
}

.ctt-text a {
    color: var(--blu);
    text-decoration: none;
}

.ctt-text a:hover {
    text-decoration: underline;
}

.ctt-text p:first-of-type {
    margin-bottom: 1.6em;
}

.ctt-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ctt-image {
    max-width: 240px;
    width: 100%;
    height: auto;
}

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

@media (max-width: 768px) {

    .ctt-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ctt-media {
        justify-content: flex-start;
    }
}
