/* Global Reusable Site Footer */
.site-footer {
    width: 100%;
    background-color: #e2e8f0; /* Silver Gray */
    color: #0f172a; /* Deep Slate / Black */
    border-top: 1px solid #cbd5e1; /* Silver Gray Border */
    box-sizing: border-box;
    position: relative;
    z-index: 40;
    margin-top: auto;
    margin-bottom: 0 !important;
}

.site-footer-inner {
    width: 100%;
    min-height: 100px;
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto;
    font-size: 0.825rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.015em;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.site-footer-inner.container-boxed {
    max-width: 80rem;
}

.site-footer-inner.container-full {
    width: 100%;
}

.site-footer-copyright {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.825rem;
    line-height: 1.5;
}

/* Global Untouchable Logos Across All Portals & Sections */
img[src*="logo"],
.site-logo,
.logo-img,
.untouchable-logo,
[class*="logo"] img {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    -webkit-touch-callout: none !important;
    cursor: default !important;
}

@media print {
    .site-footer {
        display: none !important;
    }
}

