/* Layout for the contact, privacy and terms pages. */
.page {
    max-width: 720px;
}
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    max-width: 720px;
    margin: -8px auto 12px;
    font-size: 14px;
}
.back {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}
.back:hover {
    text-decoration: underline;
}
h1 {
    margin: 2px 0 20px;
    color: var(--accent);
    font-family: var(--hand);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
}

@media (max-width: 600px) {
    body {
        padding: 16px 12px 32px;
    }
    .page {
        padding: 36px 20px 24px;
    }
    .prose dl {
        grid-template-columns: 1fr;
    }
    .prose dd {
        margin-bottom: 8px;
    }
}
