.custom-gallery {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center; 
    gap: 5px;
    padding: 10px; 
    overflow-x: auto;
}

.custom-gallery a {
    display: inline-block;
}

.custom-gallery img {
    width: auto;
    height: 300px; 
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.custom-gallery img:hover {
    transform: scale(1.05); 
}

.page__title {
    display: none;
  }
