/* ============================================================
   HedgeLists Global Footer
   ============================================================ */

.hl-footer {
    background: #1E293B;
    padding: 48px 20px 0;
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.hl-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
}

/* Logo */
.hl-footer-logo {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}
.hl-footer-logo .accent {
    color: #2EA3F2;
}

/* Description */
.hl-footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 260px;
    margin: 0 0 16px;
}

/* Contact */
.hl-footer-contact {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.hl-footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.hl-footer-contact a:hover {
    color: #fff;
}

/* Column headers */
.hl-footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0 0 16px;
}

/* Links */
.hl-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hl-footer-links li {
    margin: 0;
}
.hl-footer-links a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    line-height: 2.0;
    transition: color 0.15s;
}
.hl-footer-links a:hover {
    color: #fff;
}

/* Bottom bar */
.hl-footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hl-footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.hl-footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    margin-left: 16px;
}
.hl-footer-legal a:hover {
    color: rgba(255,255,255,0.7);
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
    .hl-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .hl-footer-desc {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    /* Columns 2 & 3 side by side */
    .hl-footer-inner > .hl-footer-col:nth-child(2),
    .hl-footer-inner > .hl-footer-col:nth-child(3) {
        display: inline-block;
        vertical-align: top;
        width: 45%;
        text-align: left;
    }
    .hl-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .hl-footer-legal a {
        margin-left: 8px;
        margin-right: 8px;
    }
}
