.gallery-images {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .gallery-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .gallery-image-box {
        width: calc(25% - 20px); /* 4 images per row, with 20px margin on both sides */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .gallery-image-box img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .image-details {
        padding: 10px;
        background-color: #f1f1f1;
    }

    .artist-gallery {
        padding: 10px;
        background-color: #fff;
        text-align: center;
    }

    .artist-gallery a {
        display: block;
        color: #000;
        font-weight: bold;
        text-decoration: none;
    }

.image-details {
  height: 200px; /* set a fixed height */
  overflow: hidden;
  padding: 10px;
  background-color: #f1f1f1;
}
