
.question-explanation-image-container {
    display: flex;
    height: 170px;
    background-color: var(--qp-color-medium-light-grey);

    margin: -16px -16px 24px -16px;
}

.question-explanation-image {
    width: 100%;
    height: 90%;
    background-color: transparent;
    object-fit: contain;
    margin: auto;
}

.question-explanation-answers-card {
    width: 100%;
    height: 94px;
    border-radius: 8px;
    background-color: white;
    padding: 16px;
    gap: 32px;
}

.question-explanation-answers-card-item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--qp-color-dark-grey);
    margin-bottom: 8px;
}

.question-explanation-answers-card-item-value {
    font-size: 28px;
    font-weight: 700;
    height: 32px;
    line-height: 32px;
    color: var(--qp-color-blue-note);
    margin-bottom: 0;
}

.question-explanation-full-width-block {
    margin: 0 -16px;
}
.question-explanation-full-width-block > p {
    padding: 0 16px;
}
.question-explanation-full-width-block > div {
    padding: 16px;
    background-color: white;
}

.question-explanation-comment-image {
    width: 100%;
    height: auto;
}

.question-explanation-paragraph-image {
    width: 100%;
    height: auto;
}

.question-explanation-help-button-container {
    position: fixed;
    width: 100%;
    left: 0;
    padding: 0 16px;
    bottom: 24px;
    transition: bottom 0.6s ease 0s;
    z-index: 3;
}

.question-explanation-help-button-container.button-hidden {
    bottom: -48px;
}

/* DESKTOP CLASSES AND MEDIA QUERIES */
@media screen and (min-width: 992px) {
    .question-explanation-header {
        display: flex;
        margin-bottom: 16px;
    }

    .question-title-font {
        font-size: 32px;
        line-height: 40px
    }

    .question-comment-title-font {
        font-size: 24px;
        line-height: 32px
    }

    .question-explanation-title-font {
        font-size: 24px;
        line-height: 32px
    }

    .question-text-font {
        font-size: 20px;
        line-height: 24px
    }

    .question-explanation-image-container {
        position: relative;
        width: 168px;
        height: 168px;
        margin: 0 24px 0 0;
        border-radius: 8px;
        overflow: hidden;
        background-color: var(--qp-color-image-bg-grey);
        flex: none;
    }

    .question-explanation-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .question-explanation-comment-image {
        width: 70%;
        max-width: 600px;
        height: auto;
    }

    .question-explanation-paragraph-image {
        width: 70%;
        max-width: 600px;
        height: auto;
    }

    .question-explanation-full-width-block > div {
        background-color: var(--qp-color-light-grey);
    }

    .question-explanation-help-button-container {
        position: relative;
        width: 274px;
        height: auto;
        padding: 0;
        bottom: 0;
        margin-left: 0;
        margin-top: auto;

        transition: none;
    }

    .question-explanation-help-button-container.button-hidden {
        bottom: 0;
    }
}