/* Nivela shared components. Keep small and semantic; page-specific CSS can live in separate files. */
.nivela-section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nivela-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-sub);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nivela-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nivela-card-description {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    max-width: 760px;
    line-height: 1.5;
}

.nivela-status-pill {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(201,168,76,.25);
    background: rgba(201,168,76,.10);
    color: var(--gold-light);
    white-space: nowrap;
}

.nivela-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}

.nivela-note-warning {
    margin-top: 1rem;
    padding: .9rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(251,191,36,.20);
    background: rgba(251,191,36,.07);
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.5;
}

.nivela-note-warning b {
    color: #fbbf24;
}

.nivela-card-footer-actions {
    padding: 0.75rem 1.5rem 1.25rem;
    border-top: 1px solid var(--border-sub);
    display: flex;
    justify-content: flex-end;
}
