/* ============================================================
   LSH — Footer styles
   Porting da wordpress/footer.php (CSS inline → file dedicato).
   ============================================================ */

.lsh-footer {
    background:
        radial-gradient(circle at top left, rgba(108, 205, 141, 0.08), transparent 28%),
        linear-gradient(180deg, #103226 0%, #0a2018 100%);
    color: rgba(255, 255, 255, 0.92);
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lsh-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.lsh-footer-top {
    padding: 52px 0 34px;
}

.lsh-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.lsh-footer-col h2 {
    margin: 0 0 14px;
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.lsh-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lsh-footer-col li + li {
    margin-top: 10px;
}

.lsh-footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.lsh-footer a:hover,
.lsh-footer a:focus-visible {
    color: #ffffff;
}

.lsh-footer a:focus-visible {
    outline: 2px solid rgba(162, 230, 184, 0.85);
    outline-offset: 3px;
    border-radius: 4px;
}

.lsh-footer-brand {
    padding-right: 12px;
}

.lsh-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lsh-footer-logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.lsh-footer-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.lsh-footer-tagline {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 600;
}

.lsh-footer-desc {
    margin: 0;
    max-width: 34ch;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.lsh-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    list-style: none;
    padding: 0;
}

.lsh-footer-social li {
    list-style: none;
}

/* Override font-size per il glifo X usato come testo in .lsh-social-icon
   (negli altri social l'icona è SVG quindi non sento di questo) */
.lsh-footer-social .lsh-social-icon > span {
    font-size: 16px;
}

.lsh-footer-bottom {
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lsh-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px 28px;
}

.lsh-footer-copy {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.lsh-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.lsh-footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1080px) {
    .lsh-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .lsh-footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .lsh-footer-desc {
        max-width: 60ch;
    }
}

@media (max-width: 740px) {
    .lsh-footer-top {
        padding: 40px 0 26px;
    }

    .lsh-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lsh-footer-col {
        padding-bottom: 6px;
    }

    .lsh-footer-col h2 {
        margin-bottom: 10px;
    }

    .lsh-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .lsh-footer-legal {
        justify-content: flex-start;
    }
}
