/* ================================================================
   Ask a Question — Additional Styles
   ================================================================ */

.ask-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.ask-box textarea {
    font-size: 18px;
    padding: 20px;
    min-height: 100px;
    border-radius: var(--radius-lg);
    line-height: 1.5;
}

.ask-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.ask-examples-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.ask-example {
    font-size: 13px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.ask-example:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

/* Clarification */
.clarify-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}

.clarify-message {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.clarify-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.clarify-question {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 16px;
    background: var(--bg-primary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* Answer */
.answer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 28px;
}

.answer-headline {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.answer-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Reasons */
.answer-reasons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.answer-reason {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    animation: fadeIn 0.3s ease;
}

.answer-reason-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.answer-reason-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.answer-reason-explanation {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 40px;
}

/* Bottom line */
.answer-bottom-line {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Context (what was analysed) */
.answer-context {
    margin-bottom: 24px;
}

.answer-context-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.answer-context-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.answer-context-chip {
    font-size: 12px;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text-secondary);
}

/* Actions */
.answer-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 640px) {
    .ask-box textarea {
        font-size: 16px;
        padding: 16px;
    }

    .answer-headline {
        font-size: 22px;
    }

    .answer-text {
        font-size: 16px;
    }
}
