/* GWM Footer */
.gwm-site-footer {
    background: var(--gwm-color-primary-dark);
    color: rgba(255, 255, 255, 0.82);
    margin-top: 64px;
}

.gwm-footer-widgets {
    padding: 54px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gwm-footer-widget-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gwm-footer-widget-column {
    min-width: 0;
}

.gwm-footer-bottom {
    padding: 20px 0;
}

.gwm-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gwm-footer-copyright {
    margin: 0;
}

.gwm-site-footer a {
    color: #fff;
}

.gwm-site-footer .widget-title,
.gwm-site-footer .widgettitle {
    color: #fff;
}

@media (max-width: 980px) {
    .gwm-footer-widget-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gwm-footer-widget-grid {
        grid-template-columns: 1fr;
    }

    .gwm-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}