/* Shared Community footer used throughout the customer journey. */
.school-footer {
    background:#f6f8fb;
    padding:12px 0 42px;
}

.school-footer .school-container {
    width:calc(100% - 72px);
    max-width:1480px;
    margin:0 auto;
}

.school-footer-panel {
    background:var(--primary, #17263d);
    color:var(--on-primary, #fff);
    border-radius:24px;
    padding:30px 34px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:36px;
}

.school-footer-brand strong {
    display:block;
    margin-bottom:8px;
    color:var(--on-primary, #fff);
    font-size:24px;
    font-weight:900;
    letter-spacing:-.03em;
}

.school-footer-brand p {
    margin:0;
    color:var(--on-primary, #fff);
    opacity:.74;
    font-size:15px;
    line-height:1.6;
}

.school-footer-brand p a,
.school-footer-links a {
    color:var(--on-primary, #fff);
    text-decoration:none;
}

.school-footer-brand p a {
    opacity:.82;
}

.school-footer-links {
    display:flex;
    gap:22px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.school-footer-links a {
    font-weight:700;
    opacity:.82;
    transition:opacity .2s;
}

.school-footer-brand p a:hover,
.school-footer-links a:hover {
    color:var(--on-primary, #fff);
    opacity:1;
}

.school-footer-panel::before {
    content:"";
    align-self:stretch;
    width:5px;
    min-height:58px;
    border-radius:999px;
    background:var(--secondary, #f5b700);
}

.school-footer-brand {
    margin-right:auto;
}

body.sk-has-community-footer .site-footer,
body.sk-has-community-footer footer.site-footer,
body.sk-has-community-footer .ast-footer-overlay,
body.sk-has-community-footer .site-below-footer-wrap {
    display:none!important;
}

@media(max-width:900px) {
    .school-footer .school-container {
        width:calc(100% - 48px);
    }

    .school-footer-panel {
        flex-direction:column;
        align-items:flex-start;
    }

    .school-footer-panel::before {
        width:64px;
        min-height:5px;
    }

    .school-footer-links {
        justify-content:flex-start;
    }
}

@media(max-width:600px) {
    .school-footer .school-container {
        width:calc(100% - 32px);
    }

    .school-footer-panel {
        padding:30px 24px;
    }
}
