.footer {
    padding: 1rem 1rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* ładne zachowanie na mobile */
    gap: 1rem;
}

/* Lewa kolumna — pusta, ale potrzebna do centrowania */
.footer__left {
    flex: 1;
}

/* Środkowa kolumna — DOM-BUD wyśrodkowane */
.footer__center {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: var(--color-muted);
    letter-spacing: 0.5px;
}

/* Prawa kolumna — Twoje dane */
.footer__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem;
    /* mniejszy odstęp */
    margin-right: 2rem;
    /* trochę mniej */
    font-size: 0.7rem;
    color: var(--color-muted);
}

/* Link promocyjny */
.footer__author {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    /* mniejszy odstęp */
    text-decoration: none;
    color: var(--color-accent);
    font-weight: 500;
    /* lżejszy font */
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer__author:hover {
    color: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* Ikona GitHuba — mniejsza */
.footer__icon {
    width: 1.1rem;
    /* było 1.3rem */
    height: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.footer__author:hover .footer__icon {
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer {
        flex-direction: column;
        padding-bottom: 3rem;
    }

    .footer__right {
        margin-right: 0rem;
    }
}