.gallery__wrapper {
    width: 100%;
}

.gallery__container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.gallery__item {
    flex-grow: 1;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    /*cursor: pointer;*/
}

.gallery__item:last-child {
    flex-grow: 0;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__btn {
    display: block;
    margin: 40px auto 0;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #2a5a3b;
    color: #2a5a3b;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery__btn:hover {
    background: #2a5a3b;
    color: #fff;
}

@media (max-width: 1024px) {
    .gallery__item {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .gallery__container {
        gap: 10px;
    }

    .gallery__item {
        height: 180px;
        flex-basis: calc(50% - 10px);
        flex-grow: 1;
    }
}