.vicpaz-show-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.vicpaz-show-card {
	background: #1C1C1C;
	border: 1px solid #2A2A2A;
	border-radius: 6px;
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.vicpaz-show-card:hover {
	border-color: #C8933A;
	transform: translateY(-3px);
	background: #222;
}
.vicpaz-card-day {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 52px;
	line-height: 1;
	color: #C8933A;
}
.vicpaz-card-month {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #9A9690;
	margin: 2px 0 18px;
}
.vicpaz-card-venue {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 6px;
	flex: 1;
	color: #F5F0E8;
}
.vicpaz-card-meta {
	font-size: 13px;
	color: #9A9690;
	margin-bottom: 20px;
}
.vicpaz-card-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.vicpaz-shows-table { display: flex; flex-direction: column; }
.vicpaz-show-row {
	display: grid;
	grid-template-columns: 90px 1fr 160px 140px;
	align-items: center;
	gap: 28px;
	padding: 24px 0;
	border-bottom: 1px solid #2A2A2A;
	transition: background .2s ease;
	border-radius: 4px;
}
.vicpaz-show-row:first-child { border-top: 1px solid #2A2A2A; }
.vicpaz-show-row:hover { background: rgba(200,147,58,.04); }
.vicpaz-row-date { text-align: center; }
.vicpaz-day-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 44px;
	line-height: 1;
	color: #C8933A;
}
.vicpaz-day-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #9A9690;
	margin-top: 2px;
}
.vicpaz-venue-name {
	font-size: 19px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 8px;
	color: #F5F0E8;
}
.vicpaz-role-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	background: rgba(200,147,58,.12);
	color: #C8933A;
	padding: 4px 10px;
	border-radius: 2px;
}
.vicpaz-row-time {
	font-size: 14px;
	font-weight: 600;
	color: #F5F0E8;
	margin-bottom: 5px;
}
.vicpaz-row-addr { font-size: 13px; color: #9A9690; }
.vicpaz-row-cta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.vicpaz-price {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 15px;
	letter-spacing: .04em;
	color: #C8933A;
	white-space: nowrap;
}

.vicpaz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .2s ease;
	border: 1px solid transparent;
	text-decoration: none;
	line-height: 1;
}
.vicpaz-btn-gold {
	background: #C8933A;
	color: #0D0D0D;
	border-color: #C8933A;
	padding: 14px 24px;
}
.vicpaz-btn-gold:hover { background: #E8B05A; border-color: #E8B05A; color: #0D0D0D; }
.vicpaz-btn-ghost {
	background: transparent;
	color: #F5F0E8;
	border-color: #C8933A;
	padding: 11px 22px;
}
.vicpaz-btn-ghost:hover { background: #C8933A; color: #0D0D0D; }

.vicpaz-empty {
	text-align: center;
	padding: 60px 24px;
	color: #9A9690;
	font-size: 16px;
	line-height: 1.7;
}

@media (max-width: 1024px) {
	.vicpaz-show-cards { grid-template-columns: 1fr 1fr; }
	.vicpaz-show-row { grid-template-columns: 90px 1fr auto; }
	.vicpaz-row-details { display: none; }
}
@media (max-width: 768px) {
	.vicpaz-show-cards { grid-template-columns: 1fr; }
	.vicpaz-show-row { grid-template-columns: 70px 1fr auto; gap: 16px; }
}