.footer-top-wrapper {
    background-color: #333;
}

.footer-top {
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    padding: 3rem 1rem;
    color: var(--color-text-light);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    min-width: 300px;
}

.footer-column h4 {
    color: var(--color-text-light);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.footer-column p {
    padding-bottom: 1rem;
    line-height: 1.5;
}
.footer-column a {
    display: block;
    padding: 0.125rem 0;
    text-decoration: none;
    color: var(--color-text-light);
}

.footer-bottom {
    background-color: #333;
}

.footer-bottom-content {
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
    color: var(--color-text-light);
    text-align: center;
    border-top: 1px solid #999;
}
.footer-bottom a {
    text-decoration: none;
    color: var(--color-text-light);
}

@media only screen and (max-width: 1080px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .footer-column {
        max-width: 480px;
        text-align: center !important;
    }

    .hf-logo {
        text-align: center;
        padding: 3rem 0;
    }
}

@media only screen and (max-width: 800px) {
    .footer-bottom-content, .bootom-left {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .copyright {
        padding-top: 1rem;
        font-size: 0.75rem;
    }
}