.gallery-section {
    padding: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery a {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.gallery-thumb {
    width: 150px;
    height: auto;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-filter: grayscale(0.8);filter: grayscale(0.8);
}

.gallery a:hover .gallery-thumb {
    opacity: 0.8;
    -webkit-filter: grayscale(0);filter: grayscale(0);
}

.gallery-divider {
    border: 0;
    border-top: 1px solid #463e3e;
    margin: 20px 0;
}

h3 {
    text-align: center;
    margin: 10px 0;
    font-size: 1.2em;
}

.loading, .error-message {
    text-align: center;
    color: #ff0000;
    font-size: 16px;
}

.fancybox-caption {
  display: none !important;
}
