.notion-collection-gallery.medium {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important; /* Display 3 columns by default */
gap: 20px !important; /* Adjust the gap as needed */
}
/* Media query for mobile devices (adjust max-width as needed) */
@media (max-width: 767px) {
.notion-collection-gallery.medium {
grid-template-columns: repeat(1, 1fr) !important; /* Display 1 column on mobile */
}