.trips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.trip-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Header */
.trip-card__header {
    position: relative;
    background-color: #0b1d4f;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 28px 24px 24px;
    min-height: 220px;
}
.trip-card__header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(11 29 79 / 76%), rgb(11 29 79 / 42%));
    z-index: 0;
}
.trip-card__header > * { position: relative; z-index: 1; }

.trip-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f5c451;
    color: #0b1d4f;
    font-size: 11px;
    font-family: 'Mulish';
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .5px;
    z-index: 2;
}

.trip-taxonomy {
    display: inline-block;
    font-size: 12px;
    font-family: 'Mulish';
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.trip-card__title-wrap { margin-top: 16px; }
.trip-days {
    font-size: 28px;
    font-family: 'Mulish';
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}
.trip-type {
    font-size: 22px;
    font-family: 'Mulish';
    font-weight: 600;
    color: #f5c451;
    margin: 4px 0 0;
}

/* Body */
.trip-card__body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }

.trip-title {
    font-size: 18px;
    font-family: 'Mulish';
    font-weight: 700;
    margin: 0 0 8px;
    color: #0b1d4f;
    line-height: 1.3;
}
.trip-description {
    font-size: 14px;
    font-family: 'Mulish';
    color: #555;
    margin: 0 0 16px;
    line-height: 1.5;
}

.trip-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
}
.trip-features li {
    position: relative;
    padding-left: 16px;
    font-size: 13.5px;
    font-family: 'Mulish';
    color: #333;
}
.trip-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    background: #f5c451;
    border-radius: 50%;
}

.trip-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.trip-option {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #cfd4e1;
    border-radius: 20px;
    font-size: 12.5px;
    font-family: 'Mulish';
    color: #555;
    background: #fff;
    transition: all .2s;
}
.trip-option.is-selected {
    background: #0b1d4f;
    color: #fff;
    border-color: #0b1d4f;
}

.trip-btn {
    display: block;
    text-align: center;
    background: #0b1d4f;
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Mulish';
    text-decoration: none;
    margin-top: auto;
    transition: background .2s;
}
.trip-btn:hover { background: #122a6e; }

.trips-empty { text-align: center; padding: 40px; color: #777; }

/* Responsive */
@media (max-width: 768px) {
    .trips-grid { grid-template-columns: 1fr; gap: 20px; }
    .trip-features { grid-template-columns: 1fr; }
    .trip-days { font-size: 24px; }
    .trip-type { font-size: 18px; }
}
