.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
    padding: 0;
    margin: 0 auto;
    justify-content: center;
    max-width: 1000px;
}

.gallery-item {
    flex: calc((100% - 48px) / 3);
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}