/* Footer – nezávislé na Vite / npm build */

.site-footer {
    border-top: 1px solid #e8ecf0;
    background-color: #e8ecf0;
    padding: 2.5rem 0;
}

.site-footer__inner {
    display: flex;
    max-width: 80rem;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .site-footer__inner {
        flex-direction: row;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .site-footer__inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.site-footer__copy {
    margin: 0;
    text-align: center;
    font-size: 0.875rem;
    color: #354656;
}

@media (min-width: 640px) {
    .site-footer__copy {
        text-align: left;
    }
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #354656;
}

.site-footer-nav a,
.site-footer-nav button {
    border: none;
    background: none;
    padding: 0.25rem 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.site-footer-nav a:hover,
.site-footer-nav button:hover {
    color: #121a22;
}

.site-footer-nav__sep {
    padding: 0 0.125rem;
    color: #9aa8b5;
    user-select: none;
}
