/* === ADA - MDC Footer Styling Update (2026-03-16) === */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.site-footer-container {
    position: static;
    /*width: 100vw;*/          /* span the full viewport width */
    /*margin-left: calc(-50vw + 50%);*/ /* break out of any centered/table parent */
    margin-right: 0;
    padding: 32px 24px 16px 24px;
    box-sizing: border-box;
    background-color: #295D92 !important;
    color: #fff !important;
    flex-shrink: 0;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
}

/* ── Pull the mdc-footer custom element itself to the left edge ── */
mdc-footer {
    display: block;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    clear: both;
}

/* ── Grid container (replaces Bootstrap .container + .footer-grid) ── */
.site-footer-container .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-footer-container .footer-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

/* ── Four equal columns (replaces Bootstrap .col-lg-3) ── */
.site-footer-container .col-lg-3 {
    flex: 1 1 22%;
    min-width: 160px;
    padding: 0 20px 24px 20px;
    box-sizing: border-box;
}

/* ── Full-width disclaimer row (replaces Bootstrap .col-lg-12) ── */
.site-footer-container .col-lg-12 {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 0.88em;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
    margin-top: 8px;
}
h2 {
    text-align: left;
}
/* ── Column headings ── */
.site-footer-container .footer-title {
    color: #fff !important;
    font-size: 1.15em !important;
    font-weight: bold;
    margin: 0 0 14px 0;
    letter-spacing: 0.5px;
}

/* ── Link lists ── */
.site-footer-container ul.mdc-custom__footer__links {
    list-style: none;
    padding: 0;
    margin: 0;

}

    .site-footer-container ul.mdc-custom__footer__links li {
        margin-bottom: 8px;
        list-style: none;
        text-align: left;
    }

.site-footer-container ul.mdc-custom__footer__links li a {
    color: #fff;
    text-decoration: none;
    font-size: .98rem;
    transition: color 0.2s;
}

.site-footer-container ul.mdc-custom__footer__links li a:hover,
.site-footer-container ul.mdc-custom__footer__links li a:focus {
    color: #add8e6;
    text-decoration: underline;
}

/* ── Logo / copyright column ── */
.site-footer-container .right-align-logo {
    text-align: left;
}

.site-footer-container .md-logo-footer {
    max-width: 160px;
    margin-bottom: 10px;
    display: block;
    margin-left: 0;
}

.site-footer-container .right-align-logo p {
    margin: 6px 0;
    font-size: .98rem;
    color: #fff;
}

/* ── Footer disclaimer ── */
.site-footer-container .footer-disclaimer {
    font-size: .98rem;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 0;
}

    /* === END: ADA - MDC Footer Styling Update (2026-03-16) === */