footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    padding: var(--space-xxl);
}

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xxl);
}

.footer__nav {
    width: calc(50% - (var(--space-xxl) / 2));

    display: flex;
    justify-content: space-between;
    gap: var(--space-xxl);
}

.footer__col {
    width: calc(50% - (var(--space-xxl) / 2));

    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__links > a {
    width: max-content;
}

.footer__highlight {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-m);

    margin-top: var(--space-xxl);
}

.footer__social-media-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-m);
}

.footer__hr {
    margin: var(--space-xxl) 0;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .footer__nav {
        width: 100%;
    }

    .footer__highlight {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer__nav {
        flex-direction: column;
    }

    .footer__col {
        width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: initial;
    }
}