.dice7-gigs__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.dice7-gig {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1rem 1.25rem;
	border-radius: 12px;
	background: var(--wp--preset--color--base, #fff);
	color: var(--wp--preset--color--contrast, #111);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dice7-gig a {
	color: inherit;
}

.dice7-gigs__subscribe a {
	color: inherit;
}

.dice7-gig:hover {
	transform: translateY( -2px );
	box-shadow: 0 6px 18px rgba( 0, 0, 0, 0.12 );
}

/* Kalenderblatt: farbige Monatsleiste, große Tageszahl, Jahr */
.dice7-gig__date {
	display: flex;
	flex-direction: column;
	min-width: 4.6rem;
	border-radius: 10px;
	overflow: hidden;
	background: var(--wp--preset--color--base, #fff);
	color: var(--wp--preset--color--contrast, #111);
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	text-align: center;
	line-height: 1.1;
	flex-shrink: 0;
}

.dice7-gig__month {
	display: block;
	background: var(--wp--preset--color--accent-1, #00ffd4);
	color: var(--wp--preset--color--contrast, #111);
	text-transform: uppercase;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	padding: 0.28rem 0;
}

.dice7-gig__day {
	display: block;
	font-size: 1.9rem;
	font-weight: 800;
	padding-top: 0.15rem;
}

.dice7-gig__year {
	display: block;
	font-size: 0.7rem;
	opacity: 0.6;
	padding-bottom: 0.35rem;
}

.dice7-gig__body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	flex-grow: 1;
	min-width: 0;
}

.dice7-gig__title {
	font-weight: 700;
	font-size: 1.1rem;
}

.dice7-gig__venue {
	opacity: 0.8;
}

.dice7-gig__time {
	font-size: 0.9rem;
	opacity: 0.7;
}

.dice7-gig__ticket {
	flex-shrink: 0;
	padding: 0.5rem 1rem;
	border: 2px solid var(--wp--preset--color--contrast, #111);
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	white-space: nowrap;
}

.dice7-gig__ticket:hover {
	background: var(--wp--preset--color--contrast, #111);
	color: var(--wp--preset--color--base, #fff);
}

.dice7-gigs__subscribe {
	margin-top: 1rem;
	font-size: 0.95rem;
}

.dice7-gigs__empty {
	padding: 1.5rem;
	border: 1px dashed currentColor;
	border-radius: 8px;
	opacity: 0.8;
}

@media ( max-width: 600px ) {
	.dice7-gig {
		flex-wrap: wrap;
		gap: 0.75rem;
	}

	/* Textblock bleibt immer neben dem Kalenderblatt (lange Titel brechen
	   innerhalb des Blocks um) – nur der Ticket-Button wandert darunter. */
	.dice7-gig__body {
		flex: 1 1 0;
	}

	.dice7-gig__ticket {
		width: 100%;
		text-align: center;
	}
}
