.showcase-footer {
    background: var(--showcase-pri);
    border-top: var(--border-width--md) solid #0000;
    gap: var(--space--lg);
    padding: var(--space--lg);

}

@media (min-width: 1300px) {
    .site-footer {
        width: 100%;
        -ms-grid-columns: 1fr 433.33333px 12px 433.33333px 12px 433.33333px 1fr;
        grid-template-columns: 1fr 433.33333px 12px 433.33333px 12px 433.33333px 1fr;
    }
}

@media (min-width: 841px) {
    .site-footer {
        width: 100%;
        -ms-grid-columns: 12px 1fr 12px 1fr 12px 1fr 12px;
        -ms-grid-rows: auto auto;
        grid-template-areas:
            ". footer_left . footer_center . footer_right footer_right_end"
            ". footer_bottom footer_bottom footer_bottom footer_bottom footer_bottom .";
        grid-template-columns: 12px 1fr 12px 1fr 12px 1fr 12px;
        grid-template-rows: auto auto;
    }
}

/* General Footer Styling */
.site-footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-family: 'Fira Sans';

    padding: 36px;
}

/* Footer Regions */
.region--footer_left,
.region--footer_center,
.region--footer_right {
    flex: 1 1 400px;
    max-width: 400px;
    min-width: 270px;
}

/* Center content alignment for desktop */
.region--footer_center {
    text-align: left;
}

/* Right content alignment */
.region--footer_right {
    text-align: right;
}

/* Responsive Styles for Mobile */
@media (max-width: 580px) {
    .site-footer {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .region--footer_left,
    .region--footer_center,
    .region--footer_right {
        width: 100%;
        text-align: center;
    }
}


.region--footer_center .menu {
    padding: 0;
    list-style: none;

}

.region--footer_center .menu a:hover {
    color: #bad80a !important;
    background: #0062a0 !important;
}

.blue-bg ul.menu li,
.site-footer ul.menu li {
    border-left-color: #0062a0;
}

@media (min-width: 841px) {

    .blue-bg ul.menu li,
    .site-footer ul.menu li,
    .gray-bg ul.menu li {
        border-left-width: 3px;
    }
}

.blue-bg ul.menu a,
.site-footer ul.menu a,
.gray-bg ul.menu a {
    border-left: solid 2px #0062a0;
    border-left-width: 3px;
}

.menu li {
    margin-bottom: 0;
}

@media only screen and (min-width: 1100px) {
    .footer-extension {
        position: relative;
        right: 0;
        padding-right: 5px;
    }
}

@media only screen and (min-width: 841px) {
    .footer-extension {
        text-align: right;
    }
}

.footer-extension {
    grid-row: 6;
    position: relative;
    padding-left: 12px;
}

.ribbon {
    position: relative;
    display: block;
    width: 300px;
    margin-bottom: 50px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 5px;
    background: rgba(255, 255, 255, 1) !important;
    transform: translatey(-38px);
    transition: all 0.3s ease;
}

.ribbon:before,
.ribbon:after {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 0;
    height: 0;
    content: "";
    transition-property: border-color;
    border-top: 50px solid rgba(255, 255, 255, 1);
}

.ribbon:before {
    left: 0;
    border-right: 150px solid transparent;
}

.ribbon:after {
    right: 0;
    border-left: 150px solid transparent;
}

.ribbon:hover,
.ribbon:focus,
a.ribbon:active {
    text-decoration: none;
    background-color: rgb(255, 255, 255) !important;
}

.ribbon:hover:after,
.ribbon:focus:after,
.ribbon:active:after,
.ribbon:hover:before,
.ribbon:focus:before,
.ribbon:active:before {
    border-top-color: rgb(255, 255, 255);
}

.ribbon .above {
    display: block;
    color: #006EBB;
    border-bottom: #003f87 2px solid;
    font-size: 28px;
    font-weight: bold;
}

.ribbon .below {
    color: #003f87;
    ;
    font-size: 22px;
}

/* Small screen styles */
@media (max-width: 600px) {
    .ribbon {
        width: 250px;
        padding: 25px;
    }

    .wwu-footer {
        -ms-grid-columns: 30px 1fr 2fr 30px;
        -ms-grid-rows: 30px auto auto 30px;
        grid-template-areas:
            ". .... ..... ."
            ". logo info  ."
            ". logo icons ."
            ". .... ..... .";
        grid-template-columns: 30px 1fr 2fr 30px;
        grid-template-rows: 30px auto auto 30px;
        justify-items: end;
    }
}

/**
 * @file
 * organisms/global/wwu-footer/_wwu-footer.css
 */

.wwu-footer {
    background-color: darkblue;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30px 1fr 2fr 30px;
    -ms-grid-rows: 30px auto 30px auto 30px auto 30px;
    grid-template-areas:
        ". ....  ."
        ". logo  ."
        ". ....  ."
        ". info  ."
        ". ..... ."
        ". icons .";
    grid-template-columns: 30px 1fr 2fr 30px;
    grid-template-rows: repeat(3, 30px auto) 30px;
    justify-items: center;
}
wwu-footer .artwork img {
    background-color: #0077c8 !important;
    transform: translateY(-2px) !important;
}
/* 2018-style footer layout */
.site-footer {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(200px, 260px) minmax(320px, 1fr);
    gap: 36px;
    background: #0077c8;
    color: #fff;
    align-items: start;
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #d8ecff;
}

.region--footer_left {
    max-width: 320px;
}

.region--footer_center {
    position: relative;
    padding-left: 28px;
}

.region--footer_center::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(255, 255, 255, 0.35);
}

.region--footer_center .menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.region--footer_center .menu li {
    margin: 0 0 12px;
}

.region--footer_center .menu a {
    border-left: none;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.region--footer_right {
    text-align: right;
    max-width: 520px;
    margin-left: auto;
}

.footer-extension {
    margin: 0 0 12px;
    padding: 0;
    font-size: 20px;
    letter-spacing: 1px;
}

.license-footer {
    margin-top: 8px;
}

.license-footer img {
    margin-top: 12px;
}

@media (max-width: 980px) {
    .site-footer {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .region--footer_center {
        padding-left: 0;
    }

    .region--footer_center::before {
        display: none;
    }

    .region--footer_right {
        text-align: left;
        margin-left: 0;
    }
}

.region--footer_center .menu a:hover,
.region--footer_center .menu a:focus,
.region--footer_center .menu a:active {
    color: #fff !important;
    background: #0062a0 !important;
}


/* Override Ashlar local-tasks constraints on footer width */
.site-footer {
    max-width: none !important;
    margin: 0 !important;
}
