/* =============================================
   Treffpunkt Sizilien – Header Logo (responsive)
   ============================================= */

/* --- Logo-Container ---------------------------------------- */
.ts-header__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.ts-header__logo a.custom-logo-link {
	display: flex;
	align-items: center;
	line-height: 0;        /* kein Leerraum unter Inline-Bild */
	border-radius: 4px;
	outline-offset: 3px;   /* sichtbarer Fokus-Ring für Accessibility */
}

/* --- Logo-Bild --------------------------------------------- */
.ts-header__logo .custom-logo {
	display: block;
	width: auto;
	height: auto;
	max-height: 40px;      /* Desktop: ca. 200 × 40 px bei AR 5:1 */
	max-width: 200px;
	object-fit: contain;
}

/* --- Tablet ≤ 900 px --------------------------------------- */
@media (max-width: 900px) {
	.ts-header__logo {
		margin-right: auto;    /* Burger ans rechte Ende schieben */
	}
	.ts-header__logo .custom-logo {
		max-height: 34px;
		max-width: 170px;
	}
}

/* --- Smartphone ≤ 480 px ----------------------------------- */
@media (max-width: 480px) {
	.ts-header__logo .custom-logo {
		max-height: 28px;
		max-width: 130px;
	}
}
