/* Company and legal details shown beneath the main site footer. */
.footer-legal {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 1fr) minmax(220px, .8fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1b3449;
    color: #9db2c3;
    font-size: .78rem;
    line-height: 1.6;
}

.footer-legal-summary,
.footer-registered-office,
.footer-legal-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .18rem;
    min-width: 0;
}

.footer-registered-office {
    margin: 0;
    font-style: normal;
}

.footer-legal strong {
    margin-bottom: .18rem;
    color: var(--white);
    font-size: .8rem;
}

.footer-legal a {
    color: #aabfce;
    overflow-wrap: anywhere;
}

.footer-legal a:hover {
    color: var(--cyan-400);
}

.footer-legal-contact {
    justify-self: end;
    text-align: right;
    align-items: flex-end;
}

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

    .footer-legal-contact {
        grid-column: 1 / -1;
        justify-self: start;
        text-align: left;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .footer-legal {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-legal-contact {
        grid-column: auto;
    }
}
