* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 20px;
    background: #f5f5f5;
    color: #222;
}


h1 {
    text-align: center;
    margin-bottom: 18px;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1100px;
    justify-content: center;
}


.gallery-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    flex-basis: calc(33.333% - 16px);
    display: flex;
    align-items: center;
    justify-content: center;
}


.gallery-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}


.gallery-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.2s ease;
}


.gallery-item:hover .gallery-image {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .gallery-item {
        flex-basis: calc(50% - 12px);
    }
}

@media (max-width: 520px) {
    .gallery-item {
        flex-basis: 100%;
    }

    .gallery-image {
        height: 180px;
    }
}

.basicLightbox--visible img {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    margin: 0 auto;
}