/* ==========================================================
   OBC Featured Artikel
   Aufbau nach dem Vorbild von blog.urbansportsclub.com:
   heller Block, Bild links, rechts Meta / Titel / Auszug /
   Link, Pfeil-Knopf unten rechts.

   Farben aus der OBC-CI (aus Header und Footer uebernommen):
     Blockflaeche  #F7F7FC   (wie der Footer)
     Tuerkis       #00CFD6   (Kategorie, Pfeil, Hover)
     Titel         #333
     Fliesstext    rgb(129,129,157)
   Schriftart wird vom Theme geerbt.
   ========================================================== */

.obc-featured {
	max-width: 1120px;
	margin: 0 auto 48px;
	padding: 0 20px;
	box-sizing: border-box;
}

.obc-featured__karte {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 40px;
	align-items: stretch;
	padding: 32px;
	background: #f7f7fc;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	box-shadow: none;
	transition: box-shadow .2s ease, transform .2s ease;
}

.obc-featured__karte:hover,
.obc-featured__karte:focus-visible {
	box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
	transform: translateY(-2px);
}

/* ---------- Bild ---------- */
.obc-featured__bildbox {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 1 / 1;
	background: #e9e9f2;
}

.obc-featured__bild {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Textspalte ---------- */
.obc-featured__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 4px 0;
}

.obc-featured__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgb(129, 129, 157);
}

.obc-featured__trenner {
	color: rgb(129, 129, 157);
}

.obc-featured__kategorie {
	margin-left: 8px;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #00cfd6;
}

.obc-featured__titel {
	margin: 0 0 16px;
	font-family: inherit;
	font-size: 34px;
	font-weight: 700;
	line-height: 42px;
	color: #333;
}

.obc-featured__karte:hover .obc-featured__titel {
	color: #00cfd6;
}

.obc-featured__auszug {
	margin: 0 0 24px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgb(129, 129, 157);
}

/* ---------- Fusszeile der Karte ---------- */
.obc-featured__fuss {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin-top: auto;
}

.obc-featured__mehr {
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #333;
}

.obc-featured__karte:hover .obc-featured__mehr {
	color: #00cfd6;
}

.obc-featured__pfeil {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #00cfd6;
	color: #fff;
}

.obc-featured__karte:hover .obc-featured__pfeil {
	background: #00b3b9;
}

/* ---------- Tablet ---------- */
@media (max-width: 1023px) {

	.obc-featured__karte {
		grid-template-columns: 240px 1fr;
		gap: 28px;
		padding: 24px;
	}

	.obc-featured__titel {
		font-size: 28px;
		line-height: 36px;
	}
}

/* ---------- Handy ---------- */
@media (max-width: 639px) {

	.obc-featured {
		margin-bottom: 32px;
	}

	.obc-featured__karte {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 16px;
	}

	.obc-featured__bildbox {
		aspect-ratio: 16 / 10;
	}

	.obc-featured__titel {
		font-size: 24px;
		line-height: 31px;
		margin-bottom: 12px;
	}

	.obc-featured__auszug {
		margin-bottom: 20px;
	}

	.obc-featured__mehr {
		font-size: 13px;
	}
}
