/* 三省回顾 - 独立样式 */
.sanxing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sanxing-card {
    display: block;
    background: #1e1e32;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #2a2a44;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    position: relative;
}

.sanxing-card:hover {
    background: #252540;
    border-color: #3a3a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-date {
    font-size: 13px;
    color: #8899aa;
    font-weight: 600;
}

.tag-expanded {
    font-size: 11px;
    color: #4ade80;
    background: #1a3a2a;
    padding: 2px 8px;
    border-radius: 8px;
}

.card-topic {
    font-size: 15px;
    font-weight: 600;
    color: #d0d8e0;
    line-height: 1.5;
    margin-bottom: 10px;
}

.card-answers {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.answer-line {
    display: flex;
    gap: 6px;
    font-size: 13px;
    line-height: 1.5;
}

.q-label {
    color: #f0c040;
    font-weight: 600;
    white-space: nowrap;
    min-width: 2em;
}

.a-text {
    color: #99aabb;
}

.card-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: #445566;
    font-size: 18px;
}

/* ─── 详情页 ─── */
.sanxing-detail {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid #2a2a44;
    margin-bottom: 16px;
}

.detail-meta {
    margin-bottom: 16px;
}

.detail-date {
    font-size: 14px;
    color: #8899aa;
    font-weight: 600;
}

.sanxing-detail h1 {
    font-size: 20px;
    font-weight: 700;
    color: #f0c040;
    margin-bottom: 24px;
    line-height: 1.4;
}

.answer-section {
    margin-bottom: 28px;
}

.answer-section h2 {
    font-size: 16px;
    font-weight: 600;
    color: #d0d8e0;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a44;
}

.qa-item {
    margin-bottom: 12px;
}

.qa-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #f0c040;
    background: #2a2a44;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.qa-content {
    font-size: 15px;
    color: #d0d8e0;
    line-height: 1.6;
    padding-left: 4px;
}

.eval-section, .prof-response {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #2a2a44;
}

.eval-section h3, .prof-response h3 {
    font-size: 14px;
    font-weight: 600;
    color: #f0c040;
    margin-bottom: 12px;
}

.eval-section p, .prof-response p {
    font-size: 14px;
    color: #99aabb;
    line-height: 1.8;
    margin-bottom: 8px;
}

.eval-section strong {
    color: #e0d0a0;
}
