.gallery {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1300px;
    gap: 5px;
}

.gallery__column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery__column--left {
    flex: 1 1 33%;
}

.gallery__column--right {
    flex: 1 1 66%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.gallery a {
    text-decoration: none;
}

.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s, border-color 0.3s;
}

.gallery__column--left img {
    height: 100%; /* Высокая картинка будет заполнять всю высоту */
}

.gallery img:hover {
    transform: scale(1.1);
    border-color: #333;
}
