.trip-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .trip {
            position: relative;
            width: calc(50% - 20px); /* Уменьшил размер блока до 1/3 с отступами */
            margin-bottom: 20px;
            overflow: hidden;
            background-color: #f0f0f0;
            border-radius: 25px; /* Закругление углов блока (25 пикселей) */
        }
        .trip img {
            width: 100%; /* Заполняем всю ширину блока */
            height: auto;
            display: block;
            object-fit: cover;
            object-position: center top;
            filter: brightness(0.7);
            transition: filter 0.3s ease;
            border-radius: 25px; /* Закругление углов картинки (25 пикселей) */
        }
        .trip .trip-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.6);
            color: #fff;
            transition: bottom 0.3s ease;
            border-radius: 0 0 25px 25px; /* Закругление нижних углов блока с информацией (25 пикселей) */
        }
        .trip:hover img {
            filter: brightness(1);
        }
        .trip:hover .trip-info {
            bottom: -40%;
        }
        .trip .trip-info h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }
        .trip .trip-info p {
            margin-bottom: 5px;
            font-size: 0.9rem;
            line-height: 1.3;
        }
        @media (max-width: 768px) {
            .trip {
                width: 100%; /* Полная ширина на мобильных устройствах */
                margin-right: 0;
            }
        }