/* Shared public-site footer — matches index.html .footer-secondary */
.public-site-footer.footer-secondary {
    background: #000000;
    padding: 4rem 2rem 2rem;
    border-top: 4px solid #ffffff;
    color: #ffffff;
}

.public-site-footer.footer-secondary .container {
    max-width: 1400px;
    margin: 0 auto;
}

.public-site-footer .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.public-site-footer .footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.public-site-footer .footer-col ul li {
    margin-bottom: 0.75rem;
}

.public-site-footer .footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.public-site-footer .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.public-site-footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #cccccc;
    font-size: 0.9rem;
}

@media (max-width: 520px) {
    .public-site-footer.footer-secondary {
        padding: 3rem 1.25rem 1.5rem;
    }

    .public-site-footer .row {
        gap: 2rem;
    }
}
