/* ================================
   CONTAINERS (for 7-footer.shtml)
   ================================ */
    
/* =====Footer Container=========== */
.site-footer {
    
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 -4px 4px -4px rgba(0,0,0,0.15); /* subtle shadow */
    height: 10vh;              /* consistent header height */
    display: flex;
    justify-content: center;    /* centers inner content */
    align-items: center;
    margin: 0;
    padding: 0;
    /* width: 100%;
    z-index: 1000;             /* ensures header stays above content */
}

/* =====Inner Container============= */
.site-footer .footer-inner {
    max-height: 12vh;
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;  /* logo left, nav right */
    align-items: center;
    padding: 0 1rem;
}