/* =========================================================
   TOP HEADER BAR
   ========================================================= */
#top-header {
	width: 100%;
	height: 40px;
	background: #E20714;
	color: #fff;
}

#top-header-inner {
	max-width: 1250px;
	height: 40px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

#top-header-left {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
	overflow: hidden;
}

#top-header-title {
	font-family: 'Anton', sans-serif;
	font-size: 14px;
	letter-spacing: 0.3px;
	white-space: nowrap;
	flex: 0 0 auto;
}

#top-header-links {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	min-width: 0;
}

#top-header-links li {
	list-style: none;
	padding: 0;
	white-space: nowrap;
}

#top-header-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-family: 'Anton', sans-serif;
	font-size: 12px;
	letter-spacing: 0.3px;
	text-decoration: none;
}

#top-header-links a:hover {
	text-decoration: underline;
}

#top-header-links img {
	width: 14px;
	height: 14px;
	object-fit: contain;
}

#top-header-social {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

#top-header-social img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

/* =========================================================
   TABLET 768-1024
   ========================================================= */
@media (max-width: 1024px) {
	#top-header-left {
		gap: 16px;
	}
	#top-header-links {
		gap: 14px;
	}
}

/* =========================================================
   MOBILE <768
   ========================================================= */
@media (max-width: 767px) {
	/* height bleibt bei 40px (Basis-Regel) statt auto: #header ist absolut
	   positioniert mit top:40px relativ dazu -- bei auto-Höhe war die
	   tatsächliche Höhe (~37.5px) kleiner als die 40px, was eine sichtbare
	   weiße Lücke zwischen Bar und Header erzeugt hat. flex-wrap bleibt als
	   Sicherheitsnetz für sehr schmale Screens (Inhalt läuft dann über statt
	   die Bar zu sprengen). */
	#top-header-inner {
		flex-wrap: wrap;
		padding: 0 16px;
		gap: 8px;
	}
	#top-header-title {
		display: none;
	}
	#top-header-links {
		flex-wrap: wrap;
		gap: 10px;
	}
	#top-header-links a span {
		display: none;
	}
	#top-header-links img {
		width: 18px;
		height: 18px;
	}
}
