/*
blacklisted.work — Footer Component
Purpose:
- Footer layout and footer-specific elements
*/

footer.site-footer {
    background: var(--panel);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* Footer container spacing */
footer.site-footer .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 16px;
}

/* Top row: logo + info */
footer.site-footer .footer-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Linked logo */
footer.site-footer .footer-home {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* Logo sizing */
footer.site-footer .footer-logo {
    display: block;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Media Link sizing */
/* Footer media icon (Session) */
footer.site-footer .footer-icons .media-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 0;              /* removes stray inline spacing */
    text-decoration: none;       /* just in case you add text later */
}

/* Media logo sizing + behavior */
footer.site-footer .footer-icons .media-link .media-logo {
    display: block;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}


/* Right-side info area */
footer.site-footer .footer-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

/* Contact line */
footer.site-footer .footer-contact {
    color: var(--text);
}

/* Placeholder icon row */
footer.site-footer .footer-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Bottom row: centered copyright */
footer.site-footer .footer-bottom {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
}
