.co-note {
    color: var(--muted);
    font-size: 0.86rem;
    margin: 0 0 16px;
    line-height: 1.5;
}

.co-hero {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.co-desc {
    margin: 0 0 12px;
    line-height: 1.7;
    color: var(--text);
}

.co-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.9rem;
    align-items: center;
}

.co-meta-row a { color: var(--primary-dark); font-weight: 600; }
.co-muted { color: var(--muted); }

.co-score-ring {
    --score: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-content: center;
    text-align: center;
    background:
        radial-gradient(circle at center, var(--card) 58%, transparent 59%),
        conic-gradient(var(--primary) calc(var(--score) * 1%), #e2e8f0 0);
}

.co-score-ring strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.co-score-ring span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    margin-top: 2px;
}

.co-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.co-section h2 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.co-section-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 14px;
}

.co-sub {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.co-empty {
    padding: 18px;
    text-align: center;
    color: var(--muted);
    background: #f8fafc;
    border-radius: 10px;
    border: 1px dashed var(--border);
}

.co-checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-checks-tight { margin-top: 14px; }

.co-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 0.9rem;
    line-height: 1.45;
}

.co-check-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
    background: #94a3b8;
}

.co-check.is-pass { background: #ecfdf5; }
.co-check.is-pass .co-check-dot { background: #10b981; }
.co-check.is-warn { background: #fffbeb; }
.co-check.is-warn .co-check-dot { background: #f59e0b; }
.co-check.is-fail { background: #fef2f2; }
.co-check.is-fail .co-check-dot { background: #ef4444; }

.co-time {
    margin: 12px 0 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.co-lh-scores {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.co-lh-card {
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid var(--border);
    background: #f8fafc;
}

.co-lh-card span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
}

.co-lh-card strong {
    font-size: 1.5rem;
    font-weight: 800;
}

.co-lh-card.is-good { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.co-lh-card.is-mid { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.co-lh-card.is-bad { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

.co-people {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-people li {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
}

@media (max-width: 720px) {
    .co-hero { flex-direction: column; }
    .co-lh-scores { grid-template-columns: 1fr 1fr; }
}
