/* Force Elementor Loop Grid items to stretch to equal height */
.elementor-widget-loop-grid .elementor-loop-container {
    display: grid;
}

.elementor-widget-loop-grid .e-loop-item {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Ensure the direct child container fills the loop item height */
.elementor-widget-loop-grid .e-loop-item > .elementor-element.e-con {
    flex: 1 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}
