.blx-footer {
    --blx-footer-background: #45aba5;
    --blx-footer-color: #00324b;
    --blx-footer-accent: #00324b;
    background: var(--blx-footer-background);
    color: var(--blx-footer-color);
}

.blx-footer__inner {
    display: flex;
    min-height: 9.375rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.blx-footer__social {
    display: flex;
    align-items: center;
}

.blx-footer__social-link {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(0 50 75 / 55%);
    border-radius: 0.25rem;
    color: inherit;
    font-size: 1.25rem;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.blx-footer__social-link:hover {
    border-color: currentcolor;
    background: rgb(0 50 75 / 10%);
    color: inherit;
    transform: translateY(-1px);
}

.blx-footer__legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    font-size: 1rem;
    line-height: 1.5;
}

.blx-footer__legal a {
    color: inherit;
    text-decoration-color: rgb(0 50 75 / 55%);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.blx-footer__legal a:hover {
    color: inherit;
    text-decoration-color: currentcolor;
}

.blx-footer__separator {
    opacity: 0.75;
}

.blx-footer a:focus-visible {
    border-radius: 0.125rem;
    outline: 3px solid var(--blx-footer-accent);
    outline-offset: 4px;
}

@media (max-width: 767.98px) {
    .blx-footer__inner {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
        padding-block: 2.25rem;
    }

    .blx-footer__legal {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.5rem 0.65rem;
    }

    .blx-footer__copyright {
        flex-basis: 100%;
    }

    .blx-footer__separator--copyright {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blx-footer__social-link {
        transition: none;
    }
}
