/* ===================================
   CASE STUDY PILL LABELS
   =================================== */

/* Pill Label - Base Styles */
.case-org-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* Tab Pills (inside case-tab buttons) */
.case-tab .case-org-label {
    margin-bottom: 6px;
}

/* Case Study Header Pills (inside expanded view) */
.case-header .case-org-label {
    margin-bottom: 12px;
}

/* Organization-Specific Colors */

/* Merkle Sokrati - Soft Blue */
.case-org-label.org-merkle {
    background: #DBEAFE;
    color: #1E40AF;
}

/* GOMO Group - Soft Green */
.case-org-label.org-gomo {
    background: #D1FAE5;
    color: #065F46;
}

/* Purplle - Soft Purple */
.case-org-label.org-purplle {
    background: #EDE9FE;
    color: #5B21B6;
}

/* ABaCUS Imperials - Soft Orange */
.case-org-label.org-abacus {
    background: #FEF3C7;
    color: #92400E;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .case-org-label {
        font-size: 10px;
        padding: 3px 8px;
        margin-bottom: 6px;
    }
    
    .case-header .case-org-label {
        margin-bottom: 10px;
    }
}
