/* legal.css — Imprint / Privacy / Terms typography.
 * Long-form prose, restrained. Section heads numbered with mint accent. */

.qb-legal {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.9375rem;
    line-height: 1.72;
    color: var(--qb-text-dim);
}

.qb-legal__section + .qb-legal__section { margin-top: 40px; }

.qb-legal__heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--qb-text);
    letter-spacing: -0.005em;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--qb-rule);
}
.qb-legal__num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    color: var(--qb-mint);
    letter-spacing: 0.06em;
    flex-shrink: 0;
    transform: translateY(-0.05em);
}

.qb-legal p {
    margin: 12px 0;
    max-width: 64ch;
    color: var(--qb-text-dim);
}
.qb-legal p:first-child { margin-top: 0; }
.qb-legal a {
    color: var(--qb-mint);
    text-decoration: none;
    transition: color 0.12s ease;
}
.qb-legal a:hover { color: var(--qb-mint-hover); text-decoration: underline; text-underline-offset: 3px; }

.qb-legal ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}
.qb-legal ul li {
    position: relative;
    padding-left: 1.25rem;
    margin: 6px 0;
    color: var(--qb-text-dim);
    font-size: 14px;
}
.qb-legal ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 1px;
    background: var(--qb-mint);
    opacity: 0.7;
}

/* Beta-warning callout (top of terms) */
.qb-callout {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(212, 178, 72, 0.35);
    background: rgba(212, 178, 72, 0.05);
    margin-bottom: 32px;
    align-items: flex-start;
}
.qb-callout__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--qb-warn);
    margin-top: 2px;
}
.qb-callout__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--qb-warn);
    margin: 0 0 4px;
    letter-spacing: 0;
}
.qb-callout__body {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(212, 178, 72, 0.85);
    margin: 0;
}
