.research-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.research-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.research-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.research-icon { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255,255,255,0.25); }
.research-body { padding: 1.5rem; }
.research-status {
    display: inline-block; padding: 3px 10px; border-radius: 5px;
    font-size: 0.72rem; font-weight: 700; margin-bottom: 0.75rem;
}
.research-status.active { background: rgba(16,185,129,0.15); color: var(--green); }
.research-status.review { background: rgba(245,158,11,0.15); color: var(--yellow); }
.research-body h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.research-body p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1rem; }
.research-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.research-tags span {
    padding: 3px 8px; border-radius: 5px;
    background: rgba(255,255,255,0.06); color: var(--text-muted);
    font-size: 0.72rem; font-family: 'JetBrains Mono', monospace;
}
.research-progress { margin-bottom: 1rem; }
.rp-label { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.rp-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.rp-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 3px; }
.research-team { display: flex; align-items: center; justify-content: space-between; }
.team-avatars { display: flex; }
.avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent); color: white; font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg-card); margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.join-btn {
    padding: 5px 14px; background: transparent;
    border: 1px solid var(--accent); color: var(--accent-light);
    border-radius: 7px; font-size: 0.8rem; font-weight: 600; transition: var(--transition);
}
.join-btn:hover { background: var(--accent); color: white; }
@media (max-width: 900px) { .research-grid { grid-template-columns: 1fr; } }