/* Footer container */
#fce-footer {
    padding: 12px 20px;
    white-space: nowrap;
    display: block;
    border-top: 1px solid rgba(255,255,255,0.15);
    transition: opacity 0.25s ease;
}

/* Hover effect on entire footer */
#fce-footer:hover {
    opacity: 0.95;
}

/* FORCE all text inside footer to inherit the footer text colour */
#fce-footer,
#fce-footer *,
#fce-footer a,
#fce-footer .fce-separator {
    color: inherit !important;
}

/* Link styling */
#fce-footer a {
    text-decoration: none;
    padding: 0 8px;
    transition: opacity 0.2s ease;
}

/* Hover effect */
#fce-footer a:hover {
    opacity: 0.7;
}

/* Separator styling */
#fce-footer .fce-separator {
    padding: 0 6px;
    opacity: 0.6;
}

/* Responsive behaviour */
@media (max-width: 600px) {
    #fce-footer {
        text-align: center !important;
        white-space: normal;
        line-height: 1.6;
    }
}
