/* FULLSCREEN QUESTIONS */
#questions-container {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
}

.question {
    position: absolute;
    font-family: var(--font-body);
    font-size: var(--fs-statement); /* Updated */
    opacity: 0;
    text-align: center;
    padding: 0 var(--space-xl);
    color: var(--offwhite);
}

.question.final {
    font-weight: 500;
}