/* Mini listy do sidebara: najbliższe wydarzenia (jak mockup — panel + karty) */
.standup-upcoming {
	--su-black: #111;
	/* Jak w .standup-app .buy — ten sam żółty i cień CTA */
	--su-yellow: #f5b700;
	--su-yellow-hover: #e6c200;
	--su-yellow-cta-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box;
	background: #ebebf0;
	padding: 14px 12px 16px;
	border-radius: 16px;
}

/* Nagłówek jak w głosowaniu (`.sup-ui-head` + `.sup-voting__accent` + spotlight) */
.standup-widget-head {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.55rem;
	margin: 0 0 12px 0;
	padding: 0 0.15rem;
}

.standup-widget-head__row {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
}

.standup-widget-head__row::before,
.standup-widget-head__row::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.11), transparent);
	min-width: 0.75rem;
}

.standup-widget-head__title {
	margin: 0;
	flex: 0 0 auto;
	max-width: 92%;
	text-align: center;
	font-weight: 800;
	font-size: 1.02rem;
	letter-spacing: 0.02em;
	text-transform: lowercase;
	line-height: 1.35;
	color: #111;
	position: relative;
	z-index: 1;
	padding: 0 0.35rem;
}

/* Tylko miękka poświata — bez wyraźnej „pigówki” / obrysu */
.standup-widget-head__title::before,
.standup-empty-head__text::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(22rem, 130%);
	height: 3.4em;
	border: none;
	outline: none;
	box-shadow: none;
	border-radius: 50%;
	background: radial-gradient(
		ellipse 72% 58% at 50% 50%,
		rgba(245, 183, 0, 0.48) 0%,
		rgba(245, 183, 0, 0.2) 44%,
		rgba(245, 183, 0, 0) 74%
	);
	filter: blur(16px);
	z-index: -1;
	pointer-events: none;
}

.standup-widget-head__accent {
	display: block;
	width: min(220px, 55%);
	height: 2px;
	margin: 0 auto;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, rgba(245, 208, 0, 0.85), transparent);
	opacity: 0.92;
}

.standup-upcoming__head {
	margin: 0 0 12px 0;
}

.standup-upcoming .standup-upcoming__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.standup-upcoming .standup-upcoming__item {
	margin: 0;
	padding: 0;
	list-style: none;
	background: transparent;
	border: none;
}

/* Karta: 1) pogrubione „Miasto • godzina”  2) pigułka „Kup bilet” (jak mockup) */
.standup-upcoming .standup-upcoming__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	padding: 14px 16px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
	border: none;
}

.standup-upcoming .standup-upcoming__primary {
	margin: 0;
	padding: 0;
	font-weight: 800;
	font-size: 14px;
	line-height: 1.3;
	color: #111;
	text-align: left;
}

.standup-upcoming .standup-upcoming__ticket {
	display: inline-flex;
	margin: 0;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 20px;
	border-radius: 999px;
	background: var(--su-yellow) !important;
	color: #4a3814 !important;
	font-weight: 800;
	font-size: 12px;
	text-decoration: none !important;
	box-shadow: var(--su-yellow-cta-shadow);
	border: none;
	transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.standup-upcoming .standup-upcoming__ticket:hover {
	background: var(--su-yellow-hover) !important;
	color: #352a10 !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (hover: hover) and (pointer: fine) {
	.standup-upcoming .standup-upcoming__ticket:hover {
		transform: scale(1.02);
	}

	.standup-upcoming .standup-upcoming__ticket:active {
		transform: scale(0.99);
	}
}

.standup-upcoming .standup-upcoming__more {
	display: inline-block;
	margin-top: 12px;
	font-weight: 600;
	font-size: 13px;
	color: #1d4ed8;
	text-decoration: underline;
}

/* „Dziś” — ultra-krótko: miasto + godzina + bilet */
.standup-today {
	--su-black: #111;
	--su-yellow: #f5b700;
	--su-yellow-hover: #e6c200;
	--su-yellow-cta-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.standup-today__head {
	margin: 0 0 12px 0;
}

.standup-today__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.standup-today__item {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	padding: 10px 12px 12px;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.standup-today__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	font-weight: 800;
	color: #111;
}

.standup-today__dot {
	opacity: 0.45;
}

.standup-today__time {
	font-variant-numeric: tabular-nums;
	color: rgba(17, 17, 17, 0.78);
}

.standup-today__ticket {
	display: inline-flex;
	margin-top: 10px;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 10px;
	background: var(--su-yellow);
	color: #111;
	font-weight: 800;
	font-size: 12px;
	text-decoration: none;
	box-shadow: var(--su-yellow-cta-shadow);
	transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.standup-today__ticket:hover {
	background: var(--su-yellow-hover);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (hover: hover) and (pointer: fine) {
	.standup-today__ticket:hover {
		transform: scale(1.02);
	}

	.standup-today__ticket:active {
		transform: scale(0.99);
	}
}

.standup-today__more {
	display: inline-block;
	margin-top: 10px;
	font-weight: 700;
	font-size: 13px;
	color: #111;
	text-decoration: underline;
}

.standup-today__empty {
	margin: 0;
	padding: 0 0.15rem 0.35rem;
}

.standup-empty-head {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.55rem;
}

.standup-empty-head__row {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
}

.standup-empty-head__row::before,
.standup-empty-head__row::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.11), transparent);
	min-width: 0.75rem;
}

.standup-empty-head__text {
	margin: 0;
	flex: 0 0 auto;
	max-width: 92%;
	text-align: center;
	font-weight: 800;
	font-size: 1.02rem;
	letter-spacing: 0.02em;
	line-height: 1.35;
	color: #111;
	position: relative;
	z-index: 1;
	padding: 0 0.35rem;
}

.standup-empty-head__accent {
	display: block;
	width: min(220px, 55%);
	height: 2px;
	margin: 0 auto;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, rgba(245, 208, 0, 0.85), transparent);
	opacity: 0.92;
}

