/* ==========================================================================
   footer.css
   ========================================================================== */

.site-footer {
    width: 100%;
    background-color: var(--color-background);
    border-top: 0.0625rem solid var(--color-border);
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-medium) var(--space-large);
    width: 100%;
    box-sizing: border-box;
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: var(--font-size-small);
}

.footer-impressum {
    color: var(--color-text-muted);
    font-size: var(--font-size-small);
    text-decoration: none;
    border-bottom: 0.0625rem solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-impressum:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
}