.legal-header {
    background: #e7effd;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    padding-top: calc(var(--spacing) * 5);
    padding-bottom: calc(var(--spacing) * 4);
    text-align: center;
}

/* The old layout centred the title row only below md, where it switched to
   flex-start. */
@media (min-width: 960px) {
    .legal-header {
        text-align: left;
    }
}

/* The old header carried an empty subtitle below the title. */
.legal-header h1 {
    margin: 0;
    padding-bottom: var(--spacing);
}

.legal-content {
    padding-top: calc(var(--spacing) * 4);
    padding-bottom: calc(var(--spacing) * 4);
}

/* The sticky site header would otherwise cover a linked section. */
.legal-content h2 {
    scroll-margin-top: calc(var(--spacing) * 12);
}

/* Section heading with its "(Updated …)" stamp pushed to the far end. */
.legal-content .flex-space-between {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
}

.legal-content .flex-space-between > *:first-child {
    margin-right: calc(var(--spacing) * 2);
}

.legal-content .flex-space-between .last-update {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.379;
    letter-spacing: -0.5px;
}
