/* site footer */
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 20px;
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    border-top: 1px solid var(--tile-border, #e5e5e5);
    color: var(--text-dim, #666);
    gap: 16px;
}

.footer-brand p {
    margin: 0;
}

.footer-url {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-url:hover {
    color: var(--tile-accent, #000);
}

.heart {
    color: #e25555;
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-brand:hover .heart {
    transform: scale(1.2);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    color: var(--text-dim, #666);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.2s ease;
}

.footer-links a>i {
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--tile-accent, #000);
    transform: translateY(-2px);
}


@media (max-width: 600px) {
    .site-footer {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        gap: 16px;
    }
}
