/* Harness & Lanyard — Pass/Fail answer pills + verdict boxes */
.hl-warn {
    background: #b91c1c;
    color: #fff;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-align: center;
}
.hl-verdict {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
}
.hl-verdict.pass { background: #dcfce7; color: #166534; }
.hl-verdict.fail { background: #fee2e2; color: #991b1b; }
.hl-verdict.incomplete { background: #fef3c7; color: #92400e; }
.sc-ans-pass.on { background: #16a34a; color: #fff; }
.sc-ans-fail.on { background: #dc2626; color: #fff; }
.hl-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0C1248;
    margin: 14px 0 6px;
    padding-left: 8px;
    border-left: 4px solid #F9583A;
}
.pc-sig-wrap canvas {
    width: 100%;
    max-width: 640px;
    height: 160px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    touch-action: none;
}
.hl-sig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 720px) {
    .hl-sig-grid { grid-template-columns: 1fr; }
}
