/* =========================================================
   ProMCQs MCQ Design
   ========================================================= */

.promcqs-mcq {
    margin: 0 0 24px;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e2e5e8;
    border-radius: 8px;
    box-sizing: border-box;
}


/* Question */

.promcqs-question {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
    color: #222222;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
}

.promcqs-question-number {
    flex-shrink: 0;
}

.promcqs-question-text {
    flex: 1;
}


/* Options */

.promcqs-options {
    margin: 0;
    padding: 0;
}

.promcqs-option {
    display: flex;
    gap: 10px;
    margin: 0 0 10px;
    padding: 0;
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
}

.promcqs-option-label {
    min-width: 22px;
    font-weight: 700;
}


/* Correct Answer */

.promcqs-answer {
    margin-top: 18px;
    padding: 12px 15px;
    background: #f4f7f5;
    border-left: 4px solid #2e7d32;
    border-radius: 4px;
    color: #222222;
    font-size: 15px;
    line-height: 1.6;
}

.promcqs-answer strong {
    font-weight: 700;
}


/* Explanation */

.promcqs-explanation {
    margin-top: 12px;
    padding: 12px 15px;
    background: #f7f7f7;
    border-radius: 4px;
    color: #333333;
    font-size: 15px;
    line-height: 1.6;
}

.promcqs-explanation strong {
    font-weight: 700;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .promcqs-mcq {
        padding: 17px;
        margin-bottom: 18px;
    }

    .promcqs-question {
        font-size: 17px;
        line-height: 1.55;
    }

    .promcqs-option {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 9px;
    }

    .promcqs-answer,
    .promcqs-explanation {
        font-size: 14px;
    }
}