.vp-footer-divider {
    width: 100%;
    line-height: 0;
    padding-top: 180px;
}

.vp-footer-divider img {
    display: block;
    width: 100%;
    height: auto;
}

.vp-footer {
    position: relative;
    padding: 0 40px 28px;
    color: #fff;
    overflow: hidden;
    background: #754340;
}

.vp-footer-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.vp-footer-top {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    padding: 120px 0;
    align-items: stretch;
}

.vp-footer-col {
    padding: 40px 30px;
    text-align: center;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* via i border vecchi */
.vp-footer-col:not(:last-child) {
    border-right: 0;
}

.vp-footer-v-line {
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform-origin: center top;
}

.vp-footer-label {
    margin: 0 0 18px;
    font-family: Jost, sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: .14em;
    color: #fff;
}

.vp-footer-link,
.vp-footer-text {
    margin: 0;
    display: block;
    font-family: Jost, sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9em;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vp-footer-link:hover {
    color: #fff;
}

.vp-footer-bottom-wrap {
    position: relative;
}

.vp-footer-bottom-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.25);
    transform-origin: left center;
}

.vp-footer-logo {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    padding: 0 28px;
    background: #754340;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-footer-logo img {
    display: block;
    background: #fdfdf7;
    padding: 10px;
    width: 100%;
    height: auto;
}

.vp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
}

.vp-footer-socials {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.vp-footer-social,
.vp-footer-author p,
.vp-footer-author a {
    margin: 0;
    font-family: Jost, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vp-footer-social:hover,
.vp-footer-author a:hover {
    color: #fff;
}

@media (max-width: 1060px) {
    .vp-footer {
        padding: 0 30px 30px;
    }

    .vp-footer-top {
        grid-template-columns: 1fr;
        padding: 80px 0;
    }

    .vp-footer-v-line {
        display: none;
    }

    .vp-footer-col {
        min-height: auto;
        padding: 40px 20px;
    }

    .vp-footer-col:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    .vp-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
        gap: 18px;
    }

    .vp-footer-socials {
        justify-content: center;
    }

    .vp-footer-logo {
        padding: 0 18px;
    }

    .vp-footer-logo img {
        max-width: 110px;
    }
}