/* ==============================
   HOME (index.html)
   - Layout presentazione in grid
   - Link "per saperne di più"
============================== */


/* ==============================
   PRESENTAZIONE
   Testo + Foto profilo
============================== */

.presentazione {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

/* Immagine profilo */

.presentazione-img img {
    width: 100%;
    height: auto;
    display: block;
}


/* ==============================
   LINK "PER SAPERNE DI PIÙ"
============================== */

.link-wrapper,
.link-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.link-wrapper {
    margin-top: 8px;
}

/* Secondo link leggermente avvicinato alla lista */
.link-wrapper-2 {
    margin-top: -6px;
}

.link-text {
    text-decoration: none;
    font-weight: 500;
}

.link-text:hover {
    text-decoration: underline;
}

.arrow {
    font-weight: 500;
}


/* ==============================
   MICRO-SPAZIATURE
============================== */

.link-bottom-1 {
    margin-bottom: 0.2em;
}

.link-bottom-2 {
    margin-bottom: 0;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px) {

    .presentazione {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .presentazione-img {
        max-width: 330px;
    }

    .link-wrapper,
    .link-wrapper-2 {
        justify-content: flex-start;
    }

    .link-wrapper-2 {
        margin-top: 8px;
    }
}