/* ============================================
   GAIA Mindset Test — Scoped Styles (mt- prefix)
   Prevents conflicts with main site style.css
   ============================================ */

#mt-app {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e8e8f0;
    min-height: 80vh;
}

/* Screens */
.mt-screen { display: none; }
.mt-screen.mt-active { display: block; }

/* Landing Background */
.mt-landing-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(102,126,234,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(118,75,162,0.06) 0%, transparent 50%);
    pointer-events: none; z-index: -1;
}

.mt-container { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }

/* GAIA Badge */
.mt-gaia-badge {
    display: inline-block; background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    color: white; padding: 6px 18px; border-radius: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}

/* Landing Content */
.mt-landing-content { display: flex; flex-direction: column; align-items: center; text-align: center; }

.mt-logo-area { margin-bottom: 28px; }
.mt-logo-icon { font-size: 64px; margin-bottom: 8px; }
.mt-logo-text {
    font-size: 42px; font-weight: 900; line-height: 1.1;
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: 4px;
}

.mt-tagline { margin-bottom: 36px; }
.mt-tagline-main { font-size: 18px; color: #a0a0b8; line-height: 1.7; }
.mt-tagline-main em { color: #667eea; font-style: normal; font-weight: 600; }

/* Info Cards */
.mt-info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; width: 100%; margin-bottom: 28px; }
.mt-info-card {
    background: #12121a; border: 1px solid #2a2a40; border-radius: 12px; padding: 24px 20px; text-align: center;
    transition: 0.3s ease;
}
.mt-info-card:hover { border-color: #667eea; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(102,126,234,0.15); }
.mt-info-card-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.mt-info-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: #e8e8f0; }
.mt-info-card p { font-size: 13px; color: #6a6a80; line-height: 1.5; }

/* Warning Box */
.mt-warning-box {
    background: rgba(255,165,2,0.08); border: 1px solid rgba(255,165,2,0.2); border-radius: 12px;
    padding: 20px 24px; max-width: 600px; margin-bottom: 24px; text-align: left;
}
.mt-warning-box p { font-size: 14px; color: #a0a0b8; line-height: 1.6; }
.mt-warning-box strong { color: #ffa502; }

/* Audience Strip */
.mt-audience-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; font-size: 13px; color: #6a6a80; }
.mt-audience-dot { color: #667eea; }

/* Input */
.mt-input-group { margin-bottom: 16px; }
.mt-input-group input, .mt-input-group select {
    width: 100%; max-width: 320px; padding: 14px 20px; background: #12121a; border: 2px solid #2a2a40;
    border-radius: 12px; color: #e8e8f0; font-size: 15px; text-align: center; outline: none;
    transition: 0.3s ease; font-family: inherit;
}
.mt-input-group select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0b8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 20px center;
}
.mt-input-group input::placeholder { color: #6a6a80; }
.mt-input-group input:focus, .mt-input-group select:focus { border-color: #667eea; box-shadow: 0 0 0 3px rgba(102,126,234,0.15); }

/* Buttons */
.mt-btn {
    display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px;
    border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer;
    transition: 0.3s ease; font-family: inherit; text-decoration: none;
}
.mt-btn--primary { background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); color: white; box-shadow: 0 4px 15px rgba(102,126,234,0.3); }
.mt-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(102,126,234,0.4); }
.mt-btn--primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.mt-btn--ghost { background: transparent; color: #6a6a80; border: 1px solid #2a2a40; }
.mt-btn--ghost:hover { color: #a0a0b8; border-color: #6a6a80; }
.mt-btn--large { padding: 16px 40px; font-size: 17px; }

/* ============================================
   TEST SCREEN
   ============================================ */

.mt-test-header {
    position: sticky; top: 0; z-index: 100; background: rgba(10,10,15,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid #2a2a40; padding: 12px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.mt-test-progress { flex: 1; min-width: 150px; }
.mt-progress-bar { height: 6px; background: #1a1a2e; border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.mt-progress-fill { height: 100%; background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); border-radius: 3px; transition: width 0.5s ease; width: 0%; }
.mt-progress-text { font-size: 12px; color: #6a6a80; }

.mt-timer-box { display: flex; align-items: center; gap: 6px; background: #1a1a2e; padding: 8px 16px; border-radius: 8px; border: 1px solid #2a2a40; }
.mt-timer-icon { font-size: 16px; }
#mt-timerDisplay { font-size: 18px; font-weight: 700; font-variant-numeric: tabular-nums; }

.mt-category-badge { background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); color: white; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

.mt-test-body { max-width: 800px; margin: 0 auto; padding: 24px 20px 40px; }

.mt-scenario-card { background: #12121a; border: 1px solid #2a2a40; border-radius: 12px; padding: 28px 24px; margin-bottom: 20px; animation: mtFadeIn 0.4s ease; }
.mt-scenario-header { margin-bottom: 16px; }
.mt-scenario-number { font-size: 11px; font-weight: 700; color: #667eea; letter-spacing: 2px; text-transform: uppercase; }
.mt-scenario-title { font-size: 24px; font-weight: 700; margin-top: 4px; }
.mt-scenario-text p { font-size: 15px; color: #a0a0b8; line-height: 1.7; margin-bottom: 16px; }
.mt-scenario-prompt p { font-size: 15px; color: #e8e8f0; line-height: 1.7; }
.mt-scenario-reminder {
    display: flex; align-items: center; gap: 8px; margin-top: 16px; padding: 12px 16px;
    background: rgba(102,126,234,0.06); border: 1px solid rgba(102,126,234,0.12); border-radius: 8px;
    font-size: 13px; color: #6a6a80;
}

.mt-answer-area { animation: mtSlideUp 0.4s ease; }
.mt-answer-area textarea {
    width: 100%; min-height: 200px; padding: 20px; background: #0a0a0f; border: 2px solid #2a2a40;
    border-radius: 12px; color: #e8e8f0; font-size: 15px; line-height: 1.7; resize: vertical;
    outline: none; transition: 0.3s ease; font-family: inherit;
}
.mt-answer-area textarea::placeholder { color: #6a6a80; }
.mt-answer-area textarea:focus { border-color: #667eea; box-shadow: 0 0 0 3px rgba(102,126,234,0.1); }

.mt-answer-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; flex-wrap: wrap; gap: 12px; }
.mt-char-count { font-size: 13px; color: #6a6a80; }
.mt-answer-actions { display: flex; gap: 12px; }

/* ============================================
   RESULTS SCREEN
   ============================================ */

.mt-results-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 30%, rgba(102,126,234,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(118,75,162,0.08) 0%, transparent 50%);
    pointer-events: none; z-index: -1;
}

.mt-results-content { padding-top: 20px; padding-bottom: 60px; }
.mt-results-header { text-align: center; margin-bottom: 32px; }
.mt-results-header h1 { font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.mt-results-level { font-size: 14px; color: #6a6a80; margin-bottom: 4px; }
.mt-results-overall { font-size: 16px; color: #a0a0b8; }
.mt-grade-value {
    font-size: 32px; font-weight: 800;
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Mindset Type */
.mt-mindset-type {
    text-align: center; background: #12121a; border: 2px solid #667eea; border-radius: 12px;
    padding: 32px 24px; margin-bottom: 32px; animation: mtFadeIn 0.6s ease;
}
.mt-mindset-type__icon { font-size: 48px; margin-bottom: 12px; }
.mt-mindset-type__label {
    font-size: 28px; font-weight: 800;
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 12px;
}
.mt-mindset-type__desc { font-size: 15px; color: #a0a0b8; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* Scores Grid */
.mt-scores-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.mt-score-card { background: #12121a; border: 1px solid #2a2a40; border-radius: 12px; padding: 20px; transition: 0.3s ease; }
.mt-score-card:hover { border-color: rgba(102,126,234,0.3); }
.mt-score-card__header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mt-score-card__icon { font-size: 20px; }
.mt-score-card__label { flex: 1; font-size: 15px; font-weight: 600; }
.mt-score-card__value { font-size: 20px; font-weight: 800; }
.mt-score-card__bar { height: 6px; background: #1a1a2e; border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.mt-score-card__fill { height: 100%; border-radius: 3px; transition: width 1.5s ease-out; width: 0%; }
.mt-score-card__fill.mt-a { background: #00d2ff; }
.mt-score-card__fill.mt-b { background: #667eea; }
.mt-score-card__fill.mt-c { background: #ffa502; }
.mt-score-card__fill.mt-d { background: #ff4757; }
.mt-score-card__value.mt-a { color: #00d2ff; }
.mt-score-card__value.mt-b { color: #667eea; }
.mt-score-card__value.mt-c { color: #ffa502; }
.mt-score-card__value.mt-d { color: #ff4757; }
.mt-score-card__desc { font-size: 13px; color: #6a6a80; line-height: 1.5; }

/* Careers Section */
.mt-careers-heading { margin-bottom: 24px; }
.mt-careers-heading h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #e8e8f0; }
.mt-careers-heading p { font-size: 14px; color: #a0a0b8; }

.mt-career-block { background: #12121a; border: 1px solid #2a2a40; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.mt-career-block__header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.mt-career-block__icon { font-size: 28px; }
.mt-career-block__header h3 { font-size: 18px; font-weight: 700; color: #e8e8f0; }
.mt-career-block__score { font-size: 13px; color: #667eea; }
.mt-career-block__why { font-size: 14px; color: #a0a0b8; line-height: 1.6; margin-bottom: 16px; }
.mt-career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mt-career-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: #e8e8f0; }
.mt-career-col ul { list-style: none; }
.mt-career-col ul li { font-size: 13px; color: #a0a0b8; padding: 6px 0; border-bottom: 1px solid rgba(42,42,64,0.5); }
.mt-career-col ul li:last-child { border-bottom: none; }
.mt-career-emoji { margin-right: 6px; }
.mt-career-field { color: #6a6a80; font-size: 12px; }
.mt-career-level-note {
    margin-top: 16px; padding: 14px 16px; background: rgba(102,126,234,0.06);
    border-left: 3px solid #667eea; border-radius: 0 8px 8px 0;
    font-size: 13px; color: #a0a0b8; line-height: 1.6;
}

/* Consent Toggles */
.mt-consent-section {
    margin-top: 28px; padding: 20px 24px;
    background: rgba(102,126,234,0.06); border: 1px solid rgba(102,126,234,0.12);
    border-radius: 12px; max-width: 480px; text-align: left;
}
.mt-consent-title { font-size: 16px; font-weight: 700; color: #e8e8f0; margin-bottom: 6px; text-align: center; }
.mt-consent-desc { font-size: 13px; color: #a0a0b8; line-height: 1.6; margin-bottom: 16px; text-align: center; }
.mt-consent-toggle {
    display: flex; align-items: center; gap: 12px; padding: 8px 0; cursor: pointer;
    border-bottom: 1px solid rgba(42,42,64,0.5);
}
.mt-consent-toggle:last-child { border-bottom: none; }
.mt-consent-toggle input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.mt-toggle-slider {
    position: relative; width: 44px; height: 24px; flex-shrink: 0;
    background: #2a2a40; border-radius: 12px; transition: 0.3s;
}
.mt-toggle-slider::after {
    content: ''; position: absolute; top: 3px; left: 3px;
    width: 18px; height: 18px; background: #6a6a80; border-radius: 50%; transition: 0.3s;
}
.mt-consent-toggle input:checked + .mt-toggle-slider { background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); }
.mt-consent-toggle input:checked + .mt-toggle-slider::after { transform: translateX(20px); background: white; }
.mt-toggle-label { font-size: 13px; color: #a0a0b8; line-height: 1.4; }

/* Question Area (dynamic content injected here) */
.mt-q-title { font-size: 22px; font-weight: 700; color: #e8e8f0; margin-bottom: 12px; }
.mt-q-scenario { font-size: 14px; color: #a0a0b8; line-height: 1.7; margin-bottom: 12px; padding: 16px; background: #12121a; border-radius: 10px; border-left: 3px solid #667eea; }
.mt-q-prompt { font-size: 15px; color: #c0c0d0; line-height: 1.7; margin-bottom: 20px; }
.mt-textarea { width: 100%; min-height: 140px; padding: 16px; background: #12121a; border: 1px solid #2a2a40; border-radius: 10px; color: #e8e8f0; font-size: 15px; font-family: 'Inter', sans-serif; line-height: 1.6; resize: vertical; transition: 0.3s; }
.mt-textarea:focus { outline: none; border-color: #667eea; box-shadow: 0 0 0 3px rgba(102,126,234,0.15); }
.mt-textarea::placeholder { color: #4a4a60; }
.mt-q-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; gap: 12px; flex-wrap: wrap; }

/* Choice Buttons */
.mt-choices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.mt-choice { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; background: #12121a; border: 1px solid #2a2a40; border-radius: 12px; cursor: pointer; transition: 0.3s; }
.mt-choice:hover { border-color: #667eea; background: #161625; }
.mt-choice--selected { border-color: #667eea; background: rgba(102,126,234,0.1); box-shadow: 0 0 0 2px rgba(102,126,234,0.3); }
.mt-choice-num { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: #1a1a2e; color: #667eea; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.mt-choice--selected .mt-choice-num { background: #667eea; color: white; }
.mt-choice-text { font-size: 14px; color: #c0c0d0; line-height: 1.6; padding-top: 4px; }

/* Visual Art Display */
.mt-visual-art { margin: 0 auto 24px; max-width: 400px; }
.mt-visual-art__inner { position: relative; width: 100%; height: 250px; background: linear-gradient(135deg, #1a0a2e 0%, #2d1b69 25%, #0f3460 50%, #16213e 75%, #0a0a0f 100%); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 30px rgba(102,126,234,0.2); }
.mt-va-shape--1 { position: absolute; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,157,0.6), rgba(255,107,157,0.1)); top: 15%; left: 10%; animation: mt-float 6s ease-in-out infinite; }
.mt-va-shape--2 { position: absolute; width: 80px; height: 160px; border-radius: 40px; background: linear-gradient(180deg, rgba(102,126,234,0.5), rgba(118,75,162,0.3)); top: 30%; right: 15%; transform: rotate(15deg); animation: mt-float 8s ease-in-out infinite reverse; }
.mt-va-shape--3 { position: absolute; width: 180px; height: 60px; border-radius: 30px; background: linear-gradient(90deg, rgba(240,147,251,0.3), rgba(102,126,234,0.4)); bottom: 25%; left: 20%; transform: rotate(-8deg); animation: mt-float 7s ease-in-out infinite; }
.mt-va-shape--4 { position: absolute; width: 60px; height: 60px; border-radius: 12px; background: rgba(0,210,255,0.3); top: 60%; left: 55%; transform: rotate(45deg); animation: mt-float 5s ease-in-out infinite; }
.mt-va-shape--5 { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(102,126,234,0.15), transparent); bottom: -30%; right: -10%; }
@keyframes mt-float { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-12px) rotate(var(--rot,0deg)); } }
.mt-va-shape--1 { --rot: 0deg; }
.mt-va-shape--2 { --rot: 15deg; }
.mt-va-shape--3 { --rot: -8deg; }
.mt-va-shape--4 { --rot: 45deg; }

/* Rating Sliders */
.mt-rates { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.mt-rate-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: #12121a; border: 1px solid #2a2a40; border-radius: 10px; flex-wrap: wrap; }
.mt-rate-label { font-size: 14px; color: #c0c0d0; flex: 1; min-width: 200px; line-height: 1.5; }
.mt-rate-stars { display: flex; gap: 6px; }
.mt-rate-star { width: 40px; height: 40px; border-radius: 8px; border: 1px solid #2a2a40; background: #1a1a2e; color: #6a6a80; font-weight: 700; font-size: 15px; cursor: pointer; transition: 0.2s; }
.mt-rate-star:hover { border-color: #667eea; color: #667eea; }
.mt-rate-star--active { background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); border-color: #667eea; color: white; box-shadow: 0 2px 8px rgba(102,126,234,0.3); }

/* Timer removed — styles kept for backwards compat */
.mt-timer-box { display: none; }

/* Analysis */
.mt-analysis-section { margin-bottom: 32px; }

/* College Cards */
.mt-colleges-section { margin-bottom: 32px; }
.mt-college-block { background: #12121a; border: 1px solid #2a2a40; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.mt-college-block__header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.mt-college-block__icon { font-size: 28px; }
.mt-college-block__header h3 { font-size: 18px; font-weight: 700; color: #e8e8f0; }
.mt-college-block__score { font-size: 13px; color: #667eea; }

.mt-college-tier { margin-bottom: 16px; }
.mt-college-tier:last-child { margin-bottom: 0; }
.mt-college-tier__header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #2a2a40; }
.mt-college-tier__label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.mt-college-tier__desc { font-size: 12px; color: #6a6a80; }

.mt-college-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.mt-college-card { background: #0a0a0f; border: 1px solid #1a1a2e; border-radius: 10px; padding: 16px; transition: 0.3s ease; }
.mt-college-card:hover { border-color: #667eea; transform: translateY(-1px); }
.mt-college-card__name { font-size: 16px; font-weight: 700; color: #e8e8f0; margin-bottom: 6px; }
.mt-college-card__meta { display: flex; gap: 12px; font-size: 12px; color: #6a6a80; margin-bottom: 8px; flex-wrap: wrap; }
.mt-college-card__why { font-size: 13px; color: #a0a0b8; line-height: 1.6; }
.mt-analysis-block { background: #12121a; border: 1px solid #2a2a40; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.mt-analysis-block__heading { font-size: 18px; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid #2a2a40; color: #e8e8f0; }
.mt-analysis-block__list { list-style: none; }
.mt-analysis-block__list li { font-size: 14px; color: #a0a0b8; line-height: 1.7; padding: 8px 0 8px 20px; position: relative; }
.mt-analysis-block__list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); border-radius: 50%; }
.mt-analysis-block__list li:not(:last-child) { border-bottom: 1px solid rgba(42,42,64,0.5); }

/* Results Footer */
.mt-results-footer { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.mt-disclaimer { margin-top: 32px; font-size: 12px; color: #6a6a80; text-align: center; }

/* Animations */
@keyframes mtFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mtSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
    .mt-logo-text { font-size: 32px; letter-spacing: 3px; }
    .mt-logo-icon { font-size: 48px; }
    .mt-tagline-main { font-size: 16px; }
    .mt-info-cards { grid-template-columns: 1fr; }
    .mt-test-header { padding: 10px 16px; gap: 10px; }
    .mt-category-badge { order: -1; width: 100%; text-align: center; }
    .mt-scenario-title { font-size: 20px; }
    .mt-career-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
    .mt-container { padding: 24px 16px; }
    .mt-logo-text { font-size: 26px; }
    .mt-btn--large { padding: 14px 32px; font-size: 15px; }
    .mt-answer-area textarea { min-height: 150px; padding: 16px; }
    .mt-answer-footer { flex-direction: column; align-items: stretch; }
    .mt-answer-actions { justify-content: stretch; }
    .mt-answer-actions .mt-btn { flex: 1; }
}
