Top Summer Sneakers for 2025

/* ===== FIX FOR PRODUCT GRID ===== */
/* Makes all columns equal height */
.wp-block-columns {
align-items: stretch !important;
}

/* Standardizes image containers */
.wp-block-uagb-image {
height: 280px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
margin-bottom: 15px !important;
}

/* Makes all images the same height */
.wp-block-uagb-image img {
height: auto !important;
max-height: 250px !important;
width: auto !important;
max-width: 100% !important;
object-fit: contain !important;
}

/* Fixes product card layout */
.wp-block-column {
display: flex !important;
flex-direction: column !important;
padding: 15px !important;
}

/* Aligns all buttons to bottom */
.wp-block-buttons {
margin-top: auto !important;
padding-top: 20px !important;
}

/* Standardizes buttons */
.wp-block-button__link {
width: 100% !important;
padding: 10px !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
.wp-block-column {
margin-bottom: 30px !important;
}

.wp-block-uagb-image {
height: 220px !important;
}
}