/* Single canonical footer for every CatchMe (non-BU) page — see templates/_shared/catchme_footer.html.twig */

.cm-footer {
    background: #07111f;
    color: rgba(255, 255, 255, 0.72);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.85rem;
    padding: 28px 24px;
}

.cm-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem 1.4rem;
}

.cm-footer-copy {
    color: rgba(255, 255, 255, 0.5);
}

.cm-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cm-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.cm-footer-nav a,
.cm-footer-partner {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 180ms ease;
}

.cm-footer-nav a:hover,
.cm-footer-nav a:focus-visible,
.cm-footer-partner:hover,
.cm-footer-partner:focus-visible {
    color: #ffffff;
}

.cm-footer-nav a + a::before {
    content: "\00b7";
    display: inline-block;
    margin: 0 0.7em;
    color: rgba(255, 255, 255, 0.3);
}

.cm-footer-partner {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 1rem;
}

@media (max-width: 700px) {
    .cm-footer-partner {
        border-left: 0;
        padding-left: 0;
    }
}
