/* ── Venue Shows Front-end Styles ─────────────────────────────────────────── */

/* ── Card grid (shortcode / archive) ────────────────────────────────────── */
.vs-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

.vs-show-card {
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.vs-show-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.2);
}

.vs-show-card-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #1a1a2e;
    overflow: hidden;
}

.vs-show-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.vs-show-card:hover .vs-show-card-image img {
    opacity: 0.9;
}

.vs-show-card-no-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a2e 0%, #2e1a00 100%);
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
}

.vs-show-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
}

.vs-show-card-date {
    margin: 0 0 3px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.vs-show-card-title {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.vs-show-card-cover {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.vs-show-card-cover.is-free {
    color: #4db8ff;
}

.vs-show-card-cover.is-paid {
    color: #e94560;
}

.vs-show-card-footer {
    padding: 9px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.vs-show-card-stage {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.vs-show-card-link {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.15s;
}

.vs-show-card-link:hover {
    color: #fff;
}

/* ── List item (widget) ──────────────────────────────────────────────────── */
.vs-shows-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vs-show-list-item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    min-height: 80px;
    transition: border-color 0.15s ease;
}

.vs-show-list-item:hover {
    border-color: rgba(255,255,255,0.2);
}

.vs-show-list-image {
    position: relative;
    width: 80px;
    flex-shrink: 0;
    background: #1a1a2e;
    overflow: hidden;
}

.vs-show-list-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

.vs-show-list-no-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #2e1a00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
    font-size: 1.5rem;
}

.vs-show-list-info {
    flex: 1;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.vs-show-list-date {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vs-show-list-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vs-show-list-cover {
    font-size: 11px;
    font-weight: 500;
}

.vs-show-list-cover.is-free {
    color: #4db8ff;
}

.vs-show-list-cover.is-paid {
    color: #e94560;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.vs-no-shows {
    color: rgba(255,255,255,0.4);
    font-style: italic;
    font-size: 0.9em;
}

/* ── Calendar widget ─────────────────────────────────────────────────────── */
.vs-calendar {
    width: 100%;
    background: #111;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    padding-bottom: 8px;
}

.vs-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vs-cal-prev,
.vs-cal-next {
    font-size: 1.2em;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    line-height: 1;
    padding: 2px 6px;
    transition: color 0.15s;
}

.vs-cal-prev:hover,
.vs-cal-next:hover {
    color: #fff;
}

.vs-cal-title {
    font-weight: 600;
    font-size: 0.9em;
    color: #fff;
    letter-spacing: 0.5px;
}

.vs-cal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78em;
}

.vs-cal-table th {
    text-align: center;
    padding: 6px 2px;
    font-weight: 500;
    font-size: 0.85em;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vs-cal-table td {
    text-align: center;
    padding: 4px 2px;
    color: rgba(255,255,255,0.5);
}

.vs-cal-empty {
    background: transparent;
}

.vs-cal-today {
    color: #fff;
    font-weight: 700;
}

.vs-cal-has-show {
    background: rgba(233,69,96,0.15);
    font-weight: 700;
}

.vs-cal-has-show a {
    display: block;
    text-decoration: none;
    color: #e94560;
}

.vs-cal-has-show a:hover {
    color: #ff6b84;
}

/* ── Single show page ────────────────────────────────────────────────────── */
.vs-single-show-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 20px;
}

.vs-single-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    margin-bottom: 28px;
}

.vs-single-hero img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

.vs-single-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.vs-single-hero-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin: 0 0 4px;
}

.vs-single-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.vs-single-hero-cover {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.vs-single-hero-cover.is-free  { color: #4db8ff; }
.vs-single-hero-cover.is-paid  { color: #e94560; }

.vs-single-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vs-single-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    color: rgba(255,255,255,0.7);
}

.vs-single-meta-item .dashicons {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
}

.vs-band-bio h2 {
    font-size: 1.1em;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}

.vs-band-bio p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .vs-shows-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .vs-single-hero-title {
        font-size: 20px;
    }
}
