/* /guides/ — article + hub styles on the backstage palette.
   Inherits site.css tokens; only the article-specific affordances live here:
   BLUF capsule, byline, FAQ rhythm, cta-card, hub-list. */

.guide h2 {
    font-family: "Unbounded", system-ui, sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -.01em;
    margin: 36px 0 12px;
    color: var(--berry-ink);
}
.guide h3 {
    font-family: "Onest", system-ui, sans-serif;
    font-weight: 600;
    font-size: 17px;
    margin: 22px 0 8px;
    color: var(--ink-text);
}
.guide p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-text);
    margin: 0 0 14px;
}

.guide .byline {
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--light-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
}
.guide .byline time { font-variant-numeric: tabular-nums; }

.guide .eyebrow a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.guide .bluf {
    margin: 22px 0 18px;
    padding: 18px 22px;
    background: var(--paper-2);
    border-left: 3px solid var(--berry-ink);
    border-radius: 0 12px 12px 0;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-text);
}
.guide .bluf strong { color: var(--berry-ink); }

.guide .examples {
    list-style: none;
    padding: 0;
    margin: 8px 0 18px;
    display: grid;
    gap: 10px;
}
.guide .examples li {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-text);
}

.guide .bridge {
    margin-top: 36px;
}

.guide .faq h3 {
    margin-top: 18px;
}
.guide .faq p {
    margin: 0 0 16px;
}

.guide .cta-card {
    margin: 48px 0 12px;
    padding: 28px 28px 30px;
    border-radius: 16px;
    background: var(--paper-2);
    border: 1px solid var(--line);
}
.guide .cta-card p {
    margin-bottom: 16px;
}

/* /guides/ hub */
.hub-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
}
.hub-list li a {
    display: block;
    padding: 18px 20px;
    border-radius: 14px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    color: var(--ink-text);
    text-decoration: none;
    transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.hub-list li a:hover {
    transform: translateY(-1px);
    border-color: var(--berry-ink);
}
.hub-list .h {
    font-family: "Unbounded", system-ui, sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--berry-ink);
    display: block;
    margin-bottom: 4px;
}
.hub-list .d {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--light-muted);
}
.hub-empty {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 12px;
    background: var(--paper-2);
    border: 1px dashed var(--line);
    color: var(--light-muted);
    font-size: 15px;
}
