/* About / Pricing / Changelog pages, English only for now. */

.page-content-width {
    max-width: 960px;
}

/* ── Image placeholders (2009 screenshot, founder photo) ─────────────────
   Same idea as landing.css's .media-placeholder: a clearly-marked slot that
   gets swapped for the real asset once it exists — not a fake image. */
.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--z-space-3);
    min-height: 220px;
    border: 2px dashed var(--z-border);
    border-radius: var(--z-radius);
    color: var(--z-text-muted);
    background: var(--z-surface-raised);
    padding: var(--z-space-6);
    text-align: center;
}

/* ── Changelog timeline ────────────────────────────────────────────────── */
.changelog-entry {
    padding-bottom: var(--z-space-6);
    margin-bottom: var(--z-space-6);
    border-bottom: 1px solid var(--z-border);
}

.changelog-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.changelog-date {
    font-size: var(--z-text-sm);
    color: var(--z-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Quote/invoice callout (Pricing page) ─────────────────────────────────
   Boxed and separated from the plan table so it reads as a distinct offer
   for procurement-driven buyers, not another line of fine print. */
.quote-callout {
    border: 1px solid var(--z-border);
    border-radius: var(--z-radius);
    background: var(--z-surface-raised);
    padding: var(--z-space-5);
}

/* ── Commitment / bullet list (About page) ────────────────────────────── */
.commitment-list {
    padding-left: 1.25rem;
}

.commitment-list li {
    margin-bottom: var(--z-space-3);
}
