/* Initial stacked state enforced before animation */
.angie-cards-section.angie-stacked-init {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.angie-cards-section.angie-stacked-init .angie-card {
    width: 100% !important;
    max-width: 500px !important; /* Prevents them from being too wide on desktop when stacked */
    margin-bottom: 20px !important;
}

/* Ensure the cards don't jump layout before JS loads */
.angie-cards-section {
    visibility: hidden; /* Prevent FOUC */
}
.angie-cards-section.gsap-initialized {
    visibility: visible;
}