/* ==========================================================================
   Site Footer - simple copyright + legal links
   ========================================================================== */

.site-footer {
    background: #1a1a1a;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    padding: 20px 20px;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-footer__copy {
    margin: 0;
    font-size: 13.5px;
    color: #cccccc;
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: #a6192e;
    outline: none;
}

.site-footer__dot {
    color: #555555;
    font-size: 12px;
}

/* ---------------- Mobile responsive ---------------- */
@media (max-width: 560px) {
    .site-footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
