/* Shared footer logo — include on all public pages with <footer> */
.footer-brand {
    margin: 12px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
}

.footer-brand-link:focus-visible {
    outline: 3px solid rgba(184, 90, 58, 0.45);
    outline-offset: 3px;
}

.footer-brand img {
    max-height: 40px;
    width: auto;
    max-width: min(260px, 88vw);
    height: auto;
    object-fit: contain;
    display: block;
}

/* Branding images: disable drag-and-drop (ghost image / save-as drag) */
.logo img,
.about-hero-logo img,
.sidebar-brand img,
.footer-brand img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
}

.footer-brand-text-link {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #b85a3a;
    text-decoration: none;
}

.footer-brand-text-link:hover {
    text-decoration: underline;
}

body.dark-mode .footer-brand-text-link {
    color: var(--accent-color);
}
