/* ── Link ── */
.card-link {
    color: inherit;
    text-decoration: none;
}

/* ── Card ── */
.tour-card {
    display: flex;
    flex-direction: column;

    height: 100%;
    overflow: hidden;

    background: #fff;
    border-radius: 14px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* ── Image ── */
.tour-img-wrapper {
    position: relative;
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 250px;

    object-fit: cover;
}

.tour-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.05),
        transparent
    );

    pointer-events: none;
}

/* ── Content ── */
.tour-body {
    flex-grow: 1;
    padding: 20px;
}

.tour-title {
    margin: 0;

    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* ── Footer ── */
.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 20px;

    border-top: 1px solid #eee;

    font-size: 0.95rem;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #555;
}

.tour-duration svg {
    color: rgb(179, 134, 69);
}

.tour-price {
    color: #222;
    font-size: 1rem;
}

.tour-price strong {
    color: #000;
    font-size: 1.3rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .tour-img {
        height: 220px;
    }

    .tour-title {
        font-size: 1.3rem;
    }

    .tour-footer {
        padding: 16px;
    }
}