/* Compass component — isolated selectors. */

/* ── Section Headers ── */
.compass-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 20px 0 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(15,23,42,.03), 0 4px 12px rgba(15,23,42,.02);
    min-height: 0;
}
.compass-section-head h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0 12px 16px;
}
.compass-section-head h2 .section-icon {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.compass-section-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 999px;
    padding: 4px 12px;
}
