div.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 0 auto 10px;
    max-width: var(--width-base);
    padding: 0 var(--space-6);
}

div.footer-links .TA {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

div.footer-links div.footer-links {
    padding:0;
}

div.footer-links p {
    padding: 0 10px 0 0;
    font-family: var(--font-body);
    line-height: 18px;
    font-size: 0.8rem;
    font-weight: bold;
}

div.footer-links a.tripAdvisor {
    padding: 0 30px 0 0;
}

@media (max-width: 591px) {
    div.footer-links p {
        line-height: 15px;
    }

    div.footer-links .TA {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    div.footer-links .TA p {
        padding: 0 10px 5px 0;
    }

    div.footer-links {
        justify-content: space-around;
    }
}