/* ==========================================================
   OBC Kategorie-Navigation
   Alle Werte am 30.07.2026 auf original-bootcamp.com/blog
   per getComputedStyle gemessen (Desktop 1280 px, Mobil 375 px).
   Schriftart bewusst geerbt (inherit), damit sie zum Blog-Theme passt.
   ========================================================== */

.obc-katnav {
	max-width: 960px;
	margin: 80px auto 0;
	padding: 0 20px;
	text-align: center;
}

/* ---------- Ueberschrift ---------- */
.obc-katnav__heading {
	margin: 0 0 32px;
	font-family: inherit;
	font-size: 48px;
	font-weight: 700;
	line-height: 48px;
	color: #333;
	text-align: center;
	text-transform: none;
	letter-spacing: normal;
}

/* ---------- Einleitung ---------- */
.obc-katnav__intro {
	margin: 0 0 48px;
	font-family: inherit;
	font-size: 24px;
	font-weight: 400;
	line-height: 36px;
	color: rgb(129, 129, 157);
	text-align: center;
}

/* ---------- Icon-Reihe ---------- */
.obc-katnav__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 8px 32px;          /* Zeilenabstand 8, Spaltenabstand 32 – gemessen */
	margin: 0 0 48px;
	padding: 0;
	list-style: none;
}

.obc-katnav__row li::before,
.obc-katnav__row li::marker {
	content: none;
}

.obc-katnav__item {
	margin: 0;
	padding: 0;
}

/* Zelle waechst mit dem Label – im Original ist "Erfolgsgeschichten"
   einzeilig und macht die Zelle 149 px breit statt 96 px. */
.obc-katnav__link {
	display: block;
	min-width: 96px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	border: 0;
	box-shadow: none;
}

.obc-katnav__icon {
	display: block;
	width: 96px;
	height: 96px;
	margin: 0 auto;
	object-fit: contain;
}

.obc-katnav__label {
	display: block;
	margin-top: 8px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgb(129, 129, 157);
}

/* ---------- Hover und aktuelle Kategorie ---------- */
.obc-katnav__link:hover .obc-katnav__label,
.obc-katnav__link:focus-visible .obc-katnav__label {
	color: #00cfd6;
}

.obc-katnav__item--active .obc-katnav__label {
	color: #00cfd6;
	font-weight: 700;
}

/* ---------- Mobil (gemessen bei 375 px) ---------- */
@media (max-width: 767px) {

	.obc-katnav {
		margin-top: 80px;
	}

	.obc-katnav__heading {
		font-size: 24px;
		line-height: 24px;
		margin-bottom: 32px;
	}

	.obc-katnav__intro {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 48px;
	}

	.obc-katnav__label {
		font-size: 13px;
		line-height: 20px;
	}
}
