/* Contest Marketplace - Team Roles + Fraud Review */

.cm-team-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 22px;
    margin-bottom: 22px;
}

.cm-role-guide-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
}

.cm-role-guide-item strong {
    display: block;
    color: #081426;
    font-size: 18px;
    margin-bottom: 4px;
}

.cm-role-guide-item p {
    margin: 0;
    color: #475569;
}

.cm-role-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #ffd000 !important;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cm-fraud-severity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: #e5e7eb;
    color: #081426;
}

.cm-fraud-high {
    background: #b91c1c;
    color: #ffffff !important;
}

.cm-fraud-medium {
    background: #f59e0b;
    color: #000000 !important;
}

.cm-fraud-low,
.cm-fraud-info {
    background: #dbeafe;
    color: #0f172a !important;
}

@media (max-width: 900px) {
    .cm-team-layout {
        grid-template-columns: 1fr;
    }
}
