#counter {
	background-color: #3B4AC0;
	font-size: 1.6rem;
	line-height: 2rem;
	font-weight: 500;
}

#counter .grid {
	gap: 24px;
	grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 600px) {
	#counter {
		font-size: 3.2rem;
		line-height: 3.6rem;
	}

	#counter .grid {
		gap: 48px;
	}
}

#nav-spieler .grid {
	gap: 24px;
	margin-bottom: 24px;
}

#nav-spieler .grid:last-child {
	margin-bottom: 0;
}

#nav-spieler .grid>div {
	position: relative;
	height: 300px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #666;
}

@media (min-width: 600px) {
	#nav-spieler .grid {
		margin-bottom: 24px;
	}

	#nav-spieler .grid[cols="6-6"] {
		grid-template-columns: repeat(2, 1fr);
	}

	#nav-spieler .grid>div:nth-child(1) {
		clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0% 100%);
	}

	#nav-spieler .grid>div:nth-child(2) {
		clip-path: polygon(24px 0, 100% 0, 100% 100%, 0% 100%);
	}
}

#nav-spieler .grid>div::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background-color: rgba(59, 74, 192, 0.15);
	transition: background-color .25s ease-in-out;
}

#nav-spieler .grid>div:hover::before {
	background-color: rgba(59, 74, 192, 0.75);
}

#nav-spieler .grid>div a {
	display: grid;
	align-items: center;
	height: 100%;
	position: relative;
	z-index: 3;
}

#nav-spieler .grid>div a h3 {
	margin: 0;
	text-shadow: 0 0 4px grey;
	text-transform: uppercase;
	font-size: 35px;
}

#termine {
	background-color: #b69e5a;
}

#aktuelles .inner>h3 a {
	display: inline-block;
	margin-left: 8px;
	line-height: 1;
}

#aktuelles .inner>h3 a img {
	display: inline-block;
	line-height: 1;
	height: 48px;
	vertical-align: middle;
}

.ticket-body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e9edf2;
	padding: 24px;
}

.ticket-wrap {
	width: 100%;
	max-width: 1000px;
	filter: drop-shadow(0 22px 45px rgba(10, 20, 40, 0.3));
}

.ticket-wrap svg {
	display: block;
	width: 100%;
	height: auto;
}

.headline {
	font-family: 'Roboto', Impact, 'Arial Narrow', sans-serif;
} 

.label {
	font-family: 'Oswald', 'Arial Narrow', sans-serif;
	font-weight: 600;
}

.skew9 {
	transform: skewX(-9deg);
}