.tour-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.tour-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tour-item:hover {
    transform: translateY(-5px);
}

.tour-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.tour-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-content {
    padding: 20px;
}

.tour-title {
    margin: 0 0 15px;
    font-size: 1.2em;
    line-height: 1.4;
}

.tour-title a {
    color: #333;
    text-decoration: none;
}

.tour-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.tour-meta > div {
    margin-bottom: 5px;
}

.tour-meta span {
    font-weight: bold;
    color: #333;
}

.tour-price {
    color: #e44d26;
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px 0;
}

.tour-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tour-detail-link {
    display: inline-block;
    padding: 8px 20px;
    background: #e44d26;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.tour-detail-link:hover {
    background: #d04323;
    color: #fff;
}
