@import url("./globals.css");

.main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100dvh;
    padding: 2rem 0 4rem;
}

.main-container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 1rem;
}

/* —— Introdução DISC —— */

.intro-view[hidden],
#quiz-view[hidden],
.result-view[hidden] {
    display: none !important;
}

.intro-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e0d8;
    border-radius: 16px;
    padding: 2rem 1.75rem 2.25rem;
}

.intro-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5c46;
    margin-bottom: 0.75rem;
}

.intro-title {
    font-family: var(--font-manrope);
    font-size: clamp(1.45rem, 4vw, 1.85rem);
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.section-art {
    margin: 0 0 1.15rem;
    border-radius: 14px;
    overflow: hidden;
    background: #f3ebe3;
    border: 1px solid #ebe3da;
}

.section-art img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.intro-art {
    margin: 0 0 1.35rem;
}

.result-card h2 + .section-art {
    margin-top: -0.15rem;
}

.intro-body p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.95rem;
}

.intro-label {
    font-size: 0.8rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a5c46 !important;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem !important;
}

.intro-body .result-list {
    margin-bottom: 0;
}

.intro-start {
    display: block;
    width: 100%;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-btn);
    background-color: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-btn);
    transition: opacity 0.2s ease;
}

.intro-start:hover {
    opacity: 0.9;
}

.intro-start:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 3px;
}

@media (min-width: 561px) {
    .intro-start {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        min-width: 220px;
    }
}

.main-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .header-content .step-number {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.main-header .header-content .step-percent {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.main-header .header-progress {
    width: 100%;
    height: 10px;
    background-color: #f2ece5;
    border-radius: 5px;
}

.main-header .header-progress .progress-bar {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.main-header .header-progress .progress-bar .progress-bar-fill {
    width: 100%;
    height: 100%;
    background-color: #b08b67;
    border-radius: 5px;
    transition: max-width 0.3s ease;
}

.question-container {
    margin-top: 56px;
}

.question {
    display: none;
    flex-direction: column;
    gap: 24px;
}

.question.question-active {
    display: flex;
}

.question .question-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.question .question-header p {
    font-size: 14px;
    font-weight: 600;
    color: #7a5c46;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.question .question-header h1,
.question .question-header h2 {
    max-width: 400px;
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.question .question-header .legend {
    max-width: 400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin-top: 10px;
}

.question .question-header .legend .legend-item {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #6b6b6b;
    font-size: 12px;
}

.question .question-header .legend .legend-item .legend-item-number {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    background-color: #f2ece5;
    color: #7a5c46;
    font-weight: 600;
}

.question .question-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.question .question-content .question-option {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.question .question-content .question-option.is-answered {
    border-color: #b08b67;
}

.question .question-content .question-option.is-warning {
    border-color: #e07070;
    animation: option-shake 0.45s ease;
}

@keyframes option-shake {
    0%,
    100% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-6px);
    }
    40% {
        transform: translateX(6px);
    }
    60% {
        transform: translateX(-4px);
    }
    80% {
        transform: translateX(4px);
    }
}

.question .question-content .question-option .option-title {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.question .question-content .question-option .option-title span {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.question .question-content .question-option .option-title .alert {
    display: none;
    font-size: 13px;
    font-weight: 500;
    color: #d62828;
    letter-spacing: -0.5px;
}

.question .question-content .question-option .option-title .alert.is-visible {
    display: block;
}

.question .question-content .question-option .option-numbers {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.question .question-content .question-option .option-numbers .option-number {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.question .question-content .question-option .option-numbers .option-number input {
    position: absolute;
    inset: 0;
    width: 36px;
    height: 36px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.question .question-content .question-option .option-numbers .option-number-face {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2ece5;
    pointer-events: none;
}

.question .question-content .question-option .option-numbers .option-number-face span {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.question .question-content .question-option .option-numbers .option-number input:checked + .option-number-face {
    background-color: #7a5c46;
}

.question .question-content .question-option .option-numbers .option-number input:checked + .option-number-face span {
    color: #fff;
}

.question .question-content .question-option .option-numbers .option-number input:focus-visible + .option-number-face {
    outline: 2px solid #7a5c46;
    outline-offset: 2px;
}

.question .question-content .question-option .option-numbers .option-number.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.question .question-content .question-option .option-numbers .option-number.is-disabled input {
    cursor: not-allowed;
}

.question .question-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.question .question-footer .question-button {
    padding: 1rem 2rem;
    border-radius: var(--radius-btn);
    background-color: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
    border: none;
    box-shadow: var(--shadow-btn);
}

.question .question-footer .question-button:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 3px;
}

.question .question-footer .question-button.back-button {
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.question .question-footer .question-button.back-button:disabled {
    visibility: hidden;
}

.question .question-footer .question-button.next-button:disabled {
    background-color: #d9d0c7;
    color: #8a8078;
    cursor: not-allowed;
    box-shadow: none;
}

.question .question-footer .question-button:not(:disabled):hover {
    opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
    .question .question-content .question-option.is-warning {
        animation: none;
    }

    .analyzing-progress-fill {
        transition: none;
    }
}

/* —— Análise / loader —— */

.analyzing-view {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 55vh;
    padding: 2rem 0;
}

.analyzing-view[hidden] {
    display: none !important;
}

.analyzing-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: #fff;
    border: 1px solid #e8e0d8;
    border-radius: 16px;
}

.analyzing-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5c46;
    margin-bottom: 0.75rem;
}

.analyzing-title {
    font-family: var(--font-manrope);
    font-size: 1.45rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.analyzing-status {
    font-size: 0.95rem;
    color: #6b6b6b;
    min-height: 1.4em;
    margin-bottom: 1.5rem;
}

.analyzing-progress {
    width: 100%;
    height: 10px;
    background: #f2ece5;
    border-radius: 999px;
    overflow: hidden;
}

.analyzing-progress-fill {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: #b08b67;
    transition: width 0.08s linear;
}

.analyzing-percent {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7a5c46;
    font-variant-numeric: tabular-nums;
}

/* —— Resultado / Relatório —— */

.result-view {
    width: 100%;
}

.print-only {
    display: none;
}

.report {
    width: 100%;
}

.report-cover {
    background: linear-gradient(165deg, #6a4e3a 0%, #7a5c46 45%, #8f6d52 100%);
    color: #fff;
    border-radius: 20px;
    padding: 2.75rem 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.report-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.72;
}

.report-cover h1 {
    font-family: var(--font-manrope);
    font-size: clamp(1.85rem, 4vw, 2.4rem);
    font-weight: 700;
    margin: 0.85rem 0 0.5rem;
    letter-spacing: -0.03em;
}

.report-lead {
    opacity: 0.88;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.report-profiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

@media (min-width: 520px) {
    .report-profiles {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 100%;
    }
}

.report-profile-card {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 1.05rem 1.15rem;
    width: 100%;
}

.report-profile-card.is-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.report-profile-letter {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-manrope);
    font-weight: 700;
    font-size: 1.35rem;
    flex-shrink: 0;
    color: #fff;
}

.report-profile-label {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.report-profile-name {
    margin: 0.15rem 0;
    font-family: var(--font-manrope);
    font-size: 1.15rem;
    font-weight: 700;
}

.report-profile-essence {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.4;
}

.report-profile-score {
    margin: 0.45rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    opacity: 0.9;
}

/* —— Blocos dos dois perfis predominantes —— */

.report-profile-slice + .report-profile-slice {
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid #f0ebe6;
}

.report-profile-heading {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 0.85rem;
    font-family: var(--font-manrope);
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c2c2c;
}

.report-profile-heading-letter {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-manrope);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.report-profile-heading-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.report-profile-heading-rank {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8078;
}

.report-profile-heading-name {
    font-family: var(--font-manrope);
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c2c2c;
}

.report-profile-slice-body > .result-subtitle {
    margin-top: 0;
}

.report-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.report-meta div {
    text-align: center;
}

.report-meta dt {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 0.25rem;
}

.report-meta dd {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.result-card {
    background: #fff;
    border: 1px solid #e8e0d8;
    border-radius: 16px;
    padding: 1.6rem 1.75rem;
    margin-bottom: 1.15rem;
}

.result-card h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-manrope);
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #f0ebe6;
}

.result-card h2 span {
    min-width: 36px;
    height: 36px;
    padding: 0 0.35rem;
    border-radius: 8px;
    background: #7a5c46;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.result-card p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.report-label {
    font-size: 0.8rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a5c46 !important;
    margin-top: 0.5rem;
}

.result-subtitle {
    font-family: var(--font-manrope);
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
}

.result-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.5rem 0 1rem;
    color: #444;
}

.result-list li {
    margin-bottom: 0.4rem;
    line-height: 1.55;
}

.result-list--titled {
    list-style: none;
    padding-left: 0;
}

.result-list--titled li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0ebe6;
}

.result-list--titled li:last-child {
    border-bottom: none;
}

.result-list--titled strong {
    color: #2c2c2c;
}

.result-list--titled span {
    color: #666;
    font-size: 0.95rem;
}

.score-chart {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.score-row {
    display: grid;
    grid-template-columns: minmax(110px, 150px) 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0;
}

.score-row.is-predominant {
    background: #faf6f1;
    margin: 0 -0.5rem;
    padding: 0.55rem 0.5rem;
    border-radius: 10px;
}

.score-row-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
}

.score-letter {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.score-bar {
    height: 10px;
    background: #f2ece5;
    border-radius: 999px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 999px;
    min-width: 4px;
}

.score-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c2c2c;
    min-width: 3.2rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.score-value small {
    font-weight: 500;
    color: #999;
    font-size: 0.75rem;
}

.score-caption {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #888;
}

.comm-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comm-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    background: #faf8f5;
}

.comm-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-manrope);
    font-size: 1rem;
    margin-bottom: 0.65rem;
}

.comm-card h3 span {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.comm-focus {
    margin-bottom: 0.75rem !important;
}

.comm-label {
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a5c46 !important;
    margin-bottom: 0.25rem !important;
}

.comm-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comm-cols .result-list {
    margin-top: 0.25rem;
}

.result-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 0 2rem;
}

/* Mantém o botão acessível no fim do relatório longo (principalmente mobile) */
@supports (position: sticky) {
    .result-actions {
        position: sticky;
        bottom: 0;
        z-index: 20;
        margin-top: 0.5rem;
        padding: 0.85rem 0.75rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, rgba(250, 248, 245, 0) 0%, var(--color-bg) 28%, var(--color-bg) 100%);
    }
}

.result-actions .question-button {
    padding: 1rem 2rem;
    border-radius: var(--radius-btn);
    background-color: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-btn);
    min-width: min(100%, 240px);
}

.result-actions .question-button:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 3px;
}

.result-actions .question-button:disabled {
    opacity: 0.85;
    cursor: wait;
}

.result-tie-note {
    margin: 0 0 1.15rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid #e0d6cb;
    background: #faf6f1;
    color: #4a4038;
    font-size: 0.95rem;
    line-height: 1.55;
}

.result-tie-note strong {
    color: var(--color-primary);
}

.report-endorsement {
    margin: 0.5rem 0 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e8e0d8;
    background: #fff;
    text-align: center;
}

.report-endorsement .report-seal {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-manrope);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.report-endorsement p {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    color: #8a8078;
    line-height: 1.45;
}

.report-endorsement p:last-child {
    margin-bottom: 0;
}

.print-hint {
    max-width: 380px;
    margin: 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: #8a8078;
}

.print-hint strong {
    color: #7a5c46;
    font-weight: 600;
}

#print-pdf-btn:disabled {
    opacity: 0.85;
    cursor: wait;
}

body.is-printing {
    cursor: progress;
}

.pdf-status {
    display: none;
    position: fixed;
    left: 50%;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 40;
    width: min(92vw, 420px);
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    border: 1px solid #e0d6cb;
    background: #fff;
    color: #4a4038;
    font-size: 0.9rem;
    line-height: 1.45;
    text-align: center;
    box-shadow: 0 10px 30px rgba(42, 36, 32, 0.12);
    transform: translateX(-50%);
}

.pdf-status.is-visible,
body.is-printing .pdf-status:not([hidden]),
body.pdf-export .pdf-status:not([hidden]) {
    display: block;
}

/* Exportação PDF no mobile (html2pdf): espelha o que a impressão mostra */
body.pdf-export {
    cursor: progress;
}

body.pdf-export .no-print,
body.pdf-export .result-actions {
    display: none !important;
}

body.pdf-export .print-only {
    display: block !important;
}

@media (max-width: 560px) {
    .score-row {
        grid-template-columns: 1fr auto;
    }

    .score-bar {
        grid-column: 1 / -1;
    }

    .comm-cols {
        grid-template-columns: 1fr;
    }

    .report-profile-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .report-profile-letter {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .question .question-content .question-option {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
    }

    .question .question-content .question-option .option-title {
        flex: 1 1 auto;
        min-width: 0;
    }

    .question .question-content .question-option .option-title span:not(.alert) {
        font-size: 15px;
    }

    .question .question-content .question-option .option-title .alert {
        font-size: 12px;
    }

    .question .question-content .question-option .option-numbers {
        flex: 0 0 auto;
        gap: 4px;
    }

    .question .question-content .question-option .option-numbers .option-number input,
    .question .question-content .question-option .option-numbers .option-number-face {
        width: 32px;
        height: 32px;
    }

    .question .question-content .question-option .option-numbers .option-number-face span {
        font-size: 13px;
    }

    .question .question-footer {
        gap: 8px;
    }

    .question .question-footer .question-button {
        padding: 0.85rem 1.25rem;
        font-size: 13px;
    }
}


