.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 48px;
    cursor: pointer;
}

.gallery-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-card:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

.gallery-info {
    padding: 16px 12px 12px 12px;
    text-align: center;
}

.gallery-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #333;
}

.gallery-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Add gap above gallery and below before footer */
body > .gallery-container {
    margin-top: 48px;
    margin-bottom: 48px;
}
