/* =====================================================================
   Linke gegen Leerstand - campaign design system
   Reproduces linke-gegen-leerstand.de on a GeneratePress base.
   Brand: Die Linke red + teal accent; Heebo / Work Sans / Inter.
   ===================================================================== */

:root {
	--lgl-red: #e4032e;
	--lgl-red-bright: #ff0000;
	--lgl-red-dark: #b30024;
	--lgl-teal: #004b5b;
	--lgl-purple: #6a2c70;
	--lgl-ink: #1f1f1f;
	--lgl-ink-soft: #4a4a4a;
	--lgl-paper: #ffffff;
	--lgl-paper-soft: #f6f6f2;
	--lgl-paper-tint: #fafae1;
	--lgl-line: #e7e7df;

	--lgl-font-display: "Heebo", system-ui, sans-serif;
	--lgl-font-head: "Work Sans", system-ui, sans-serif;
	--lgl-font-body: "Inter", system-ui, -apple-system, sans-serif;

	--lgl-wrap: 1120px;
	--lgl-wrap-narrow: 760px;
	--lgl-gap: clamp(1.25rem, 3vw, 2.5rem);
	--lgl-section-y: clamp(3.5rem, 8vw, 7rem);
	--lgl-radius: 14px;
	--lgl-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.45);
}

/* ---- Base ---- */
.lgl-front,
.lgl-fullbleed {
	font-family: var(--lgl-font-body);
	color: var(--lgl-ink);
	background: var(--lgl-paper);
}

.lgl-front .site-content,
.lgl-fullbleed .site-content {
	display: block;
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.lgl-front .content-area,
.lgl-fullbleed .content-area,
.lgl-front .lgl-main,
.lgl-fullbleed .lgl-main {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
	float: none;
}

.lgl-main p { line-height: 1.7; }
.lgl-main a { color: var(--lgl-red); }

.lgl-wrap {
	width: 100%;
	max-width: var(--lgl-wrap);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.lgl-wrap--narrow { max-width: var(--lgl-wrap-narrow); }

.lgl-section { padding-block: var(--lgl-section-y); }

.lgl-eyebrow {
	font-family: var(--lgl-font-head);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--lgl-red);
	margin: 0 0 0.75rem;
}
.lgl-eyebrow--invert { color: rgba(255, 255, 255, 0.85); }

.lgl-section__title {
	font-family: var(--lgl-font-display);
	font-weight: 900;
	line-height: 1.05;
	font-size: clamp(1.9rem, 4.5vw, 3rem);
	letter-spacing: -0.01em;
	margin: 0 0 1.5rem;
	color: var(--lgl-ink);
}
.lgl-section__title--invert { color: var(--lgl-paper); }
.lgl-section__lead {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--lgl-ink-soft);
	max-width: 60ch;
	margin: 0 0 2.5rem;
}

/* ---- Buttons ---- */
.lgl-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--lgl-font-head);
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1;
	padding: 0.95rem 1.8rem;
	border-radius: 999px;
	text-decoration: none;
	transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
	border: 2px solid transparent;
}
.lgl-btn.lgl-btn--primary { background: var(--lgl-red); color: #fff; }
.lgl-btn.lgl-btn--primary:hover { background: var(--lgl-red-dark); transform: translateY(-2px); color: #fff; }
.lgl-btn.lgl-btn--ghost { background: transparent; color: var(--lgl-red); border-color: var(--lgl-red); }
.lgl-btn.lgl-btn--ghost:hover { background: var(--lgl-red); color: #fff; }
.lgl-btn:focus-visible { outline: 3px solid var(--lgl-teal); outline-offset: 2px; }

.lgl-cta { margin-top: 2rem; }
.lgl-link { color: var(--lgl-teal); font-weight: 600; text-decoration: none; border-bottom: 2px solid currentColor; }
.lgl-link:hover { color: var(--lgl-red); }

/* ---- Hero ---- */
.lgl-hero {
	position: relative;
	min-height: clamp(420px, 75vh, 720px);
	display: flex;
	align-items: center;
	background-image: var(--lgl-hero-image);
	background-size: cover;
	background-position: center;
	color: #fff;
	overflow: hidden;
}
.lgl-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(228, 3, 46, 0.82) 0%, rgba(150, 20, 80, 0.78) 55%, rgba(74, 30, 110, 0.74) 100%);
	mix-blend-mode: multiply;
}
.lgl-hero__inner { position: relative; z-index: 2; padding-block: 4rem; }
.lgl-hero__title {
	font-family: var(--lgl-font-display);
	font-weight: 900;
	font-size: clamp(2.6rem, 7vw, 5rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 16ch;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.lgl-scroll-arrow {
	position: absolute;
	left: 50%;
	bottom: 1.75rem;
	transform: translateX(-50%);
	z-index: 2;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 1.5rem;
	text-decoration: none;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	animation: lgl-bounce 1.8s infinite;
}
.lgl-scroll-arrow:hover { color: #fff; background: rgba(255, 255, 255, 0.15); }
@keyframes lgl-bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .lgl-scroll-arrow { animation: none; } }

/* ---- Intro ---- */
.lgl-intro { background: var(--lgl-paper); text-align: center; }
.lgl-intro__lead { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--lgl-ink); line-height: 1.65; }
.lgl-intro__lead p { margin: 0 0 1.1rem; }
.lgl-callout {
	margin: 2.5rem auto;
	max-width: 640px;
	background: var(--lgl-red);
	color: #fff;
	border-radius: var(--lgl-radius);
	padding: 1.5rem 1.75rem;
	font-family: var(--lgl-font-head);
	font-size: 1.15rem;
	box-shadow: var(--lgl-shadow);
}
.lgl-callout p { margin: 0; }
.lgl-intro__note { color: var(--lgl-ink-soft); max-width: 52ch; margin-inline: auto; }

/* Quick-nav cards */
.lgl-quicknav {
	list-style: none;
	margin: 3.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, 1fr);
}
.lgl-quicknav__item a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.25rem;
	height: 100%;
	min-height: 150px;
	padding: 1.4rem;
	text-align: left;
	text-decoration: none;
	color: #fff;
	background: var(--lgl-teal);
	border-radius: var(--lgl-radius);
	font-family: var(--lgl-font-head);
	font-weight: 600;
	font-size: 0.98rem;
	line-height: 1.3;
	transition: transform 0.15s ease, background 0.15s ease;
}
.lgl-quicknav__item a:hover { transform: translateY(-4px); background: #033845; }
.lgl-quicknav__arrow { font-size: 1.4rem; }

/* ---- Stat blocks ---- */
.lgl-stat--muc { background: var(--lgl-paper-soft); }
.lgl-stat--bayern { background: var(--lgl-paper); }
.lgl-stat__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: var(--lgl-gap);
	align-items: start;
}
.lgl-stat__grid--reverse .lgl-stat__figures { order: 2; }
.lgl-stat__figures { display: grid; gap: 1.5rem; }
.lgl-stat__fig {
	background: var(--lgl-red);
	color: #fff;
	border-radius: var(--lgl-radius);
	padding: 1.75rem;
	box-shadow: var(--lgl-shadow);
}
.lgl-stat__num {
	display: block;
	font-family: var(--lgl-font-display);
	font-weight: 900;
	font-size: clamp(2.6rem, 6vw, 4rem);
	line-height: 1;
	letter-spacing: -0.02em;
}
.lgl-stat__label { display: block; margin-top: 0.5rem; font-family: var(--lgl-font-head); font-weight: 600; opacity: 0.95; }
.lgl-stat__body h2 { font-family: var(--lgl-font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.15; margin: 0 0 1rem; }
.lgl-stat__body p { color: var(--lgl-ink-soft); }

/* ---- Card grids (causes & measures) ---- */
.lgl-cards--causes { background: var(--lgl-paper); }
.lgl-cards--measures { background: var(--lgl-teal); }
.lgl-grid { display: grid; gap: var(--lgl-gap); }
.lgl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lgl-grid--2 { grid-template-columns: repeat(2, 1fr); }

.lgl-card {
	background: var(--lgl-paper);
	border: 1px solid var(--lgl-line);
	border-radius: var(--lgl-radius);
	padding: 1.75rem;
	box-shadow: var(--lgl-shadow);
}
.lgl-card__icon { font-size: 2.25rem; margin-bottom: 0.75rem; color: var(--lgl-red); }
.lgl-card__icon .lgl-emoji { font-size: 2.25rem; }
.lgl-card__title { font-family: var(--lgl-font-head); font-weight: 700; font-size: 1.25rem; line-height: 1.2; margin: 0 0 0.75rem; color: var(--lgl-ink); }
.lgl-card__text { color: var(--lgl-ink-soft); font-size: 0.98rem; }
.lgl-card__text p { margin: 0 0 0.75rem; }

/* Measures: numbered, two columns, on teal */
.lgl-card--measure { display: flex; gap: 1.25rem; align-items: flex-start; }
.lgl-card__num {
	flex: 0 0 auto;
	width: 48px; height: 48px;
	display: grid; place-items: center;
	background: var(--lgl-red); color: #fff;
	font-family: var(--lgl-font-display); font-weight: 900; font-size: 1.4rem;
	border-radius: 999px;
}
.lgl-card__icon-inline { margin-right: 0.25rem; }

/* ---- Aktion ---- */
.lgl-aktion { background: var(--lgl-paper-tint); text-align: center; }
.lgl-aktion__text { font-size: 1.1rem; color: var(--lgl-ink-soft); line-height: 1.7; max-width: 62ch; margin-inline: auto; }

/* ---- Examples ---- */
.lgl-examples { background: var(--lgl-paper-soft); }
.lgl-citybar { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: 2.5rem; }
.lgl-citybar__label { font-family: var(--lgl-font-head); font-weight: 600; color: var(--lgl-ink-soft); }
.lgl-citybar ul { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }

/* ---- Vacancy cards ---- */
.lgl-examples__preview { margin-bottom: 1rem; }
.lgl-vacancy-list { display: grid; gap: var(--lgl-gap); grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
.lgl-vacancy {
	background: var(--lgl-paper);
	border: 1px solid var(--lgl-line);
	border-radius: var(--lgl-radius);
	overflow: hidden;
	box-shadow: var(--lgl-shadow);
	display: flex;
	flex-direction: column;
}
.lgl-vacancy__media img { width: 100%; height: 220px; object-fit: cover; display: block; }
.lgl-vacancy__body { padding: 1.5rem; }
.lgl-vacancy__title { font-family: var(--lgl-font-head); font-weight: 700; font-size: 1.4rem; margin: 0 0 1rem; color: var(--lgl-red); }
.lgl-vacancy__meta { display: grid; gap: 0.4rem; margin: 0 0 1rem; }
.lgl-vacancy__meta > div { display: flex; gap: 0.5rem; }
.lgl-vacancy__meta dt { font-family: var(--lgl-font-head); font-weight: 700; min-width: 110px; color: var(--lgl-ink); margin: 0; }
.lgl-vacancy__meta dd { margin: 0; color: var(--lgl-ink-soft); }
.lgl-vacancy__story h4, .lgl-vacancy__press h4 { font-family: var(--lgl-font-head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--lgl-teal); margin: 1rem 0 0.4rem; }
.lgl-vacancy__story { color: var(--lgl-ink-soft); font-size: 0.96rem; }
.lgl-vacancy__press ul { list-style: none; margin: 0; padding: 0; }
.lgl-vacancy__press li { margin-bottom: 0.25rem; }

/* ---- Examples pages ---- */
.lgl-examples-page { background: var(--lgl-paper); }
.lgl-examples-page__head { margin-bottom: 1.5rem; }
.lgl-examples-page__intro { max-width: 62ch; color: var(--lgl-ink-soft); margin-bottom: 1.5rem; }
.lgl-citytabs ul { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0 0 2.5rem; padding: 0; border-bottom: 2px solid var(--lgl-line); }
.lgl-citytab { display: inline-block; padding: 0.7rem 1.2rem; font-family: var(--lgl-font-head); font-weight: 700; text-decoration: none; color: var(--lgl-ink-soft); border-radius: 8px 8px 0 0; }
.lgl-citytab.is-active, .lgl-citytab:hover { color: var(--lgl-red); box-shadow: inset 0 -3px 0 var(--lgl-red); }
.lgl-city-block { margin-bottom: 3rem; }
.lgl-city-block__title { font-family: var(--lgl-font-display); font-weight: 800; font-size: 1.8rem; margin: 0 0 1.25rem; }

.lgl-empty { color: var(--lgl-ink-soft); font-style: italic; }

/* ---- Generic content pages (Template: Inhaltsseite) ---- */
.lgl-page-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(220px, 38vh, 360px);
	background: var(--lgl-red);
	color: #fff;
	overflow: hidden;
}
.lgl-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(228, 3, 46, 0.95) 0%, rgba(150, 20, 80, 0.92) 55%, rgba(74, 30, 110, 0.9) 100%);
}
.lgl-page-hero__inner { position: relative; z-index: 2; padding-block: clamp(2.5rem, 6vw, 4rem); }
.lgl-page-hero__title {
	font-family: var(--lgl-font-display);
	font-weight: 900;
	font-size: clamp(2.2rem, 5.5vw, 3.6rem);
	line-height: 1.04;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 22ch;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.lgl-page-hero__lead {
	font-family: var(--lgl-font-head);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	max-width: 52ch;
	margin: 1.25rem 0 0;
}

.lgl-page-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	margin: 1.5rem 0 0;
	font-family: var(--lgl-font-head);
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}
.lgl-page-meta__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.lgl-page-meta__item + .lgl-page-meta__item::before {
	content: "";
	width: 4px;
	height: 4px;
	margin-right: 1.1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
}

.lgl-content-page { background: var(--lgl-paper); }

/* Rich text rendered from the WordPress editor (the_content). */
.lgl-prose { color: var(--lgl-ink); font-size: 1.05rem; }
.lgl-prose > *:first-child { margin-top: 0; }
.lgl-prose > *:last-child { margin-bottom: 0; }
.lgl-prose p { line-height: 1.7; margin: 0 0 1.4rem; }
.lgl-prose h2 {
	font-family: var(--lgl-font-display);
	font-weight: 800;
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 2.75rem 0 1rem;
}
.lgl-prose h3 {
	font-family: var(--lgl-font-head);
	font-weight: 700;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	margin: 2.25rem 0 0.75rem;
}
.lgl-prose h4 {
	font-family: var(--lgl-font-head);
	font-weight: 700;
	font-size: 1.15rem;
	margin: 1.75rem 0 0.6rem;
}
.lgl-prose ul, .lgl-prose ol { margin: 0 0 1.4rem; padding-left: 1.4rem; line-height: 1.7; }
.lgl-prose li { margin-bottom: 0.4rem; }
.lgl-prose a { color: var(--lgl-red); text-underline-offset: 0.15em; }
.lgl-prose a:hover { color: var(--lgl-red-dark); }
.lgl-prose strong { font-weight: 700; }
.lgl-prose img,
.lgl-prose .wp-block-image img { max-width: 100%; height: auto; border-radius: var(--lgl-radius); }
.lgl-prose figure { margin: 2rem 0; }
.lgl-prose figcaption { font-size: 0.9rem; color: var(--lgl-ink-soft); margin-top: 0.5rem; }
.lgl-prose blockquote {
	margin: 2rem 0;
	padding: 0.5rem 0 0.5rem 1.4rem;
	border-left: 4px solid var(--lgl-red);
	font-family: var(--lgl-font-head);
	font-size: 1.2rem;
	color: var(--lgl-ink-soft);
}
.lgl-prose blockquote p:last-child { margin-bottom: 0; }
.lgl-prose hr { border: 0; border-top: 2px solid var(--lgl-line); margin: 2.5rem 0; }
.lgl-prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4rem; }
.lgl-prose th, .lgl-prose td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--lgl-line); text-align: left; }
.lgl-prose th { font-family: var(--lgl-font-head); font-weight: 700; }
.lgl-page-links { margin-top: 2rem; font-family: var(--lgl-font-head); font-weight: 600; }
.lgl-page-links a { margin: 0 0.35rem; }

/* ---- Closing claim ---- */
.lgl-closing { background: var(--lgl-red); color: #fff; text-align: center; padding-block: clamp(3.5rem, 8vw, 6rem); }
.lgl-closing__line1 { font-family: var(--lgl-font-head); font-weight: 700; font-size: clamp(1.3rem, 3vw, 2rem); margin: 0 0 1rem; }
.lgl-closing__line2 { font-family: var(--lgl-font-display); font-weight: 900; font-size: clamp(2rem, 6vw, 3.75rem); line-height: 1.05; margin: 0; letter-spacing: -0.01em; }

/* ---- Footer ---- */
.lgl-footer { background: var(--lgl-ink); color: #fff; }
.lgl-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 3rem; }
.lgl-footer__brand img { width: 150px; height: auto; }
.lgl-footer__social { text-align: center; }
.lgl-footer__social-heading { font-family: var(--lgl-font-head); font-weight: 600; margin: 0 0 0.75rem; }
.lgl-footer__social ul { display: flex; gap: 1rem; justify-content: center; list-style: none; margin: 0; padding: 0; }
.lgl-footer__social a { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 999px; background: rgba(255,255,255,0.1); color: #fff; font-size: 1.2rem; text-decoration: none; transition: background 0.15s ease; }
.lgl-footer__social a:hover { background: var(--lgl-red); }
.lgl-footer__menu { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.lgl-footer__menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: var(--lgl-font-head); }
.lgl-footer__menu a:hover { color: #fff; text-decoration: underline; }
.lgl-footer__copy { border-top: 1px solid rgba(255,255,255,0.15); }
.lgl-footer__copy .lgl-wrap { padding-block: 1.25rem; }
.lgl-footer__copy p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* =====================================================================
   Burger navigation (GeneratePress primary menu)
   The header/menu markup comes from the GeneratePress parent. We force its
   .menu-toggle hamburger to show at every width, pin it to the top-right
   corner, and turn the #primary-menu list into a drop-down panel. GeneratePress
   JS adds the `toggled` class on .main-navigation when the button is clicked.
   ===================================================================== */

/* Lift the GeneratePress site header out of the document flow so the hero starts
   at the very top of the page; the header sits transparently on top, overlapping
   the hero completely instead of pushing it down. */
.lgl-front .site-header,
.lgl-fullbleed .site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: transparent;
}

/* Keep the nav bar out of the layout flow so the campaign sections run full-bleed;
   the toggle and panel are positioned on top of the page instead. */
.main-navigation {
	background: transparent;
	border: 0;
	min-height: 0;
}
.main-navigation .inside-navigation { padding: 0; }

/* Always-visible hamburger button, pinned top-right */
.main-navigation .menu-toggle {
	display: flex !important;
	visibility: visible !important;
	align-items: center;
	gap: 0.5rem;
	position: fixed;
	top: clamp(1rem, 2.5vw, 1.5rem);
	right: clamp(1rem, 5vw, 2.5rem);
	z-index: 1000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.7rem 1.15rem;
	background: var(--lgl-red);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-family: var(--lgl-font-head);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--lgl-shadow);
	transition: background-color 0.15s ease, transform 0.15s ease;
}
.main-navigation .menu-toggle:hover { background: var(--lgl-red-dark); transform: translateY(-1px); }
.main-navigation .menu-toggle:focus-visible { outline: 3px solid var(--lgl-teal); outline-offset: 2px; }
.main-navigation .menu-toggle .gp-icon { display: inline-flex; }
.main-navigation .menu-toggle .mobile-menu { font-family: var(--lgl-font-head); }

/* Hide the inline menu until the button is toggled */
.main-navigation:not(.toggled) #primary-menu,
.main-navigation:not(.toggled) .main-nav > ul {
	display: none;
}

/* Drop-down panel anchored under the hamburger */
.main-navigation.toggled #primary-menu {
	display: block;
	position: fixed;
	top: clamp(3.6rem, 2.5vw + 2.4rem, 4.4rem);
	right: clamp(1rem, 5vw, 2.5rem);
	z-index: 999;
	width: min(280px, calc(100vw - 2rem));
	max-height: calc(100vh - 6rem);
	overflow-y: auto;
	padding: 0.5rem;
	background: var(--lgl-paper);
	border-radius: var(--lgl-radius);
	box-shadow: var(--lgl-shadow);
}
.main-navigation.toggled #primary-menu > ul { display: block; }

.main-navigation .main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.main-navigation .main-nav ul li { width: 100%; float: none; }
.main-navigation .main-nav ul li a {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--lgl-ink);
	font-family: var(--lgl-font-head);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	border-radius: 8px;
}
.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.current-menu-item > a {
	background: var(--lgl-paper-soft);
	color: var(--lgl-red);
}

/* Sub-menus render inline within the panel rather than flying out */
.main-navigation .main-nav ul ul {
	position: static;
	box-shadow: none;
	width: 100%;
	padding-left: 0.75rem;
}
.main-navigation .main-nav ul ul li a { font-weight: 500; font-size: 0.95rem; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 900px) {
	.lgl-quicknav { grid-template-columns: repeat(2, 1fr); }
	.lgl-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.lgl-stat__grid, .lgl-stat__grid--reverse { grid-template-columns: 1fr; }
	.lgl-stat__grid--reverse .lgl-stat__figures { order: 0; }
	.lgl-vacancy-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.lgl-quicknav { grid-template-columns: 1fr; }
	.lgl-grid--3, .lgl-grid--2 { grid-template-columns: 1fr; }
	.lgl-footer__inner { flex-direction: column; text-align: center; }
}
