.cdl-question-card {
    align-items: center;
    /* text-align: center; */
    gap: var(--spacing-lg);
}

.cdl-progress {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.cdl-statement-row {
    display: flex;
    align-items: stretch;
    gap: var(--spacing-md);
    width: 100%;
    background: #ffffff8a;
}

.cdl-statement-image {
    display: flex;
    width: 50%;
}

.cdl-statement-image img {
    width: 100%;
    height: 100%;
    min-height: 12rem;
    object-fit: cover;
}

.cdl-statement {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    padding: 2rem;
    width: 50%;
}

.cdl-options {
    display: flex;
    gap: var(--spacing-md);
    width: 100%;
}

.cdl-option {
    flex: 1;
}

.cdl-result-card {
    align-items: center;
    text-align: center;
}

.cdl-end-actions {
    display: flex;
    gap: var(--spacing-sm);
}

@media (max-width: 480px) {
    .cdl-options {
        flex-direction: column;
    }

    .cdl-statement-row {
        flex-direction: column;
    }

    .cdl-statement-image,
    .cdl-statement {
        width: 100%;
    }
}
