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

.contact-page {
    width: 100%;
    min-height: calc(100vh - 60px);
    box-sizing: border-box;

    padding: 30px 20px;

    background: #e5e5e5;
    border: 6px solid #000;

    font-family: var(--font-2);
    color: #000;
}


/* =========================================
   CONTENT
   ========================================= */

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(180px, 0.8fr);
    gap: 80px;

    width: 100%;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.contact-description {
    max-width: 800px;
}

.contact-description p {
    margin: 0 0 25px;
    font-family: var(--font-2);
    font-size: 20px;
    line-height: 1.02;
    letter-spacing: 1px;
    font-weight: 400;
}

.contact-description p:last-child {
    margin-bottom: 0;
}


/* =========================================
   CONTACT DETAILS
   ========================================= */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding-top: 1px;
}


.contact-person {
    display: flex;
    flex-direction: column;
}


.contact-person a {
    display: block;

    width: fit-content;

    font-family: var(--font-1-reg);
    font-size: 19px;
    line-height: 1.05;
    font-weight: 400;

    color: #000;
    text-decoration: underline;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .contact-page {
        min-height: 80vh;

        padding: 12px 7px 20px;

        border-width: 5px;
    }


    .contact-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }


    /* =====================================
       DESCRIPTION
       ===================================== */

    .contact-description {
        max-width: none;
    }

    .contact-description p {
        margin-bottom: 16px;

        font-size: 18px;
        line-height: 1.02;
    }


    /* =====================================
       CONTACTS
       ===================================== */

    .contact-details {
        gap: 16px;

        padding-top: 0;
    }

    .contact-person a {
        font-size: 17px;
        line-height: 1.05;
    }

}