#footer {
    background-color: #002858; /* Figma footer top */
    color: #fff;
}

#footer .school-info {
    padding: 39px 0;
}

#footer .school-info .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Left column: logo + social icons stacked */
#footer .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

#footer .footer-left img {
    max-height: 64px;
    width: auto;
}

#footer .footer-left .socials {
    display: flex;
    gap: 12px;
}

#footer .school-info .social-links {
    max-width: 27px;
    width: 27px;
    display: inline-block;
}

#footer .school-info .social-links img {
    width: 100%;
}

/* Right: campus columns with a 1px white vertical divider */
#footer .footer-locations {
    display: flex;
    gap: 40px;
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid #fff;
}

#footer .footer-col h4 {
    font-family: var(--primary-font);
    font-weight: 700; /* Poppins Bold */
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    width: fit-content; /* [MERCY-115] underline matches the title text width */
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #FF9527; /* [MERCY-115] orange underline under footer section titles */
}

#footer .footer-col p {
    font-family: var(--primary-font);
    font-weight: 400; /* Poppins Regular */
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    margin: 0;
}

/* [MERCY-115] iOS Safari auto-detects phone numbers in the address text and wraps them in
   tel: links painted link-blue (only visible on device). Keep them tappable but match the
   white footer text. -webkit-text-fill-color overrides iOS's stubborn auto-link color. */
#footer .footer-col a,
#footer .footer-col a[href^="tel:"] {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    text-decoration: none;
}

#footer .footer-copyright {
    background-color: #00224C; /* Figma footer bottom (darker) */
    padding: 8px 0;
    text-align: center;
}

#footer .footer-copyright .container span,
#footer .footer-copyright .container a {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
}

#footer .footer-copyright a {
    color: #fff;
}

@media screen and (max-width: 999px) {
    #footer .school-info .container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    #footer .footer-left {
        align-items: center;
    }

    #footer .footer-locations {
        flex-direction: column;
        gap: 24px;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        text-align: center;
        align-items: center;
    }

    /* center the campus name + address lines on tablet/mobile */
    #footer .footer-col,
    #footer .footer-col h4,
    #footer .footer-col p {
        text-align: center !important;
        width: 100%;
    }
}