/* Trustpilot Mini in the last footer column, with the menu that used to live there
   moved into a full-width row beneath all the columns. */

.footer__trustpilot {
    display: flex;
    align-items: flex-start;
}

.footer__trustpilot .trustpilot-widget {
    width: 100%;
    max-width: 240px;
}

/* The moved menu: horizontal row rather than a stacked column. Overrides the
   .menu-item + .menu-item top margin the column layout applies.
   The white text colour has to be restated: it came from .footer__navigation, which this
   row sits outside of, and the footer background is black. */
.footer__navigation-row {
    padding: 24px 0 8px;
    color: #fff;
}

.footer__navigation-row a {
    color: inherit;
}

.footer__navigation-row .footer__navigation__group {
    flex: none;
    border-top: 1px solid white;
    padding-top: 15px;
}

.footer__navigation-row .footer__navigation__group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.footer__navigation-row .footer__navigation__group .menu-item + .menu-item {
    margin-top: 0;
}

.footer__navigation-row .footer__navigation__group .menu-item a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer__trustpilot {
        justify-content: center;
        padding-top: 8px;
    }

    .footer__navigation-row {
        padding: 16px 0 8px;
    }

    .footer__navigation-row .footer__navigation__group ul {
        gap: 0.75rem 1.5rem;
        justify-content: center;
    }
}
