/* ==============================
   PRESENTAZIONE HOMEPAGE
============================== */
.presentazione {
    margin-top: 40px;
    line-height: 1.6;
}
.presentazione-img {
    float: left;
    width: 330px;   
    max-width: 100%;
    margin: 40px 40px 20px 0;
    display: block;
}
.presentazione::after {
    content: "";
    display: block;
    clear: both;
}
.presentazione-lastp {
    margin-top: 40px;
}
/* link */
.link-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-top: -20px;
}
.link-text {
    text-decoration: none;
    font-weight: 500;
}
.link-text:hover {
    text-decoration: underline;
}
.arrow {
    font-weight: 500;
}
.link-bottom-2 {
    margin-bottom: 0;
}

/* responsive homepage */
@media (max-width: 768px) {

    .presentazione-img {
        float: none;
        width: 100%;
        max-width: 330px;
        display: block;
        margin: 0 auto 20px auto; /* 🔥 CENTRATA */
    }
    .link-wrapper {
        justify-content: flex-start;
        margin-top: 8px;
    }
}