/* Tegos Off-Canvas Mobile-Menü (Drawer von rechts) */
.tegos-burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	cursor: pointer;
}
.tegos-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #FFFFFF;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
body.tegos-oc-lock .tegos-burger { opacity: 0; pointer-events: none; }

.tegos-oc {
	pointer-events: none;
	position: fixed;
	inset: 0;
	overflow: hidden; /* clippt den nach rechts geschobenen Drawer (sonst horizontaler Overflow) */
	z-index: 999998;
}
.tegos-oc__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 999998;
}
.tegos-oc__panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 78%;
	max-width: 380px;
	background: #2E2E2E;
	transform: translateX(100%);
	transition: transform 0.35s ease;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	padding: 24px;
	overflow-y: auto;
}
.tegos-oc.is-open { pointer-events: auto; }
.tegos-oc.is-open .tegos-oc__overlay { opacity: 1; }
.tegos-oc.is-open .tegos-oc__panel { transform: translateX(0); }
body.tegos-oc-lock { overflow: hidden; }

.tegos-oc__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}
.tegos-oc__logo {
	height: 32px !important;
	width: auto !important;
	max-width: 150px !important;
}
.tegos-oc__close {
	flex: 0 0 auto;
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	color: #FFFFFF;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
}
.tegos-oc__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tegos-oc__nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.12); }
.tegos-oc__nav a {
	display: block;
	padding: 14px 0;
	color: #FFFFFF;
	font-family: 'Geologica', sans-serif;
	font-weight: 100;
	font-size: 18px;
	text-decoration: none;
}
.tegos-oc__nav .sub-menu a {
	padding: 10px 0 10px 18px;
	font-size: 16px;
	font-weight: 300;
	color: rgba(255,255,255,0.85);
}
.tegos-oc__cta {
	margin-top: 28px;
	display: inline-block;
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	font-family: 'Geologica', sans-serif;
	font-weight: 100;
	font-size: 16px;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	background: transparent !important;
}

/* Sichtbarkeit: Burger nur ≤1024px */
@media (min-width: 1025px) {
	.tegos-oc-wrap { display: none !important; }
}
