/* ========================================
   Orbit Google Reviews — Grid layout
   Prefix: og-
   ======================================== */
.og-photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* Make cards taller/squarer */
.og-photo-grid .og-review-card {
    min-height: 240px;
}

@media (max-width: 640px) {
    .og-photo-grid { grid-template-columns: 1fr; }
    .og-photo-grid .og-review-card { min-height: 200px; }
}
