/* =========================================
      TRIPS PAGE — Hành trình
========================================= */

.trips-container {
    max-width: 720px;
    margin: auto;
    padding: 16px;
}

.title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Trip Card */
.trip-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    align-items: center;
}

.trip-img {
    width: 110px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
}

.trip-info h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.trip-info p {
    margin: 0 0 8px;
    font-size: 13px;
    color: #6c7a89;
}

.progress {
    width: 100%;
    height: 6px;
    background: #e8eef5;
    border-radius: 6px;
    overflow: hidden;
}

.progress div {
    height: 100%;
    background: var(--accent);
    border-radius: inherit;
}

/* Desktop enhancement */
@media (min-width: 900px) {
    .trips-container {
        max-width: 900px;
        padding: 28px 0;
    }

    .trip-img {
        width: 150px;
        height: 120px;
    }

    .trip-card {
        padding: 16px;
    }
}