/*
==========================================================================
    Component: Challenge Data Section (Layout)
==========================================================================
*/
.challenge-pie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em 1em;
    align-items: start;
}

/* --- Responsive Styles --- */
@media (max-width: 767px) {
    .challenge-pie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2em 0em;
    }
}

@media (min-width: 768px) and (max-width: 1141px) {
    .challenge-pie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2em 0em;
    }
}