/* ===== Footer ===== */
.gws-footer {
    position: relative;
    background-color: #0A1F0F;
    overflow: hidden;
}
.gws-footer-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-bottom: -1px;
}
.gws-footer-divider svg {
    width: 100%;
    height: 90px;
    display: block;
}
.gws-footer-divider svg path {
    fill: #0A1F0F;
}
.gws-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
}
/* CTA banner */
.gws-footer-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    padding-top: 20px;
}
.gws-footer-cta-headline {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 38px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 16px;
}
.gws-footer-cta-subtext {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    color: #cccccc;
    margin: 0 0 30px;
}
/* Main footer columns */
.gws-footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gws-footer-logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
}
.gws-footer-tagline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #a9b8ae;
    max-width: 320px;
    margin: 0;
}
.gws-footer-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0 0 22px;
}
.gws-footer-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    column-count: 2;
    column-gap: 30px;
}
.gws-footer-menu li {
    list-style: none !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    break-inside: avoid;
}
.gws-footer-menu li a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: #d0d8d4;
    text-decoration: none;
    transition: color 0.25s ease;
}
.gws-footer-menu li a:hover {
    color: #2ecc71;
}
.gws-footer-contact-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.gws-footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: #d0d8d4;
}
.gws-footer-contact-list li svg {
    flex-shrink: 0;
    color: #2ecc71;
}
.gws-footer-contact-list li a {
    color: #d0d8d4;
    text-decoration: none;
    transition: color 0.25s ease;
}
.gws-footer-contact-list li a:hover {
    color: #2ecc71;
}
/* Sub-footer */
.gws-subfooter {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
}
.gws-subfooter-copy {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #8b9a90;
}
.gws-site-credit {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #8b9a90;
}
.gws-site-credit a {
    color: #8b9a90;
    text-decoration: underline;
    transition: color 0.25s ease;
}
.gws-site-credit a:hover {
    color: #ffffff;
}
.gws-subfooter-links {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: end !important;
}
.gws-subfooter-links a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #8b9a90;
    text-decoration: none;
    transition: color 0.25s ease;
}
.gws-subfooter-links a:hover {
    color: #ffffff;
}
.gws-subfooter-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
}
/* Mobile */
@media (max-width: 767px) {
    .gws-footer-cta-headline {
        font-size: 28px;
    }
    .gws-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gws-subfooter {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .gws-site-credit {
        order: 3;
    }
    .gws-subfooter-links {
        order: 2;
        justify-self: center !important;
    }
}