/* style_questions.css */

/* 说明：选项样式尽量复用 style_resonance.css 的 .resonance-word-card */

.question-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.question-header {
    margin-bottom: 12px;
    text-align: center;
}

.question-phase {
    font-family: 'Noto Serif SC', serif;
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
}

.question-intent {
    margin-top: 4px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 12px;
    color: #6b7280;
}

.question-context {
    margin: 16px 0 14px 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.6);
    border-left: 3px solid #ef4444;
    font-family: 'Noto Serif SC', serif;
    font-size: 15px;
    line-height: 1.8;
    color: #2c2c2c;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 复用 .resonance-word-card，但让它更适合长文本（左对齐） */
.question-option {
    justify-content: flex-start;
    text-align: left;
    padding: 12px 12px;
    gap: 10px;
}

.question-option-label {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    min-width: 26px;
}

.question-option-text {
    flex: 1;
    line-height: 1.5;
}

.question-progress {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.progress-dot.active {
    background: #ef4444;
}

.progress-dot.completed {
    background: #2c2c2c;
}

