footer {
    margin-top: auto;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.75rem;
    column-gap: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
    background: var(--bg-primary);
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .footer {
        column-gap: 2rem;
    }
}

.footer a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--color-primary);
}