.InterviewQuestion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
}

.InterviewQuestion:nth-of-type(odd) {
    margin-right: 1rem;
}

.InterviewQuestion:nth-of-type(even) {
    margin-left: 1rem;
}

@media (min-width: 768px) {
    .InterviewQuestion:nth-of-type(odd) {
        margin-right: 4rem;
    }
    .InterviewQuestion:nth-of-type(even) {
        margin-left: 4rem;
    }
}

.InterviewQuestion-header {
    font-size: 1.5rem;
    color: var(--bs-red);
    font-style: italic;

    > p {
        margin-bottom: 0;
    }
}

.InterviewQuestion-body {
    font-size: 1.25rem;
    color: var(--bs-gray-dark);
}
