
/*Footer*/
footer {
    font-weight: bold;
    color: var(--footer-text-color) !important;
    background-color: var(--footer-background-color);
    height: auto;
    margin-top: 20px;
    padding: 15px;
    position: relative;
    bottom: 0;
    min-height: 200px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: flex-start;
    gap: 16px;
}

.footer-column {
    min-width: 0;
    text-align: center;
}

.colophon {
    text-align: center;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer-legal-links a {
    color: var(--footer-text-color);
    text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
    color: #fff;
    text-decoration: underline;
}

.footer-version-link {
    color: var(--footer-text-color);
    text-decoration: none;
}

.footer-version-link:hover,
.footer-version-link:focus {
    color: #fff;
    text-decoration: underline;
}

.colophon p {
    margin: 0;
}

@media (max-width: 767.98px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-spacer {
        display: none;
    }

    .footer-legal-links {
        align-items: center;
    }
}
