/* ========================================================================
   quiz-views.css — Wellness-Check Quiz Styles
   ========================================================================
   Extends portal-views.css (light-mode view system).
   Load AFTER portal-views.css in wellness-check.html.

   Components:
   1. Dimension intro headers
   2. Question cards (single-select, multi-select, likert)
   3. Skip button
   4. Validation state
   5. Radar chart
   6. Score bars & dimension cards
   7. Results view
   8. Consent view
   9. Sticky navigation (mobile)
   10. Red flag disclaimers
   ======================================================================== */

/* ===== 1. DIMENSION INTRO — Editorial header per view ===== */
.quiz-dimension-intro {
    padding: 1rem 0 1.5rem;
    margin-bottom: 1.25rem;
    position: relative;
}
.quiz-dimension-intro::before {
    content: ''; display: block; width: 48px; height: 2px;
    background: var(--color-rosa); margin-bottom: 1.25rem;
}
.quiz-dimension-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 0.375rem;
}
.quiz-dimension-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600;
    color: var(--color-deepGreen); line-height: 1.3;
    margin-bottom: 0.625rem; letter-spacing: -0.01em;
}
.quiz-dimension-desc {
    font-family: 'Newsreader', serif;
    font-size: 0.9375rem; line-height: 1.7;
    color: var(--text-soft);
}

/* ===== 2. QUESTION CARDS ===== */

/* --- 2a. Question wrapper --- */
.quiz-question {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(14,58,40,0.08);
}
.quiz-question:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}
.quiz-question-label {
    font-family: 'Newsreader', serif;
    font-size: 1.0625rem; font-weight: 500;
    color: var(--color-deepGreen); line-height: 1.6;
    margin-bottom: 0.875rem;
}
.quiz-question-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; color: var(--text-muted);
    margin-top: 0.25rem; font-style: italic;
}

/* --- 2b. Single-select option cards --- */
.quiz-options {
    display: flex; flex-direction: column; gap: 0.5rem;
}
.quiz-option {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--color-white);
    border: 1.5px solid rgba(14,58,40,0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; color: var(--color-deepGreen);
    line-height: 1.5;
}
.quiz-option:hover {
    border-color: rgba(14,58,40,0.3);
    background: rgba(14,58,40,0.02);
}
.quiz-option.selected {
    border-color: var(--color-deepGreen);
    background: rgba(14,58,40,0.05);
    font-weight: 600;
}
.quiz-option-radio {
    width: 18px; height: 18px; flex-shrink: 0;
    border: 2px solid rgba(14,58,40,0.25);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}
.quiz-option.selected .quiz-option-radio {
    border-color: var(--color-deepGreen);
}
.quiz-option.selected .quiz-option-radio::after {
    content: ''; position: absolute;
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    background: var(--color-deepGreen);
    border-radius: 50%;
}

/* --- 2c. Multi-select checkbox cards --- */
.quiz-option-checkbox {
    width: 18px; height: 18px; flex-shrink: 0;
    border: 2px solid rgba(14,58,40,0.25);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
}
.quiz-option.selected .quiz-option-checkbox {
    border-color: var(--color-deepGreen);
    background: var(--color-deepGreen);
}
.quiz-option.selected .quiz-option-checkbox::after {
    content: '';
    position: absolute; top: 2px; left: 5px;
    width: 5px; height: 9px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.quiz-options--multi .quiz-max-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; color: var(--color-rosa-fuerte);
    margin-bottom: 0.5rem; font-weight: 500;
}

/* --- 2d. Likert scale --- */
.quiz-likert {
    display: flex; gap: 0.375rem;
    justify-content: space-between;
}
.quiz-likert-option {
    flex: 1; text-align: center;
    padding: 0.75rem 0.25rem;
    background: var(--color-white);
    border: 1.5px solid rgba(14,58,40,0.12);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; color: var(--text-soft);
    line-height: 1.3;
}
.quiz-likert-option:hover {
    border-color: rgba(14,58,40,0.3);
}
.quiz-likert-option.selected {
    border-color: var(--color-deepGreen);
    background: rgba(14,58,40,0.06);
    color: var(--color-deepGreen);
    font-weight: 600;
}
.quiz-likert-value {
    display: block;
    font-size: 1.125rem; font-weight: 700;
    color: var(--color-deepGreen);
    margin-bottom: 0.25rem;
}
.quiz-likert-labels {
    display: flex; justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem; color: var(--text-muted);
    margin-top: 0.375rem; padding: 0 0.125rem;
}

/* --- 2e. Date picker --- */
.quiz-date-wrap {
    display: flex; gap: 0.75rem; align-items: center;
}
.quiz-date-select {
    flex: 1; padding: 0.75rem 1rem;
    background: var(--color-white);
    border: 1.5px solid rgba(14,58,40,0.15);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; color: var(--color-deepGreen);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230E3A28' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}
.quiz-date-select:focus {
    outline: none;
    border-color: var(--color-deepGreen);
    box-shadow: 0 0 0 3px rgba(14,58,40,0.1);
}

/* ===== 3. SKIP BUTTON ===== */
.quiz-skip {
    display: inline-block;
    padding: 0.625rem 1rem;
    background: none;
    border: 1px dashed rgba(14,58,40,0.2);
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: all 0.2s;
    margin-top: 0.25rem;
}
.quiz-skip:hover {
    border-color: rgba(14,58,40,0.35);
    color: var(--text-soft);
}
.quiz-skip.selected {
    border-color: rgba(14,58,40,0.3);
    background: rgba(14,58,40,0.03);
    color: var(--text-soft);
    font-weight: 500;
}

/* ===== 4. VALIDATION STATE ===== */
.quiz-question.unanswered .quiz-question-label {
    color: var(--color-rosa-fuerte);
}
.quiz-question.unanswered .quiz-question-label::after {
    content: ' *';
    color: var(--color-rosa-fuerte);
    font-weight: 700;
}
.rg-nav-btn--next.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ===== 5. RADAR CHART ===== */
.quiz-radar-wrap {
    display: flex; justify-content: center;
    padding: 2rem 0 2.5rem;
}
.quiz-radar-svg {
    width: 100%; max-width: 460px; height: auto;
}
@media (max-width: 480px) {
    .quiz-radar-svg { max-width: 340px; }
}
.quiz-radar-grid {
    fill: none;
    stroke: rgba(14,58,40,0.07);
    stroke-width: 0.75;
}
.quiz-radar-axis {
    stroke: rgba(14,58,40,0.1);
    stroke-width: 0.75;
    stroke-dasharray: 2 4;
}
.quiz-radar-area {
    fill: url(#radarGrad);
    stroke: var(--color-deepGreen);
    stroke-width: 2.5;
    stroke-linejoin: round;
    animation: radarDraw 1s ease-out forwards;
}
@keyframes radarDraw {
    0% { opacity: 0; transform: scale(0.85); transform-origin: center; }
    100% { opacity: 1; transform: scale(1); }
}
.quiz-radar-dot {
    stroke: var(--color-white);
    stroke-width: 2.5;
    r: 5;
    animation: radarDotPop 0.4s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}
@keyframes radarDotPop {
    0% { opacity: 0; r: 2; }
    60% { opacity: 1; r: 6; }
    100% { opacity: 1; r: 5; }
}
.quiz-radar-pct {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px; font-weight: 500;
    fill: rgba(14,58,40,0.25);
    text-anchor: start;
}
.quiz-radar-score-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 700;
    text-anchor: middle;
    opacity: 0;
    animation: radarNumFade 0.3s ease forwards;
    animation-delay: 1.1s;
}
@keyframes radarNumFade {
    to { opacity: 1; }
}
.quiz-radar-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px; font-weight: 600;
    text-anchor: middle;
}

/* ===== 6. SCORE BARS & DIMENSION CARDS ===== */
.quiz-results-grid {
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 1.5rem;
}
.quiz-dim-card {
    background: var(--color-white);
    border: 1px solid rgba(14,58,40,0.08);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.3s, border-color 0.3s;
    opacity: 0;
    animation: dimCardFade 0.4s ease forwards;
}
@keyframes dimCardFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.quiz-dim-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-color: rgba(14,58,40,0.15);
}
/* Subtle left accent by level */
.quiz-dim-card--low { border-left: 3px solid var(--color-rosa-fuerte); }
.quiz-dim-card--mid { border-left: 3px solid var(--color-gold); }
.quiz-dim-card--high { border-left: 3px solid var(--color-deepGreen); }

.quiz-dim-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.875rem;
}
.quiz-dim-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.quiz-dim-icon svg {
    width: 22px; height: 22px;
}
.quiz-dim-icon.score-high { color: var(--color-deepGreen); }
.quiz-dim-icon.score-mid { color: var(--color-gold-accessible); }
.quiz-dim-icon.score-low { color: var(--color-rosa-fuerte); }

.quiz-dim-header-text {
    flex: 1; min-width: 0;
}
.quiz-dim-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem; font-weight: 600;
    color: var(--color-deepGreen);
    display: block;
}
.quiz-dim-level {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    display: block; margin-top: 0.125rem;
}
.quiz-dim-level.score-high { color: var(--color-deepGreen); }
.quiz-dim-level.score-mid { color: var(--color-gold-accessible); }
.quiz-dim-level.score-low { color: var(--color-rosa-fuerte); }

/* Score circle */
.quiz-dim-score-circle {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem; font-weight: 800;
    color: var(--color-white);
}
.quiz-dim-score-circle.score-high { background: var(--color-deepGreen); }
.quiz-dim-score-circle.score-mid { background: var(--color-gold-accessible); }
.quiz-dim-score-circle.score-low { background: var(--color-rosa-fuerte); }

/* Score bar — thicker */
.quiz-score-bar {
    width: 100%; height: 8px;
    background: rgba(14,58,40,0.06);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.875rem;
}
.quiz-score-fill {
    height: 100%; border-radius: 4px;
    transition: width 1s ease;
}
.quiz-score-fill.score-high { background: linear-gradient(90deg, var(--color-lighterGreen), var(--color-deepGreen)); }
.quiz-score-fill.score-mid { background: linear-gradient(90deg, #E8D48B, var(--color-gold)); }
.quiz-score-fill.score-low { background: linear-gradient(90deg, #E8B4BC, var(--color-rosa-fuerte)); }

.quiz-dim-text {
    font-family: 'Newsreader', serif;
    font-size: 0.9375rem; line-height: 1.75;
    color: var(--text-soft);
}

/* Expandable recommendation */
.quiz-dim-toggle {
    display: flex; align-items: center; gap: 0.375rem;
    margin-top: 0.75rem;
    padding: 0; border: none; background: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--color-deepGreen);
    transition: color 0.2s;
}
.quiz-dim-toggle:hover { color: var(--color-gold-accessible); }
.quiz-dim-toggle-arrow {
    display: inline-block;
    transition: transform 0.25s;
    font-size: 1.125rem; line-height: 1;
}
.quiz-dim-toggle[aria-expanded="true"] .quiz-dim-toggle-arrow {
    transform: rotate(90deg);
}
.quiz-dim-rec-wrap {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
}
.quiz-dim-rec-wrap.open {
    max-height: 200px;
}
.quiz-dim-rec {
    margin-top: 0.625rem;
    padding: 0.75rem 1rem;
    background: rgba(14,58,40,0.025);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; color: var(--color-deepGreen);
    font-weight: 500; line-height: 1.6;
}
.quiz-dim-rec::before {
    content: '\2192  ';
    color: var(--color-gold);
}

/* ===== 7. RESULTS VIEW ===== */
.quiz-results-header {
    text-align: center;
    padding: 2.5rem 0 1rem;
}
.quiz-results-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--color-gold-accessible);
    border: 1.5px solid var(--color-gold);
    padding: 0.25rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.quiz-results-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem; font-weight: 600;
    color: var(--color-deepGreen);
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}
.quiz-results-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; color: var(--text-muted);
}
.quiz-results-intro {
    font-family: 'Newsreader', serif;
    font-size: 1.0625rem; line-height: 1.8;
    color: var(--text-soft);
    text-align: center;
    max-width: 560px; margin: 1rem auto 1.5rem;
}
/* Gold separator between sections */
.quiz-section-sep {
    width: 48px; height: 2px;
    background: var(--color-gold);
    margin: 2rem auto;
    opacity: 0.5;
}

/* STRAW+10 Phase Indicator */
.quiz-phase-indicator {
    margin: 1.5rem 0 2rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border-radius: 14px;
}
.quiz-phase-timeline {
    display: flex; align-items: flex-start;
    position: relative;
    padding-top: 1rem;
}
/* Connecting line behind dots */
.quiz-phase-timeline::before {
    content: ''; position: absolute;
    top: 1.375rem; left: 10%; right: 10%;
    height: 2px;
    background: rgba(14,58,40,0.1);
}
.quiz-phase-step {
    flex: 1; text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem; font-weight: 500;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}
.quiz-phase-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(14,58,40,0.12);
    margin: 0 auto 0.5rem;
    transition: all 0.3s;
}
.quiz-phase-step.passed .quiz-phase-dot {
    background: var(--color-deepGreen);
    opacity: 0.4;
}
.quiz-phase-step.active .quiz-phase-dot {
    width: 14px; height: 14px;
    background: var(--color-deepGreen);
    box-shadow: 0 0 0 4px rgba(14,58,40,0.12);
}
.quiz-phase-step.active {
    color: var(--color-deepGreen);
    font-weight: 700;
}
.quiz-phase-label {
    display: block;
    font-size: 0.5625rem;
    margin-top: 0.125rem;
    color: var(--text-muted);
}
.quiz-phase-step.active .quiz-phase-label {
    color: var(--color-deepGreen);
}
/* Descriptive text below timeline */
.quiz-phase-desc {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(14,58,40,0.06);
    font-family: 'Newsreader', serif;
    font-size: 0.9375rem; line-height: 1.75;
    color: var(--text-soft);
}
@media (max-width: 480px) {
    .quiz-phase-step > span:first-of-type {
        font-size: 0.5625rem;
    }
}

/* ===== 8. CONSENT VIEW ===== */
.quiz-consent-box {
    background: var(--bg-elevated);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.25rem 0;
}
.quiz-consent-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; font-weight: 700;
    color: var(--color-deepGreen);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.quiz-consent-list {
    list-style: none; padding: 0; margin: 0;
}
.quiz-consent-list li {
    display: flex; gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; color: var(--text-soft);
    line-height: 1.5; padding: 0.25rem 0;
}
.quiz-consent-list li::before {
    content: '\2022'; color: var(--color-rosa);
    flex-shrink: 0;
}
.quiz-consent-check {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 1rem;
    margin: 0.75rem 0;
    background: var(--color-white);
    border: 1.5px solid rgba(14,58,40,0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.quiz-consent-check:hover {
    border-color: rgba(14,58,40,0.25);
}
.quiz-consent-check.checked {
    border-color: var(--color-deepGreen);
    background: rgba(14,58,40,0.02);
}
.quiz-consent-check input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--color-deepGreen);
}
.quiz-consent-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; line-height: 1.6;
    color: var(--color-deepGreen);
}
.quiz-consent-tag {
    display: inline-block;
    font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 2px 6px; border-radius: 3px;
    margin-right: 0.375rem;
}
.quiz-consent-tag.required {
    background: rgba(173,68,92,0.1);
    color: var(--color-rosa-fuerte);
}
.quiz-consent-tag.optional {
    background: rgba(14,58,40,0.06);
    color: var(--text-muted);
}

/* ===== 9. STICKY NAVIGATION (mobile) ===== */
@media (max-width: 768px) {
    .quiz-sticky-nav {
        position: fixed; bottom: 0; left: 0; right: 0;
        background: var(--color-white);
        border-top: 1px solid rgba(14,58,40,0.1);
        padding: 0.75rem 1rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
        z-index: 100;
        box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    }
    .quiz-sticky-nav .rg-nav-buttons {
        margin-top: 0; padding-top: 0; border-top: none;
    }
    /* Add bottom padding to content to avoid sticky nav overlap */
    .quiz-content-pad {
        padding-bottom: 5rem;
    }
    /* Likert wraps to 2 rows on small screens */
    .quiz-likert {
        flex-wrap: wrap;
    }
    .quiz-likert-option {
        flex: 0 0 calc(50% - 0.1875rem);
        min-width: 0;
    }
    /* 5-item likert: let them wrap naturally */
    .quiz-likert--5 .quiz-likert-option {
        flex: 0 0 calc(33.333% - 0.25rem);
    }
}

/* Touch targets minimum 48px */
@media (pointer: coarse) {
    .quiz-option { min-height: 48px; }
    .quiz-likert-option { min-height: 48px; }
    .quiz-skip { min-height: 44px; }
}

/* ===== 10. RED FLAG DISCLAIMERS ===== */
.quiz-redflag {
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--color-white);
    border: 1px solid rgba(173,68,92,0.15);
    border-left: 3px solid var(--color-rosa-fuerte);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.quiz-redflag-header {
    display: flex; align-items: center; gap: 0.625rem;
    margin-bottom: 0.625rem;
}
.quiz-redflag-icon {
    width: 22px; height: 22px;
    color: var(--color-rosa-fuerte);
    flex-shrink: 0;
}
.quiz-redflag-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; font-weight: 700;
    color: var(--color-rosa-fuerte);
}
.quiz-redflag-intro {
    font-family: 'Newsreader', serif;
    font-size: 0.875rem; line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-style: italic;
}
.quiz-redflag-item {
    display: flex; gap: 0.625rem;
    padding: 0.375rem 0;
    font-family: 'Newsreader', serif;
    font-size: 0.9375rem; line-height: 1.7;
    color: var(--text-soft);
}
.quiz-redflag-bullet {
    width: 6px; height: 6px;
    background: var(--color-rosa-fuerte);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.625rem;
}

/* Results subtitle (sorting explanation) */
.quiz-results-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; color: var(--text-muted);
    text-align: center;
    margin: 0.25rem 0 0.75rem;
    font-style: italic;
}

/* ===== 11. LEGAL DISCLAIMER (bottom of results) ===== */
.quiz-disclaimer {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-elevated);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; line-height: 1.6;
    color: var(--text-muted);
}
.quiz-disclaimer strong {
    color: var(--text-soft);
}
.quiz-disclaimer--personal {
    border-left: 2px solid var(--color-gold);
}
.quiz-disclaimer + .quiz-disclaimer {
    margin-top: 0.5rem;
    background: none;
    padding: 0.5rem 1.25rem;
    text-align: center;
    color: var(--color-gold-accessible);
}

/* ===== 11b. PDF DOWNLOAD BUTTON ===== */
.quiz-pdf-section {
    text-align: center;
    margin: 2rem 0 0.5rem;
}
.quiz-pdf-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--color-white);
    border: 2px solid var(--color-deepGreen);
    border-radius: 10px;
    color: var(--color-deepGreen);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.quiz-pdf-btn:hover {
    background: var(--color-deepGreen);
    color: var(--color-white);
}
.quiz-pdf-btn:hover svg { stroke: var(--color-white); }
.quiz-pdf-btn:disabled {
    opacity: 0.5; cursor: wait;
}
.quiz-pdf-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem; color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ===== 12. PROCESSING ANIMATION ===== */
.quiz-processing {
    text-align: center;
    padding: 4rem 1rem;
}
.quiz-processing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600;
    color: var(--color-deepGreen);
    margin-bottom: 1.5rem;
}
.quiz-processing-bar {
    width: 200px; height: 3px;
    background: rgba(14,58,40,0.1);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
}
.quiz-processing-fill {
    width: 0; height: 100%;
    background: var(--color-gold);
    border-radius: 2px;
    animation: quizProcessing 2.5s ease-in-out forwards;
}
@keyframes quizProcessing {
    0% { width: 0; }
    60% { width: 70%; }
    90% { width: 90%; }
    100% { width: 100%; }
}
.quiz-processing-text {
    font-family: 'Newsreader', serif;
    font-size: 1rem; color: var(--text-soft);
    font-style: italic;
}

/* ===== 13. CTA SECTION (results) ===== */
.quiz-cta-section {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    background: var(--bg-elevated);
    border-radius: 16px;
    text-align: center;
}
.quiz-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem; font-weight: 600;
    color: var(--color-deepGreen);
    margin-bottom: 0.75rem;
}
.quiz-cta-text {
    font-family: 'Newsreader', serif;
    font-size: 1rem; line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 1.25rem;
    max-width: 480px; margin-left: auto; margin-right: auto;
}
.quiz-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-near-black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem; font-weight: 700;
    border-radius: 10px; text-decoration: none;
    box-shadow: 0 4px 16px rgba(212,175,55,0.3);
    transition: all 0.2s;
}
.quiz-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212,175,55,0.4);
}
.quiz-cta-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; color: var(--text-muted);
    margin-top: 0.625rem;
}

/* ===== 10a. ATHENA AWARENESS TOAST ===== */
.quiz-athena-toast {
    position: fixed;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%) translateY(1rem);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; font-weight: 500;
    color: var(--color-deepGreen, #0E3A28);
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(173,68,92,0.2);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 9000;
    max-width: 90vw;
    text-align: center;
}
.quiz-athena-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== 10b. MICRO-INSIGHT + COMPARISON ===== */

.quiz-micro-insight {
    background: rgba(173,68,92,0.05);
    border-left: 3px solid var(--color-rosa-fuerte, #AD445C);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.quiz-micro-insight-text {
    font-family: 'Newsreader', serif;
    font-size: 0.9375rem; line-height: 1.65;
    color: var(--text-secondary, #555);
    font-style: italic;
}
.quiz-micro-insight-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--color-rosa-fuerte, #AD445C);
    margin-bottom: 0.375rem;
}

/* Basis vs Athena comparison */
.quiz-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 540px) {
    .quiz-compare { grid-template-columns: 1fr; }
}
.quiz-compare-col {
    border-radius: 10px;
    padding: 1.125rem;
}
.quiz-compare-col--basis {
    background: var(--color-offwhite, #F7F7F5);
    border: 1px solid rgba(14,58,40,0.08);
}
.quiz-compare-col--athena {
    background: rgba(173,68,92,0.05);
    border: 1px solid rgba(173,68,92,0.15);
}
.quiz-compare-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}
.quiz-compare-col--basis .quiz-compare-label {
    color: var(--color-deepGreen, #0E3A28);
}
.quiz-compare-col--athena .quiz-compare-label {
    color: var(--color-rosa-fuerte, #AD445C);
}
.quiz-compare-list {
    list-style: none; padding: 0; margin: 0;
}
.quiz-compare-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; line-height: 1.5;
    color: var(--text-secondary, #555);
    padding: 0.25rem 0 0.25rem 1.375rem;
    position: relative;
}
.quiz-compare-list li::before {
    position: absolute; left: 0; top: 0.35em;
    font-size: 0.75rem;
}
.quiz-compare-col--basis .quiz-compare-list li::before {
    content: '\2713'; color: var(--color-deepGreen, #0E3A28); opacity: 0.5;
}
.quiz-compare-col--athena .quiz-compare-list li::before {
    content: '\2713'; color: var(--color-rosa-fuerte, #AD445C);
}
/* .quiz-compare-done removed — strikethrough was confusing for users */

/* ===== 11. ATHENA IA REPORT — Button + Modal ===== */

.quiz-report-section {
    text-align: center;
    padding: 1.25rem 0;
}
/* Enhanced report section with value preview */
.quiz-report-section--enhanced {
    text-align: left;
    background: rgba(173,68,92,0.04);
    border: 1px solid rgba(173,68,92,0.12);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 0.5rem;
}
.quiz-report-section--enhanced .quiz-report-btn {
    display: flex; width: 100%; justify-content: center;
}
.quiz-report-section--enhanced .quiz-report-hint {
    text-align: center;
}
.quiz-report-intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 600;
    color: var(--color-deepGreen, #0E3A28);
    margin-bottom: 0.375rem;
}
.quiz-report-intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; line-height: 1.5;
    color: var(--text-secondary, #555);
    margin-bottom: 1rem;
}
.quiz-report-intro-text em {
    font-style: italic; color: var(--color-rosa-fuerte, #AD445C);
}
.quiz-report-features {
    list-style: none; padding: 0; margin: 0 0 1.25rem 0;
}
.quiz-report-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; line-height: 1.6;
    color: var(--text-secondary, #555);
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.375rem;
}
.quiz-report-features li::before {
    content: '';
    position: absolute; left: 0; top: 0.5em;
    width: 6px; height: 6px;
    background: var(--color-rosa-fuerte, #AD445C);
    border-radius: 50%;
}
.quiz-report-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; font-weight: 600;
    color: white;
    background: var(--color-rosa-fuerte, #AD445C);
    border: none; border-radius: 10px;
    padding: 0.875rem 1.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
}
.quiz-report-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(173,68,92,0.35);
}
.quiz-report-btn:disabled {
    opacity: 0.7; cursor: wait;
}
.quiz-report-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.quiz-report-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; color: var(--text-muted);
    margin-top: 0.5rem;
}
.quiz-report-spinner {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: quiz-spin 0.7s linear infinite;
}
@keyframes quiz-spin { to { transform: rotate(360deg); } }

/* ── Report Modal ── */
.quiz-report-modal {
    position: fixed; inset: 0; z-index: 9990;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.quiz-report-modal.open { opacity: 1; }
.quiz-report-modal.closing { opacity: 0; }
.quiz-report-backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.quiz-report-container {
    position: relative; z-index: 1;
    width: 92vw; max-width: 800px;
    max-height: 90vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.quiz-report-modal.open .quiz-report-container { transform: translateY(0); }
.quiz-report-toolbar {
    display: flex; justify-content: flex-end; gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(14,58,40,0.06);
    background: var(--color-ivory, #FAFAF5);
}
.quiz-report-close {
    background: none; border: none;
    font-size: 1.5rem; color: var(--text-muted, #96968D);
    cursor: pointer; padding: 0 0.5rem;
    line-height: 1;
}
.quiz-report-close:hover { color: var(--color-deepGreen, #0E3A28); }
.quiz-report-print {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    color: var(--color-deepGreen, #0E3A28);
    background: none; border: 1px solid var(--color-deepGreen, #0E3A28);
    border-radius: 6px; padding: 0.375rem 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}
.quiz-report-print:hover {
    background: var(--color-deepGreen, #0E3A28);
    color: white;
}
.quiz-report-body {
    padding: 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-family: 'Newsreader', serif;
    line-height: 1.75;
    color: var(--text-body, #373732);
}
.quiz-report-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem; font-weight: 600;
    color: var(--color-deepGreen, #0E3A28);
    margin: 2rem 0 0.625rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(14,58,40,0.08);
}
.quiz-report-body h2:first-of-type { border-top: none; padding-top: 0; }
.quiz-report-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; font-weight: 700;
    color: var(--color-deepGreen, #0E3A28);
    margin: 1rem 0 0.375rem;
}
.quiz-report-body p { margin-bottom: 0.75rem; font-size: 1rem; }
.quiz-report-body strong { color: var(--color-deepGreen, #0E3A28); }
.quiz-report-body p.cite {
    background: rgba(14,58,40,0.03);
    border-left: 3px solid var(--color-deepGreen, #0E3A28);
    padding: 0.625rem 0.875rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
}
.quiz-report-body p.highlight, .quiz-report-body .highlight {
    background: rgba(212,175,55,0.06);
    border-left: 3px solid var(--color-gold, #D4AF37);
    padding: 0.625rem 0.875rem;
    border-radius: 0 6px 6px 0;
}
.quiz-report-body p.connection, .quiz-report-body .connection {
    background: rgba(14,58,40,0.02);
    padding: 0.625rem 0.875rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    color: var(--color-deepGreen, #0E3A28);
}
.quiz-report-body .score-context {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    padding: 0.2rem 0.625rem; border-radius: 100px;
    margin-bottom: 0.5rem;
}
.quiz-report-body .score-context.low { background: rgba(173,68,92,0.1); color: #AD445C; }
.quiz-report-body .score-context.mid { background: rgba(212,175,55,0.12); color: #7A6414; }
.quiz-report-body .score-context.high { background: rgba(14,58,40,0.08); color: #0E3A28; }
.quiz-report-body table {
    width: 100%; border-collapse: collapse; margin: 1rem 0;
    font-family: 'Montserrat', sans-serif; font-size: 0.8rem;
}
.quiz-report-body thead { background: var(--color-deepGreen, #0E3A28); color: white; }
.quiz-report-body th {
    padding: 0.5rem 0.75rem; text-align: left; font-weight: 600;
    font-size: 0.7rem; letter-spacing: 0.5px; text-transform: uppercase;
}
.quiz-report-body td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(14,58,40,0.08);
    line-height: 1.5;
}
.quiz-report-body tbody tr:nth-child(even) { background: rgba(14,58,40,0.02); }
.quiz-report-body .disclaimer {
    margin-top: 2rem; padding: 1rem;
    background: rgba(14,58,40,0.03);
    border-left: 2px solid var(--color-rosa, #E8B4BC);
    border-radius: 0 6px 6px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; line-height: 1.5;
    color: var(--text-muted, #96968D);
}
.quiz-report-body .deliverable-header {
    text-align: center; padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-rosa, #E8B4BC);
    margin-bottom: 1.5rem;
}
.quiz-report-body .deliverable-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem; font-weight: 700;
    letter-spacing: 2px; color: var(--color-deepGreen, #0E3A28);
}
.quiz-report-body .deliverable-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.625rem; font-weight: 600;
    color: var(--color-deepGreen, #0E3A28);
    margin: 0.375rem 0 0.25rem;
}
.quiz-report-body .deliverable-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem; color: var(--text-muted, #96968D);
    margin: 0;
}
.quiz-report-body .deliverable-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; color: var(--text-muted, #96968D);
    margin-top: 0.5rem;
}
.quiz-report-body .deliverable-divider {
    height: 1px; background: var(--color-rosa, #E8B4BC);
    opacity: 0.4; margin: 0.75rem 0;
}

/* ── Cancel button during generation ── */
.quiz-report-cancel {
    display: block;
    margin: 0.625rem auto 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 500;
    color: var(--text-muted, #96968D);
    background: none; border: none; cursor: pointer;
    padding: 0.375rem 0.75rem;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.quiz-report-cancel:hover { color: var(--color-rosa-fuerte, #AD445C); }

/* ── Status area below button during generation ── */
.quiz-report-status {
    text-align: center;
    margin-top: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}
.quiz-report-msg {
    display: block;
    font-size: 0.8125rem; font-weight: 500;
    color: var(--color-deepGreen, #0E3A28);
}
.quiz-report-timer {
    display: block;
    font-size: 0.75rem; font-weight: 600;
    color: var(--text-muted, #96968D);
    margin-top: 0.125rem;
}

/* ── Toasts (error + info) ── */
.quiz-report-toast {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-rosa-fuerte, #AD445C); color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; font-weight: 600;
    padding: 0.75rem 1.5rem; border-radius: 10px;
    box-shadow: 0 8px 32px rgba(173,68,92,0.3);
    opacity: 0; transition: all 0.3s ease;
    z-index: 9991;
}
.quiz-report-toast--info {
    background: var(--color-deepGreen, #0E3A28);
    box-shadow: 0 8px 32px rgba(14,58,40,0.3);
}

/* ── Storage warning toast (quiz engines) ── */
.quiz-storage-warning {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #7A6414; color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem; font-weight: 600;
    padding: 0.75rem 1.5rem; border-radius: 10px;
    box-shadow: 0 8px 32px rgba(122,100,20,0.3);
    opacity: 0; transition: all 0.3s ease;
    z-index: 9991;
}
.quiz-storage-warning.visible {
    opacity: 1; transform: translateX(-50%) translateY(0);
}
.quiz-report-toast.visible {
    opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .quiz-report-container {
        width: 100vw; max-width: 100vw;
        max-height: 100dvh; height: 100dvh;
        border-radius: 0;
    }
    @supports not (height: 100dvh) {
        .quiz-report-container {
            max-height: 100vh; height: 100vh;
        }
    }
    .quiz-report-body { padding: 1.25rem; }
}

/* ── Upgrade Overlay (403 — no purchase) ── */
/* ── Email Gate (quiz lead magnet) ── */
.quiz-email-gate {
    position: fixed; inset: 0; z-index: 9990;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.quiz-email-gate.open { opacity: 1; }
.quiz-email-gate-backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.quiz-email-gate-card {
    position: relative; z-index: 1;
    width: 88vw; max-width: 440px;
    background: white; border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.quiz-email-gate.open .quiz-email-gate-card { transform: translateY(0); }
.quiz-email-gate-icon { margin-bottom: 0.75rem; }
.quiz-email-gate-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600;
    color: var(--color-deepGreen, #0E3A28);
    margin-bottom: 0.75rem;
}
.quiz-email-gate-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; line-height: 1.6;
    color: var(--text-body, #373732);
    margin-bottom: 0.5rem;
}
.quiz-email-gate-text strong { color: var(--color-deepGreen, #0E3A28); }
.quiz-email-gate-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; color: var(--text-muted, #96968D);
    margin-bottom: 1.25rem;
}
.quiz-email-gate-form { text-align: left; }
.quiz-email-gate-input {
    width: 100%; padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
    border: 1px solid rgba(14,58,40,0.2); border-radius: 8px;
    outline: none; transition: border-color 0.2s;
    margin-bottom: 0.75rem;
}
.quiz-email-gate-input:focus { border-color: var(--color-deepGreen, #0E3A28); }
.quiz-email-gate-consent {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.75rem;
    color: var(--text-muted, #96968D); line-height: 1.4;
    margin-bottom: 1rem; cursor: pointer;
}
.quiz-email-gate-consent input[type="checkbox"] { margin-top: 2px; }
.quiz-email-gate-btn {
    display: block; width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #D4AF37, #C5A059);
    padding: 0.875rem; border: none; border-radius: 8px;
    cursor: pointer; transition: all 0.25s ease;
}
.quiz-email-gate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}
.quiz-email-gate-btn:disabled {
    opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none;
}
.quiz-email-gate-error {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem; color: var(--color-rosa-fuerte, #AD445C);
    margin-top: 0.75rem; text-align: center;
}

/* ── Loading overlay (full-screen while Athena generates) ── */
.quiz-loading-overlay {
    position: fixed; inset: 0; z-index: 9980;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.95);
    opacity: 0; transition: opacity 0.3s ease;
}
.quiz-loading-overlay.visible { opacity: 1; }
.quiz-loading-content {
    text-align: center; max-width: 400px; padding: 2rem;
}
.quiz-loading-spinner {
    width: 48px; height: 48px;
    border: 3px solid rgba(14,58,40,0.1);
    border-top-color: var(--color-gold, #D4AF37);
    border-radius: 50%;
    animation: quiz-spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}
@keyframes quiz-spin { to { transform: rotate(360deg); } }
.quiz-loading-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--color-deepGreen, #0E3A28);
    margin-bottom: 1rem;
}
.quiz-loading-msg {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem; color: var(--text-muted, #96968D);
    line-height: 1.5; margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}
.quiz-loading-timer {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; color: rgba(14,58,40,0.3);
}
