.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery-card {
    flex: 1 1 calc(50% - 40px);
    box-sizing: border-box;
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
}

h2 {
    margin-top: 0;
    color: #333;
}

p {
    color: #666;
}

.link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}

.vb25-gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
padding: 10px;
}

.vb25-gallery-item {
flex: 1 1 calc(33.333% - 20px);
margin: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
overflow: hidden;
border-radius: 10px;
background-color: #fff;
}

.vb25-gallery-item img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
border-radius: 10px;
}