.custom-gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.custom-gallery-grid a {
display: block;
}
.custom-gallery-grid img {
width: 100%;
height: auto;
object-fit: cover;
}
.pagination {
text-align: center;
margin-top: 20px;
}
.pagination button {
margin: 0 10px;
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
.pagination button:disabled {
background-color: #ccc;
cursor: not-allowed;
}
@media (max-width: 768px) {
.custom-gallery-grid {
grid-template-columns: 1fr;
}
}