/* Mobile only */
@media (max-width: 767px) {
    .team-mobile-stack {
        display: flex;
        flex-direction: column;
        align-items: center; /* center horizontally */
    }

    .team-mobile-stack > div {
        width: 100%;
        max-width: 320px; /* keeps them neat and centered */
        margin-bottom: 30px; /* extra breathing space */
    }

    /* Ensure Executive appears first, Committee second */
    .team-mobile-stack > div:nth-child(1) {
        order: 1;
    }

    .team-mobile-stack > div:nth-child(2) {
        order: 2;
    }
}