/* ================================================================
   Shows & Tickets — black bg, gold date boxes, paginated list
   ================================================================ */

.section-shows {
	padding: 40px 0;
	background: #000;
	scroll-margin-top: 70px;
}

@media (min-width: 768px) {
	.section-shows {
		padding: 80px 0;
	}
}

.section-shows__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 640px) {
	.section-shows__inner {
		padding: 0 24px;
	}
}

@media (min-width: 1024px) {
	.section-shows__inner {
		padding: 0 32px;
	}
}

/* ── Heading ── */

.section-shows__heading {
	text-align: center;
	margin-bottom: 32px;
}

.section-shows__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 50px);
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
	margin: 0;
}

/* ── Show list ── */

.section-shows__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

/* ── Individual row ── */

.section-shows__row {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	gap: 24px;
	align-items: center;
	background: linear-gradient(to right, #111827, #000);
	border: 1px solid rgba(247, 189, 73, 0.2);
	border-radius: 8px;
	padding: 20px;
	transition: border-color 0.3s ease;
}

.section-shows__row:hover {
	border-color: #f7bd49;
}

@media (max-width: 767px) {
	.section-shows__row {
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto auto;
		gap: 12px 16px;
	}
}

/* ── Gold date box ── */

.section-shows__date-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f7bd49;
	border-radius: 8px;
	padding: 12px 16px;
	min-width: 80px;
	text-align: center;
	flex-shrink: 0;
}

.section-shows__date-month {
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	font-size: 13px;
	line-height: 1.2;
	color: #000;
	display: block;
	margin-bottom: 2px;
}

.section-shows__date-day {
	font-family: var(--font-display);
	font-size: 36px;
	line-height: 1;
	color: #000;
	display: block;
}

.section-shows__date-year {
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	font-size: 13px;
	line-height: 1.2;
	color: #000;
	display: block;
	margin-top: -2px;
}

/* ── Time + day of week ── */

.section-shows__time-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.section-shows__time {
	font-family: var(--font-display);
	font-size: 22px;
	color: #fff;
	display: block;
	line-height: 1;
}

.section-shows__dow {
	display: inline-block;
	border: 1px solid #fff;
	color: #fff;
	font-family: var(--font-body);
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 3px;
}

/* ── Venue + location info ── */

.section-shows__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

@media (max-width: 767px) {
	.section-shows__time-col {
		grid-column: 2;
		grid-row: 1;
		align-items: flex-start;
	}

	.section-shows__info {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.section-shows__ticket-col {
		grid-column: 1 / -1;
		grid-row: 3;
	}
}

.section-shows__show-title {
	font-family: var(--font-body);
	font-weight: var(--fw-medium);
	font-size: clamp(14px, 2vw, 18px);
	color: #fff;
	display: block;
}

.section-shows__venue {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-body);
	font-size: 14px;
	color: #f7bd49;
	text-decoration: none;
	transition: text-decoration 0.2s;
}

.section-shows__venue:hover {
	text-decoration: underline;
}

.section-shows__ext-icon {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

.section-shows__location {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-body);
	font-size: 13px;
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.2s;
}

.section-shows__location:hover {
	color: #fff;
}

.section-shows__pin-icon {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

/* ── Ticket button ── */

.section-shows__ticket-col {
	text-align: right;
	flex-shrink: 0;
}

.section-shows__ticket-btn {
	display: inline-block;
	background: #f7bd49;
	color: #000;
	font-family: var(--font-display);
	font-size: 18px;
	letter-spacing: 0.05em;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.section-shows__ticket-btn:hover {
	background: #e6ad3a;
	text-decoration: none;
}

@media (max-width: 767px) {
	.section-shows__ticket-btn {
		width: 100%;
		text-align: center;
	}
}

/* ── Pagination ── */

.section-shows__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 12px;
}

.section-shows__pag-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 8px;
	font-family: var(--font-display);
	font-size: 18px;
	letter-spacing: 0.05em;
	cursor: pointer;
	border: none;
	background: #f7bd49;
	color: #000;
	transition: background 0.2s ease;
	line-height: 1;
}

.section-shows__pag-btn:hover:not(:disabled) {
	background: #e6ad3a;
}

.section-shows__pag-btn:disabled {
	background: #1f2937;
	color: #4b5563;
	cursor: not-allowed;
}

.section-shows__pag-btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.section-shows__page-num {
	font-family: var(--font-display);
	font-size: 18px;
	color: #fff;
	min-width: 60px;
	text-align: center;
}
