a {
    text-decoration: none;
    color: inherit;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    aspect-ratio: 1 / 1;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 1rem;
    height: 100%;
}

.tour-title-cn {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tour-title-en {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.tour-title-cn,
.tour-title-en {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 最多顯示 3 行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1em * 1.5 * 3);
    /* 預留3行高度，1.5是行高 */
    line-height: 1.5;
}

.tour-price {
    color: #e74c3c;
    font-size: 1rem;
    font-weight: bold;
}