ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    cursor: pointer;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    width: 1128px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.gallery-item {
    margin: 0;
    padding: 0;
    flex-basis: calc((100% - 48px) / 3);
    transition: transform 0.3s ease;
}

.gallery-link {
    display: block; 
    width: 360px; 
    height: 200px; 
    overflow: hidden; 
}

.gallery-image {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.gallery-item:hover, .gallery-item:focus {
    transform: scale(1.1);
}

.modal {
    background-color: #fff;
}

