.deepdive-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}

/* ---------- CARDS ---------- */

.question-card,
.assessment-card,
.response-card {
    background: white;
    border: 1px solid #E4DED4;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

/* ---------- QUESTION ---------- */

.question-title {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-top: 16px;
}

.user-section {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ddd;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    background: #EDF7ED;
    color: #355E3B;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .75rem;
}

/* ---------- ASSESSMENT ---------- */

.assessment-toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;

    display: flex;
    justify-content: space-between;

    font-size: 1rem;
    font-weight: 600;
}

.assessment-content {
    margin-top: 20px;
}

.assessment-row {
    display: grid;
    grid-template-columns: 180px 1fr 50px;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.bar {
    background: #F1ECE5;
    border-radius: 999px;
    overflow: hidden;
    height: 10px;
}

.fill {
    height: 100%;
}

.green {
    background: #22C55E;
}

.amber {
    background: #F59E0B;
}

.red {
    background: #EF4444;
}

/* ---------- FILTERS ---------- */

.filters {
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.filter-btn {
    border: 1px solid #D8D0C5;
    background: white;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
}

.filter-btn.active {
    background: #355E3B;
    color: white;
}

/* ---------- RESPONSES ---------- */

.response-stream {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.response-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.response-type,
.lens-tag {
    background: #F7F4EE;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .8rem;
}