
/* Tour Cards Grid */
.wtd-band-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Individual Card */
.wtd-band-card {
    background: #111;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    text-align: center;
    transition: transform 0.2s ease;
}

.wtd-band-card:hover {
    transform: scale(1.02);
}

.wtd-band-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.wtd-band-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: #fff;
}

.wtd-band-card a {
    color: inherit;
    text-decoration: none;
}

/* Tags under card */
.wtd-tags {
    padding: 0 1rem 1rem;
}

.wtd-tag {
    display: inline-block;
    background: #8a0f0f;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    margin: 0.2rem;
    border-radius: 999px;
    text-transform: uppercase;
}

/* Filter bar */
.wtd-tour-filter-bar {
    margin-bottom: 2rem;
}

.wtd-tour-filters select,
.wtd-tour-filters button {
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background: #222;
    color: #fff;
}

.wtd-tour-filters button {
    background: #8a0f0f;
    cursor: pointer;
}
