/* Shared Footer Styles for all domains */

.footer {
    width: 100%;
    background: var(--c1, #222);
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
    font-size: 1rem;
    border-top: 1px solid var(--c2, #4a90e2);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.07);
}

.footer-list a :hover {
    cursor: pointer;
    text-decoration: underline;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.footer-item {
    color: #bfc7d5;
    font-weight: 400;
    font-size: 1rem;
    padding: 2px 8px;
    border-radius: 4px;
    transition: background 0.18s, color 0.18s;
    cursor: pointer;
}

.footer-item:hover {
    background: rgba(180, 190, 210, 0.12);
    color: #4a90e2;
}

.footer-item:active {
    background: rgba(180, 190, 210, 0.22);
    color: #007bff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin: 0.5rem 0 0.2rem 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: #bfc7d5;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    padding: 2px 8px;
    border-radius: 4px;
    transition: background 0.18s, color 0.18s;
}

.footer-links a:hover {
    background: rgba(180, 190, 210, 0.12);
    color: #4a90e2;
}

.footer-links a:active {
    background: rgba(180, 190, 210, 0.22);
    color: #007bff;
}

.footer .footer-spacer {
    height: 32px;
    width: 100%;
    display: block;
}

@media (max-width: 900px) {
    .footer {
        font-size: 0.95rem;
        padding: 1.2rem 0 0.8rem 0;
    }
}

@media (max-width: 600px) {
    .footer {
        font-size: 0.9rem;
        padding: 1rem 0 0.5rem 0;
    }
}