/* Společná patička veřejné části. */
.site-footer {
    box-sizing: border-box;
    clear: both;
    display: flex;
    width: 100%;
    margin: 28px 0 0;
    padding: 18px 20px;
    border: 1px solid var(--pb-border);
    border-top: 4px solid var(--pb-primary);
    border-radius: 12px 12px 0 0;
    background: var(--pb-surface);
    color: var(--pb-muted);
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 16px;
}

.site-footer-links a,
.site-footer-owner a {
    color: var(--pb-muted);
    text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible,
.site-footer-owner a:hover,
.site-footer-owner a:focus-visible {
    color: var(--pb-primary-hover);
    text-decoration: underline;
}

.site-footer-rss {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.site-footer-rss img {
    display: block;
}

.site-footer-owner {
    display: flex;
    flex: 0 0 auto;
    margin: 0;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

@media screen and (max-width: 720px) {
    .site-footer {
        display: block;
        margin-top: 20px;
        padding: 17px 14px;
        text-align: center;
    }

    .site-footer-links {
        justify-content: center;
    }

    .site-footer-owner {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
        white-space: normal;
    }
}
