/**
 * VfL Partner Footer – Frontend-Styles
 * Layout nach Vorbild bonn-open.com/partner
 * Kachel-Hintergrund: VfL-Blau #004898
 */

.vfl-partner-footer {
	--vfl-tile-bg: #004898;
	--vfl-tile-radius: 0px;
	--vfl-title-color: #1a1a1a;
	--vfl-line-color: rgba(0, 0, 0, 0.15);
	--vfl-grid-gap: 16px;

	/* Kacheln pro Reihe – werden vom Plugin (Einstellungen/Shortcode) gesetzt */
	--vfl-cols: 5;
	--vfl-cols-tablet: 3;
	--vfl-cols-mobile: 2;

	width: 100%;
	margin: 0 auto;
}

/* ---------- Stufen-Abschnitt ----------
   Aufbau wie bonn-open.com/partner:
   Überschrift der Stufe OBERHALB der Kacheln, daneben eine Trennlinie,
   darunter das Logo-Grid. Selektoren bewusst spezifisch, damit
   Theme-CSS das Layout nicht verändert. */

.vfl-partner-footer .vfl-partner-level {
	display: block;
	width: 100%;
	margin: 0 0 56px;
}

.vfl-partner-footer .vfl-partner-level:last-child {
	margin-bottom: 0;
}

.vfl-partner-footer .vfl-partner-level__header {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	gap: 24px;
	margin: 0 0 24px;
	float: none;
}

.vfl-partner-footer .vfl-partner-level__title {
	font-family: var(--vfl-title-font, "Varsity"), "Arial Black", sans-serif;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--vfl-title-color);
	margin: 0;
	padding: 0;
	white-space: nowrap;
	flex: 0 0 auto;
}

.vfl-partner-footer .vfl-partner-level__line {
	flex: 1 1 auto;
	height: 1px;
	background: var(--vfl-line-color);
}

/* ---------- Logo-Grid ---------- */

.vfl-partner-grid {
	display: grid;
	grid-template-columns: repeat(var(--vfl-cols, 5), 1fr);
	gap: var(--vfl-grid-gap);
}

/* ---------- Kacheln ---------- */

.vfl-partner-tile {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vfl-tile-bg);
	border-radius: var(--vfl-tile-radius);
	aspect-ratio: 7 / 3;
	padding: 8%;
	box-sizing: border-box;
	text-decoration: none;
	overflow: hidden;
}

.vfl-partner-tile__logo,
.vfl-partner-tile img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* Fallback, falls (noch) kein Logo hinterlegt ist */
.vfl-partner-tile__name {
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.vfl-partner-grid {
		grid-template-columns: repeat(var(--vfl-cols-tablet, 3), 1fr);
	}

	.vfl-partner-footer .vfl-partner-level {
		margin-bottom: 48px;
	}
}

@media (max-width: 720px) {
	.vfl-partner-grid {
		grid-template-columns: repeat(var(--vfl-cols-mobile, 2), 1fr);
	}

	.vfl-partner-footer .vfl-partner-level__title {
		font-size: 20px;
	}

	.vfl-partner-footer .vfl-partner-level__header {
		gap: 16px;
	}
}

@media (max-width: 400px) {
	.vfl-partner-footer .vfl-partner-level__title {
		white-space: normal;
	}
}
