/* ==========================================================
   OBC Footer – Nachbau des Footers von original-bootcamp.com

   Alle Werte am 30.07.2026 bei 1280 px Fensterbreite per
   getComputedStyle / getBoundingClientRect gemessen:

     Flaeche          Hintergrund #F7F7FC, Innenabstand oben/unten 64
     Container        1120 breit (Seitenabstand 80)
     Links            18.88px / 700 / #000 / Zeilenhoehe 24
     "Alle Städte"    #00CFD6
     Absatz Jobs      16px / 400 / rgb(129,129,157) / Zeilenhoehe 24
     Button           #00CFD6, weiss, Hoehe 56, Radius 50, Polster 0 40
     Bild             180 x 264
     Raster oben      3 Spalten a 170,66 – Abstand 24
     Raster Staedte   3 Spalten a 213,33 – Abstand 16
     Raster Reisen    2 Spalten a 216    – Abstand 16
     Reihenabstand    128 zwischen oberer und mittlerer Reihe
     Copyright        16px / 400 / rgb(129,129,157)

   Schriftart bewusst geerbt (inherit) – das Original nutzt
   GT Walsheim, das auf dem Blog nicht vorhanden ist.
   Die Werte fuer Tablet und Handy sind nicht gemessen, sondern
   von Hand gesetzt: das Original rendert dort per JavaScript nach.
   ========================================================== */

.obc-footer {
	background: #f7f7fc;
	padding: 64px 0;
	margin: 0;
	color: #000;
}

/* Aussen 1280, Seitenabstand 80 -> Inhalt exakt 1120 wie im Original */
.obc-footer__inner {
	box-sizing: border-box;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 80px;
}

/* ---------- Listen: gemeinsame Grundlage ---------- */
.obc-footer__grid {
	display: grid;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.obc-footer__grid li {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

/* Eine Linkzeile ist im Original 34 px hoch: 24 Zeilenhoehe + 2x5 Polster */
.obc-footer__grid a {
	display: inline-block;
	padding: 5px 0;
	font-family: inherit;
	font-size: 18.88px;
	font-weight: 700;
	line-height: 24px;
	color: #000;
	text-decoration: none;
	border: 0;
	box-shadow: none;
}

.obc-footer__grid a:hover,
.obc-footer__grid a:focus-visible {
	color: #00cfd6;
}

/* "Alle Städte" ist im Original hervorgehoben */
.obc-footer__grid a.is-highlight {
	color: #00cfd6;
}

.obc-footer__grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.obc-footer__grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

/* Staedte und Reisen stehen enger als die Hauptlinks */
.obc-footer__grid--tight {
	gap: 16px;
}

/* Rechtliches: eine zentrierte Zeile */
.obc-footer__grid--row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

/* ---------- Obere Reihe ---------- */
/* Bild 180 + 48 + Text 260 = 488, dann 72 Abstand, dann 560 Linkraster */
.obc-footer__top {
	display: grid;
	grid-template-columns: 488px 1fr;
	gap: 72px;
	align-items: start;
}

.obc-footer__jobs {
	display: grid;
	grid-template-columns: 180px 260px;
	gap: 48px;
	align-items: start;
}

.obc-footer__jobs-bild {
	display: block;
	width: 180px;
	height: 264px;
	object-fit: cover;
	max-width: 100%;
}

/* Titel sitzt im Original 25 px unter der Bildkante, der Button 24 ueber der Unterkante */
.obc-footer__jobs-text {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 264px;
	padding: 25px 0 24px;
}

.obc-footer__jobs-titel {
	font-family: inherit;
	font-size: 18.88px;
	font-weight: 700;
	line-height: 24px;
	color: #000;
	text-decoration: none;
}

.obc-footer__jobs-titel:hover {
	color: #00cfd6;
}

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

.obc-footer__button {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	width: 260px;
	height: 56px;
	padding: 0 40px;
	background: #00cfd6;
	color: #fff;
	font-family: inherit;
	font-size: 18.88px;
	font-weight: 700;
	line-height: 56px;
	text-decoration: none;
	border: 0;
	border-radius: 50px;
}

.obc-footer__button:hover,
.obc-footer__button:focus-visible {
	background: #00b3b9;
	color: #fff;
}

/* ---------- Mittlere Reihe ---------- */
.obc-footer__mitte {
	display: grid;
	grid-template-columns: 672fr 448fr;
	gap: 0;
	margin-top: 128px;
	align-items: start;
}

/* ---------- Untere Zeile ---------- */
.obc-footer__legal {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	margin-top: 152px;
}

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

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

	.obc-footer__inner {
		padding: 0 40px;
	}

	.obc-footer__top {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.obc-footer__mitte {
		grid-template-columns: 1fr;
		gap: 48px;
		margin-top: 64px;
	}

	.obc-footer__legal {
		margin-top: 32px;
		min-height: auto;
		padding: 24px 0;
	}
}

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

	.obc-footer {
		padding: 48px 0;
	}

	.obc-footer__inner {
		padding: 0 20px;
	}

	.obc-footer__jobs {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.obc-footer__jobs-text {
		min-height: 0;
	}

	.obc-footer__button {
		margin-top: 24px;
		width: 100%;
		min-width: 0;
	}

	.obc-footer__grid--3,
	.obc-footer__grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.obc-footer__grid a {
		font-size: 17px;
	}

	.obc-footer__grid--row {
		gap: 16px;
	}

	.obc-footer__copyright {
		text-align: center;
	}
}
