.tour-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background: rgb(56, 56, 56);
    overflow: hidden;
    font-family: sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    color: white;
}

.tour-image {
    flex: 0 0 100%;
    background-size: cover;
    border-radius: 0px;
    position: relative;
    object-position: top;
    overflow: hidden;
}

.price {
position: absolute;
top: 24px;
left: 26px;
font-size: 23px;
font-weight: bold;
color: rgb(255, 255, 255);
}

.price small {
display: block;
font-size: 12px;
font-weight: normal;
text-align: left;
}

.glass-effect {
background: rgb(16 16 16  32%);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 0 0 16px 16px;
padding: 10px;
color: white;
}

.tour-content {
min-height: 120px;
position: absolute;
bottom: 0%;
width: 100%;
padding: 2px 13px 10px 13px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.tour-title {
text-align: left;
font-size: 21px;
min-height: 40px;
font-weight: bold;
}


.tour-meta {
    display: flex;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    gap: 8px;
    margin-bottom: 2px;
    margin-top: 2px;
}
@media (max-width: 405px) {
    .tour-meta {
        font-size: 14px;
    }
}

.tour-dates {
    background: #EE7D00;
    color: rgb(255, 255, 255);
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: bold;
}

.tour-rating span {
color: gold;
}

.tour-info {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 300;
    margin-top: 2px;
    gap: 8px;
}

.tour-info div {
display: flex;
align-items: center;
gap: 4px;
}

.tour-info i {
color: white;
}
