.wte-custom-filter-wrapper{
    display:flex;
    gap:20px;
    justify-content:center;
    margin:40px 0;
    flex-wrap:wrap;
}

.wte-custom-filter-wrapper select{
    min-width:280px;
    height:64px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 20px;
    font-size:18px;
    background:#fff;
    outline:none;
}

.wte-trip-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.wte-trip-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.wte-trip-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.wte-trip-content{
    padding:20px;
}

.wte-trip-content h3{
    margin-bottom:15px;
    font-size:24px;
}

.wte-trip-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}