.site-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 2rem;
    padding: 2.5rem max(1.5rem, calc((100% - 1200px) / 2));
    border-top: 1px solid #d8e1df;
    background-color: #ffffff;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.footer-brand {
    flex-direction: row;
    align-items: center;
    font-size: 1.1rem;
}

.footer-logo {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
}

.footer-column address {
    font-style: normal;
}

.footer-column a {
    color: #0b6f91;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.footer-column a:hover {
    text-decoration-thickness: 2px;
}

.footer-column a:focus-visible {
    outline: 3px solid #0b6f91;
    outline-offset: 3px;
}

.footer-status {
    color: #526464;
}

.footer-status small {
    margin-top: 0.6rem;
    color: inherit;
}

@media (max-width: 760px) {
    .site-footer {
        grid-template-columns: 1fr;
        padding: 2rem 1.25rem;
        text-align: center;
    }

    .footer-column,
    .footer-brand {
        align-items: center;
        justify-content: center;
    }
}
