/* ============================================================================
   SPURA HUB v3 - Checklist Components
   Generic checklist primitives — use these before domain-specific variants.
   ============================================================================ */

.checklist-progress-count {
    margin-left: auto;
}

.checklist-body {
    padding: 0;
}

.checklist-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 0.35rem;
    align-items: center;
}

.checklist-item--ok {
    background: var(--success-50);
}

.checklist-item--falla {
    background: var(--danger-50);
}

.checklist-item__title {
    font-size: 0.8125rem;
}

.checklist-item__title--spaced {
    margin-bottom: 6px;
}

.checklist-item__required {
    color: var(--danger-500);
}

.checklist-item__note {
    margin-top: 4px;
}

.checklist-item__status {
    min-width: 120px;
}

.checklist-item__notes {
    min-width: 180px;
}

@media (max-width: 640px) {
    .checklist-item {
        grid-template-columns: 1fr;
    }

    .checklist-item__status,
    .checklist-item__notes {
        min-width: 0;
    }
}