/**
 * Schiedsrichtergruppe Heilbronn – Main Styles
 */

:root {
	--schiri-navy: #0a1a2e;
	--schiri-navy-dark: #061220;
	--schiri-red: #d62828;
	--schiri-red-hover: #b91f1f;
	--schiri-blue: #1d4ed8;
	--schiri-blue-light: #3b82f6;
	--schiri-white: #ffffff;
	--schiri-gray-50: #f8fafc;
	--schiri-gray-100: #f1f5f9;
	--schiri-gray-200: #e2e8f0;
	--schiri-gray-400: #94a3b8;
	--schiri-gray-600: #475569;
	--schiri-gray-800: #1e293b;
	--schiri-shadow: 0 4px 24px rgba(10, 26, 46, 0.08);
	--schiri-shadow-lg: 0 12px 40px rgba(10, 26, 46, 0.12);
	--schiri-radius: 8px;
	--schiri-radius-lg: 12px;
	--schiri-container: 1200px;
	--schiri-header-height: 72px;
	--schiri-font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--schiri-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--schiri-gray-800);
	background: var(--schiri-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.schiri-container {
	width: min(100% - 2rem, var(--schiri-container));
	margin-inline: auto;
	max-width: 100%;
}

/* Header – sticky statt fixed (verhindert Mehrfach-Menü bei Firefox-Vollseiten-Screenshots) */
.schiri-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--schiri-navy);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.schiri-main {
	padding-top: 0;
}

body.admin-bar .schiri-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .schiri-header {
		top: 46px;
	}
}

.schiri-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: var(--schiri-header-height);
}

.schiri-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--schiri-white);
	flex-shrink: 0;
}

.schiri-logo__mark {
	position: relative;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.schiri-logo__mark-red,
.schiri-logo__mark-blue {
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 4px;
}

.schiri-logo__mark-red {
	background: var(--schiri-red);
	top: 2px;
	left: 2px;
	transform: rotate(-12deg);
}

.schiri-logo__mark-blue {
	background: var(--schiri-blue);
	bottom: 2px;
	right: 2px;
	transform: rotate(12deg);
}

.schiri-logo__text {
	display: flex;
	flex-direction: column;
	font-size: 0.7rem;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.schiri-logo__line--bold {
	font-weight: 700;
	font-size: 0.8rem;
}

.schiri-logo__image img,
.schiri-logo__custom-img {
	max-height: 48px;
	width: auto;
}

.schiri-nav { flex: 1; display: flex; justify-content: center; }

.schiri-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.schiri-nav__link {
	display: block;
	padding: 0.5rem 0.85rem;
	color: rgba(255,255,255,0.85);
	font-size: 0.9rem;
	font-weight: 500;
	border-radius: 4px;
	transition: color 0.2s, background 0.2s;
}

.schiri-nav__link:hover,
.schiri-nav .current-menu-item > .schiri-nav__link,
.schiri-nav .current_page_item > a {
	color: var(--schiri-white);
}

.schiri-nav .current-menu-item > .schiri-nav__link::after,
.schiri-nav .current_page_item > a::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: var(--schiri-red);
	margin-top: 2px;
	border-radius: 1px;
}

.schiri-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.schiri-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--schiri-white);
	border-radius: 1px;
	transition: transform 0.2s, opacity 0.2s;
}

.schiri-header__cta { flex-shrink: 0; white-space: nowrap; }

/* Buttons */
.schiri-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.25rem;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--schiri-radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.schiri-btn--primary {
	background: var(--schiri-red);
	color: var(--schiri-white);
	border-color: var(--schiri-red);
}

.schiri-btn--primary:hover {
	background: var(--schiri-red-hover);
	border-color: var(--schiri-red-hover);
	color: var(--schiri-white);
}

.schiri-btn--outline {
	background: transparent;
	color: var(--schiri-white);
	border-color: rgba(255,255,255,0.6);
}

.schiri-btn--outline:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--schiri-white);
	color: var(--schiri-white);
}

.schiri-btn--outline-dark {
	background: transparent;
	color: var(--schiri-navy);
	border-color: var(--schiri-gray-300);
}

.schiri-btn--outline-dark:hover {
	background: var(--schiri-gray-50);
	border-color: var(--schiri-navy);
	color: var(--schiri-navy);
}

.schiri-btn--lg {
	padding: 0.85rem 1.5rem;
	font-size: 1rem;
}

.schiri-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--schiri-red);
	transition: gap 0.2s;
}

.schiri-link-arrow:hover { gap: 0.55rem; }

/* Hero */
.schiri-hero {
	position: relative;
	min-height: calc(760px + var(--schiri-header-height));
	margin-top: calc(-1 * var(--schiri-header-height));
	padding-top: var(--schiri-header-height);
	display: flex;
	align-items: center;
	background-color: var(--schiri-navy-dark);
	clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
	overflow: hidden;
}

body.admin-bar .schiri-hero {
	padding-top: var(--schiri-header-height);
	min-height: calc(760px + var(--schiri-header-height));
}

@media screen and (max-width: 782px) {
	body.admin-bar .schiri-hero {
		min-height: calc(760px + var(--schiri-header-height));
	}
}

.schiri-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.schiri-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.schiri-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(6, 18, 32, 0.88) 0%,
		rgba(10, 26, 46, 0.55) 42%,
		rgba(10, 26, 46, 0.15) 72%,
		rgba(10, 26, 46, 0.05) 100%
	);
}

.schiri-hero__content {
	position: relative;
	z-index: 2;
	padding: 6rem 0 8.5rem;
	max-width: none;
}

.schiri-hero__title {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0 0 1.5rem;
	font-size: clamp(2.5rem, 5.5vw, 4rem);
	font-weight: 800;
	line-height: 1.05;
	color: var(--schiri-white);
	letter-spacing: -0.03em;
}

.schiri-hero__title-line {
	display: block;
}

.schiri-hero__title-dot {
	color: var(--schiri-red);
}

.schiri-hero__title--simple {
	display: block;
}

.schiri-hero--werden {
	clip-path: none;
	margin-bottom: 0;
}

.schiri-hero--werden .schiri-hero__img {
	filter: none;
}

.schiri-hero--werden .schiri-hero__overlay {
	background: linear-gradient(
		100deg,
		rgba(6, 18, 32, 0.72) 0%,
		rgba(6, 18, 32, 0.5) 24%,
		rgba(10, 26, 46, 0.2) 44%,
		rgba(10, 26, 46, 0.04) 60%,
		transparent 75%
	);
}

.schiri-hero--werden .schiri-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: calc(560px + var(--schiri-header-height));
	padding: 2.75rem 0 3.25rem;
}

body.admin-bar .schiri-hero--werden .schiri-hero__content {
	min-height: calc(560px + var(--schiri-header-height));
}

@media screen and (max-width: 782px) {
	body.admin-bar .schiri-hero--werden .schiri-hero__content {
		min-height: calc(560px + var(--schiri-header-height));
	}
}

.schiri-hero--werden .schiri-hero__intro {
	max-width: 620px;
}

.schiri-hero--werden .schiri-hero__title {
	margin-bottom: 1.25rem;
}

.schiri-hero--werden .schiri-hero__subtitle {
	margin-bottom: 2rem;
}

.schiri-hero--werden .schiri-hero__stats {
	margin-top: auto;
	padding-top: 2.5rem;
	max-width: 34rem;
	gap: 0.85rem;
}

.schiri-hero--werden .schiri-hero__stat {
	flex: 1;
	padding: 1.15rem 1.35rem;
	background: rgba(6, 18, 32, 0.45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--schiri-radius-lg);
}

.schiri-hero--werden .schiri-hero__stat:first-child,
.schiri-hero--werden .schiri-hero__stat:last-child {
	padding-left: 1.35rem;
	padding-right: 1.35rem;
}

.schiri-hero--werden .schiri-hero__stat + .schiri-hero__stat {
	border-left: none;
}

.schiri-hero__subtitle {
	margin: 0 0 2.25rem;
	font-size: 1.2rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	max-width: 580px;
	font-weight: 400;
}

.schiri-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.schiri-hero__stats {
	display: flex;
	align-items: stretch;
	margin-top: 3rem;
	max-width: 28rem;
}

.schiri-hero__stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 1.75rem;
}

.schiri-hero__stat:first-child {
	padding-left: 0;
}

.schiri-hero__stat:last-child {
	padding-right: 0;
}

.schiri-hero__stat + .schiri-hero__stat {
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.schiri-hero__stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.65rem;
	color: var(--schiri-red);
}

.schiri-hero__stat-icon svg {
	width: 22px;
	height: 22px;
}

.schiri-hero__stat-number {
	font-size: clamp(1.85rem, 3.5vw, 2.35rem);
	font-weight: 800;
	line-height: 1;
	color: var(--schiri-white);
	letter-spacing: -0.02em;
}

.schiri-hero__stat-label {
	margin-top: 0.4rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.35;
}

/* Sections */
.schiri-section {
	padding: 4rem 0;
}

.schiri-section--team,
.schiri-section--kader { background: var(--schiri-white); }

.schiri-section--events { background: var(--schiri-gray-50); }

.schiri-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.schiri-section__header--compact { margin-bottom: 1.5rem; }

.schiri-section__title {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--schiri-navy);
}

.schiri-section--features {
	position: relative;
	z-index: 3;
	background: var(--schiri-gray-50);
	padding: 3rem 0 4rem;
	margin-top: 0;
}

.schiri-features-intro {
	margin-bottom: 2rem;
}

.schiri-features-intro__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--schiri-red);
}

.schiri-features-intro__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--schiri-navy);
	max-width: 16ch;
}

/* Feature cards – Bento */
.schiri-features-bento {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 1.25rem;
}

.schiri-feature-card {
	position: relative;
	border-radius: var(--schiri-radius-lg);
	overflow: hidden;
	box-shadow: var(--schiri-shadow-lg);
	border: 1px solid var(--schiri-gray-200);
	transition: box-shadow 0.25s, transform 0.25s;
}

.schiri-feature-card:hover {
	box-shadow: 0 18px 48px rgba(10, 26, 46, 0.14);
	transform: translateY(-3px);
}

.schiri-feature-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.75rem 1.75rem 1.65rem;
}

.schiri-feature-card__top {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.schiri-feature-card__meta {
	min-width: 0;
}

.schiri-feature-card__label {
	margin: 0 0 0.65rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.schiri-feature-card__label::after {
	content: '';
	display: block;
	width: 2rem;
	height: 2px;
	margin-top: 0.45rem;
	border-radius: 2px;
	background: currentColor;
	opacity: 0.85;
}

.schiri-feature-card__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.2;
}

.schiri-feature-card__lead {
	margin: 0.5rem 0 0;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
}

.schiri-feature-card__text {
	margin: 1rem 0 1.35rem;
	font-size: 0.95rem;
	line-height: 1.65;
	flex: 1;
}

.schiri-feature-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	flex-shrink: 0;
}

.schiri-feature-card__icon img {
	width: 28px;
	height: 28px;
}

.schiri-feature-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	font-size: 0.95rem;
	font-weight: 700;
	transition: gap 0.2s;
}

.schiri-feature-card__link:hover {
	gap: 0.55rem;
}

.schiri-feature-card__btn {
	margin-top: auto;
	align-self: flex-start;
}

/* Hero tile */
.schiri-feature-card--hero {
	grid-row: 1 / 3;
	background:
		radial-gradient(ellipse 70% 55% at 100% 50%, rgba(29, 78, 216, 0.22) 0%, transparent 58%),
		linear-gradient(145deg, var(--schiri-navy-dark) 0%, var(--schiri-navy) 100%);
	border-color: rgba(255, 255, 255, 0.08);
	color: var(--schiri-white);
}

.schiri-feature-card--hero .schiri-feature-card__body {
	padding: 2rem 2rem 2.25rem;
}

.schiri-feature-card--hero .schiri-feature-card__label {
	color: var(--schiri-red);
}

.schiri-feature-card--hero .schiri-feature-card__title {
	font-size: clamp(1.75rem, 2.5vw, 2.15rem);
	color: var(--schiri-white);
}

.schiri-feature-card--hero .schiri-feature-card__lead {
	color: rgba(255, 255, 255, 0.95);
}

.schiri-feature-card--hero .schiri-feature-card__text {
	color: rgba(255, 255, 255, 0.78);
	max-width: 28ch;
}

.schiri-feature-card__watermark {
	position: absolute;
	right: -1.5rem;
	bottom: 1rem;
	width: min(48%, 220px);
	opacity: 0.22;
	color: #7dd3fc;
	pointer-events: none;
}

.schiri-feature-card__watermark img {
	width: 100%;
	height: auto;
}

/* Schulungen */
.schiri-feature-card--schulungen {
	background: var(--schiri-white);
	border-left: 4px solid var(--schiri-blue);
}

.schiri-feature-card--schulungen .schiri-feature-card__label {
	color: var(--schiri-blue);
}

.schiri-feature-card--schulungen .schiri-feature-card__title {
	color: var(--schiri-navy);
}

.schiri-feature-card--schulungen .schiri-feature-card__text {
	color: var(--schiri-gray-600);
}

.schiri-feature-card--schulungen .schiri-feature-card__icon {
	background: rgba(29, 78, 216, 0.12);
	color: var(--schiri-blue);
}

.schiri-feature-card--schulungen .schiri-feature-card__link {
	color: var(--schiri-blue);
}

/* Leistungskader */
.schiri-feature-card--kader {
	background: var(--schiri-white);
	border-top: 4px solid var(--schiri-red);
}

.schiri-feature-card--kader .schiri-feature-card__label {
	color: var(--schiri-red);
}

.schiri-feature-card--kader .schiri-feature-card__title {
	color: var(--schiri-navy);
}

.schiri-feature-card--kader .schiri-feature-card__text {
	color: var(--schiri-gray-600);
}

.schiri-feature-card--kader .schiri-feature-card__icon {
	background: rgba(214, 40, 40, 0.12);
	color: var(--schiri-red);
}

.schiri-feature-card--kader .schiri-feature-card__link {
	color: var(--schiri-red);
}

/* Downloads */
.schiri-feature-card--downloads {
	grid-column: 2 / 4;
	background: var(--schiri-white);
}

.schiri-feature-card--downloads .schiri-feature-card__body {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 2rem;
	padding: 1.5rem 1.75rem;
}

.schiri-feature-card--downloads .schiri-feature-card__top {
	flex: 1 1 240px;
}

.schiri-feature-card--downloads .schiri-feature-card__text {
	flex: 1 1 280px;
	margin: 0;
}

.schiri-feature-card--downloads .schiri-feature-card__link {
	flex: 0 0 auto;
	margin-top: 0;
}

.schiri-feature-card--downloads .schiri-feature-card__label {
	color: var(--schiri-gray-600);
}

.schiri-feature-card--downloads .schiri-feature-card__title {
	color: var(--schiri-navy);
}

.schiri-feature-card--downloads .schiri-feature-card__text {
	color: var(--schiri-gray-600);
}

.schiri-feature-card--downloads .schiri-feature-card__icon {
	background: var(--schiri-gray-600);
	color: var(--schiri-white);
}

.schiri-feature-card--downloads .schiri-feature-card__link {
	color: var(--schiri-blue);
}

/* News */
.schiri-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.schiri-news-card {
	background: var(--schiri-white);
	border-radius: var(--schiri-radius-lg);
	overflow: hidden;
	box-shadow: var(--schiri-shadow);
	border: 1px solid var(--schiri-gray-200);
	display: flex;
	flex-direction: column;
}

.schiri-news-card__image-link { display: block; }

.schiri-news-card__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: 50% 30%;
}

.schiri-news-card__image--placeholder {
	height: 200px;
	background: linear-gradient(135deg, var(--schiri-navy) 0%, var(--schiri-blue) 100%);
}

.schiri-news-card__body {
	padding: 1.25rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.schiri-badge {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	border-radius: 4px;
	margin-bottom: 0.75rem;
	width: fit-content;
}

.schiri-badge--red {
	background: rgba(214, 40, 40, 0.1);
	color: var(--schiri-red);
}

.schiri-badge--blue {
	background: rgba(29, 78, 216, 0.1);
	color: var(--schiri-blue);
}

.schiri-news-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
}

.schiri-news-card__title a:hover { color: var(--schiri-red); }

.schiri-news-card__excerpt {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	color: var(--schiri-gray-600);
	flex: 1;
}

.schiri-news-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--schiri-gray-100);
	font-size: 0.85rem;
	color: var(--schiri-gray-400);
}

.schiri-news-card--featured {
	flex-direction: row;
	grid-column: 1 / -1;
}

.schiri-news-card--featured .schiri-news-card__image-link {
	flex: 0 0 52%;
	max-width: 52%;
}

.schiri-news-card--featured .schiri-news-card__image,
.schiri-news-card--featured .schiri-news-card__image--placeholder {
	height: 100%;
	min-height: 320px;
}

.schiri-news-card--featured .schiri-news-card__body {
	padding: 2rem 2.25rem;
	justify-content: center;
}

.schiri-news-card--featured .schiri-news-card__title {
	font-size: 1.65rem;
}

.schiri-news-featured {
	margin-bottom: 2rem;
}

.schiri-news-card:hover {
	box-shadow: var(--schiri-shadow-lg);
	transform: translateY(-2px);
	transition: box-shadow 0.25s, transform 0.25s;
}

/* Subpage hero */
.schiri-subhero {
	position: relative;
	background: var(--schiri-navy-dark);
	color: var(--schiri-white);
	margin-top: calc(-1 * var(--schiri-header-height));
	padding: calc(3rem + var(--schiri-header-height)) 0 3.5rem;
	clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
	margin-bottom: -1.5rem;
	overflow: hidden;
}

body.admin-bar .schiri-subhero {
	padding-top: calc(3rem + var(--schiri-header-height));
}

.schiri-subhero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 100% 0%, rgba(214, 40, 40, 0.18) 0%, transparent 55%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(29, 78, 216, 0.2) 0%, transparent 50%),
		linear-gradient(135deg, var(--schiri-navy-dark) 0%, var(--schiri-navy) 100%);
}

.schiri-subhero__bg::after {
	content: '';
	position: absolute;
	right: -5%;
	top: 20%;
	width: 280px;
	height: 280px;
	border: 2px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
}

.schiri-subhero__inner {
	position: relative;
	z-index: 1;
}

.schiri-breadcrumbs {
	margin-bottom: 1rem;
}

.schiri-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.85rem;
}

.schiri-breadcrumbs__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.55);
}

.schiri-breadcrumbs__item:not(:last-child)::after {
	content: '/';
	opacity: 0.45;
}

.schiri-breadcrumbs__item a {
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
}

.schiri-breadcrumbs__item a:hover {
	color: var(--schiri-white);
}

.schiri-breadcrumbs__item span {
	color: rgba(255, 255, 255, 0.9);
}

.schiri-subhero__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	max-width: 18ch;
}

.schiri-subhero__subtitle {
	margin: 1rem 0 0;
	max-width: 52ch;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
}

.schiri-section--news-archive {
	background: var(--schiri-gray-50);
	padding-top: 3rem;
}

.schiri-section--related {
	background: var(--schiri-white);
	padding-top: 0;
}

/* Unsere Gruppe page */
.schiri-section--group-page {
	background: var(--schiri-gray-50);
	padding-top: 3rem;
}

.schiri-section--group-team {
	background: var(--schiri-white);
	padding-top: 3rem;
}

.schiri-section--group-cta {
	background: var(--schiri-gray-50);
	padding-top: 0;
}

.schiri-group-intro {
	display: grid;
	gap: 2.5rem;
}

.schiri-group-intro__text {
	max-width: 760px;
}

.schiri-group-intro__text h2 {
	margin: 0 0 1rem;
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--schiri-navy);
	line-height: 1.2;
}

.schiri-group-intro__text p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--schiri-gray-600);
}

.schiri-group-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.schiri-group-value {
	background: var(--schiri-white);
	border: 1px solid var(--schiri-gray-200);
	border-radius: var(--schiri-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--schiri-shadow);
}

.schiri-group-value__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	border-radius: 10px;
	background: rgba(214, 40, 40, 0.1);
	color: var(--schiri-red);
}

.schiri-group-value:nth-child(2) .schiri-group-value__icon {
	background: rgba(29, 78, 216, 0.1);
	color: var(--schiri-blue);
}

.schiri-group-value h3 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--schiri-navy);
}

.schiri-group-value p {
	margin: 0;
	font-size: 0.925rem;
	line-height: 1.55;
	color: var(--schiri-gray-600);
}

.schiri-group-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	padding: 2.5rem;
	background: var(--schiri-navy);
	border-radius: var(--schiri-radius-lg);
	color: var(--schiri-white);
}

.schiri-group-cta__content {
	max-width: 560px;
}

.schiri-group-cta h2 {
	margin: 0 0 0.75rem;
	font-size: 1.5rem;
	font-weight: 800;
}

.schiri-group-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.schiri-section--group-team .schiri-team-section--page {
	margin-top: 0;
}

.schiri-section--group-team .schiri-team-section__header {
	margin-bottom: 2rem;
}

.schiri-section--group-team .schiri-team-section__title {
	font-size: 2rem;
}

/* Schiri werden page (Entwurf K) */
.schiri-section--werden-steps {
	background: var(--schiri-white);
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.schiri-werden-section-head__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--schiri-red);
}

.schiri-werden-section-head {
	max-width: 640px;
	margin-bottom: 2.5rem;
}

.schiri-werden-section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.schiri-werden-section-head__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--schiri-navy);
	line-height: 1.2;
}

.schiri-werden-section-head__text {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--schiri-gray-600);
}

.schiri-werden-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.schiri-werden-step-card {
	background: var(--schiri-white);
	border: 1px solid var(--schiri-gray-200);
	border-radius: var(--schiri-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--schiri-shadow);
	transition: box-shadow 0.2s, transform 0.2s;
}

.schiri-werden-step-card:hover {
	box-shadow: var(--schiri-shadow-lg);
	transform: translateY(-2px);
}

.schiri-werden-step-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.schiri-werden-step-card__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--schiri-red);
	color: var(--schiri-white);
	font-size: 0.95rem;
	font-weight: 800;
}

.schiri-werden-step-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--schiri-red);
	opacity: 0.85;
}

.schiri-werden-step-card__icon svg {
	width: 22px;
	height: 22px;
}

.schiri-werden-step-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--schiri-navy);
	line-height: 1.3;
}

.schiri-werden-step-card__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--schiri-gray-600);
}

.schiri-section--werden-faq {
	background: var(--schiri-gray-50);
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.schiri-werden-faq {
	display: grid;
	gap: 0.75rem;
}

.schiri-werden-faq__item {
	border: 1px solid var(--schiri-gray-200);
	border-radius: var(--schiri-radius-lg);
	background: var(--schiri-white);
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.schiri-werden-faq__item[open] {
	border-color: rgba(214, 40, 40, 0.25);
	box-shadow: var(--schiri-shadow);
}

.schiri-werden-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.25rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--schiri-navy);
	cursor: pointer;
	list-style: none;
}

.schiri-werden-faq__question::-webkit-details-marker {
	display: none;
}

.schiri-werden-faq__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--schiri-gray-100);
	position: relative;
	transition: background 0.2s, transform 0.25s;
}

.schiri-werden-faq__icon::before,
.schiri-werden-faq__icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 2px;
	background: var(--schiri-navy);
	transform: translate(-50%, -50%);
	transition: transform 0.25s;
}

.schiri-werden-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.schiri-werden-faq__item[open] .schiri-werden-faq__icon {
	background: rgba(214, 40, 40, 0.1);
}

.schiri-werden-faq__item[open] .schiri-werden-faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}

.schiri-werden-faq__answer {
	padding: 0 1.25rem 1.15rem;
}

.schiri-werden-faq__answer p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--schiri-gray-600);
}

.schiri-werden-cta {
	background: var(--schiri-navy-dark);
	color: var(--schiri-white);
	padding: 4rem 0;
}

.schiri-werden-cta__band {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	max-width: 640px;
	margin: 0 auto;
}

.schiri-werden-cta__title {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
}

.schiri-werden-cta__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	font-size: 1.05rem;
}

.schiri-section--kader-page {
	background: var(--schiri-white);
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.schiri-section--kader-page .schiri-container {
	max-width: var(--schiri-container);
}

.schiri-section--kader-page .schiri-team-section--page {
	margin-top: 0;
}

.schiri-section--kader-page .schiri-team-section__header {
	margin-bottom: 2rem;
}

.schiri-section--kader-page .schiri-team-section--page + .schiri-team-section--page {
	margin-top: 3.5rem;
	padding-top: 3.5rem;
	border-top: 1px solid var(--schiri-gray-200);
}

.schiri-section--termine-page {
	background: var(--schiri-white);
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.schiri-section--termine-page .schiri-termine-section--page {
	margin-top: 0;
}

.schiri-section--termine-page .schiri-events__list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	max-width: 820px;
}

.schiri-section--termine-page .schiri-event-item--page {
	padding: 1.5rem 1.75rem;
	gap: 1.5rem;
	box-shadow: var(--schiri-shadow);
}

.schiri-section--termine-page .schiri-event-item__date {
	min-width: 76px;
	padding: 0.9rem 0.75rem;
}

.schiri-section--termine-page .schiri-event-item__day {
	font-size: 1.85rem;
}

.schiri-section--termine-page .schiri-event-item__month {
	font-size: 0.8rem;
}

.schiri-section--termine-page .schiri-event-item__content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.schiri-section--termine-page .schiri-event-item__content p {
	font-size: 1rem;
	gap: 1.25rem;
}

.schiri-section--termine-page .schiri-event-item__content svg {
	width: 16px;
	height: 16px;
}

.schiri-section--downloads-page {
	background: var(--schiri-white);
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.schiri-section--downloads-page .schiri-downloads-section--page {
	margin-top: 0;
}

.schiri-section--downloads-page .schiri-downloads__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 820px;
}

.schiri-section--downloads-page .schiri-download-item--page {
	padding: 1.35rem 1.5rem;
	box-shadow: var(--schiri-shadow);
}

.schiri-section--downloads-page .schiri-download-item--page .schiri-download-item__icon svg {
	width: 24px;
	height: 24px;
}

.schiri-section--downloads-page .schiri-download-item--page .schiri-download-item__info strong {
	font-size: 1.15rem;
}

.schiri-section--downloads-page .schiri-download-item--page .schiri-download-item__info small {
	font-size: 0.95rem;
}

.schiri-section--downloads-page .schiri-download-item--page .schiri-download-item__action svg {
	width: 22px;
	height: 22px;
}

.schiri-section--legal {
	background: var(--schiri-white);
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.schiri-legal-content {
	max-width: 820px;
	color: var(--schiri-gray-700);
	line-height: 1.75;
	font-size: 1rem;
}

.schiri-legal-address {
	margin-bottom: 2.5rem;
	padding: 1.75rem 2rem;
	background: var(--schiri-gray-50);
	border: 1px solid var(--schiri-gray-200);
	border-radius: var(--schiri-radius-lg);
}

.schiri-legal-address p {
	margin: 0 0 1.25rem;
}

.schiri-legal-address p:last-child {
	margin-bottom: 0;
}

.schiri-legal-address a {
	color: var(--schiri-blue);
	text-decoration: none;
}

.schiri-legal-address a:hover {
	text-decoration: underline;
}

.schiri-legal-content h2 {
	margin: 2.25rem 0 0.85rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--schiri-navy);
}

.schiri-legal-content h2:first-of-type {
	margin-top: 0;
}

.schiri-legal-content p {
	margin: 0 0 1rem;
}

.schiri-legal-content h3 {
	margin: 1.5rem 0 0.65rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--schiri-navy);
}

.schiri-legal-content ul {
	margin: 0 0 1.25rem;
	padding-left: 1.5rem;
}

.schiri-legal-content li {
	margin-bottom: 0.45rem;
}

.schiri-legal-content--privacy {
	max-width: 900px;
}

.schiri-legal-content a {
	color: var(--schiri-blue);
	text-decoration: none;
}

.schiri-legal-content a:hover {
	text-decoration: underline;
}

.schiri-section--single {
	padding-top: 2.5rem;
}

.schiri-empty-state {
	text-align: center;
	padding: 4rem 2rem;
	background: var(--schiri-white);
	border-radius: var(--schiri-radius-lg);
	border: 1px solid var(--schiri-gray-200);
	box-shadow: var(--schiri-shadow);
}

.schiri-empty-state__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	background: rgba(29, 78, 216, 0.08);
	color: var(--schiri-blue);
}

.schiri-empty-state h2 {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
	color: var(--schiri-navy);
}

.schiri-empty-state p {
	margin: 0 0 1.5rem;
	color: var(--schiri-gray-600);
}

.schiri-btn--ghost-dark {
	background: transparent;
	color: var(--schiri-navy);
	border: 2px solid var(--schiri-gray-200);
}

.schiri-btn--ghost-dark:hover {
	border-color: var(--schiri-red);
	color: var(--schiri-red);
}

.schiri-article__header {
	margin-bottom: 1.5rem;
}

.schiri-article__footer {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--schiri-gray-200);
}

.schiri-article__content h2,
.schiri-article__content h3 {
	color: var(--schiri-navy);
	margin-top: 2rem;
}

.schiri-article__content p {
	margin-bottom: 1.25rem;
}

.schiri-article__content a {
	color: var(--schiri-blue);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.schiri-article__content a:hover {
	color: var(--schiri-red);
}

.schiri-article__content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--schiri-red);
	background: var(--schiri-gray-50);
	border-radius: 0 var(--schiri-radius) var(--schiri-radius) 0;
	color: var(--schiri-gray-600);
}

.schiri-pagination a:hover {
	border-color: var(--schiri-red);
	color: var(--schiri-red);
}

/* Events & Downloads */
.schiri-events-downloads {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.schiri-events__list,
.schiri-downloads__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.schiri-event-item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	background: var(--schiri-white);
	border-radius: var(--schiri-radius);
	padding: 1.25rem;
	border: 1px solid var(--schiri-gray-200);
}

.schiri-event-item__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	padding: 0.75rem;
	background: var(--schiri-gray-50);
	border-radius: var(--schiri-radius);
	border: 1px solid var(--schiri-gray-200);
}

.schiri-event-item__day {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--schiri-navy);
	line-height: 1;
}

.schiri-event-item__month {
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--schiri-red);
	letter-spacing: 0.05em;
}

.schiri-event-item__content h3 {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--schiri-navy);
}

.schiri-event-item__content p {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.85rem;
	color: var(--schiri-gray-600);
}

.schiri-event-item__content p span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.schiri-download-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--schiri-white);
	border-radius: var(--schiri-radius);
	border: 1px solid var(--schiri-gray-200);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.schiri-download-item:hover {
	border-color: var(--schiri-blue-light);
	box-shadow: var(--schiri-shadow);
}

.schiri-download-item__icon {
	display: flex;
	color: var(--schiri-red);
	flex-shrink: 0;
}

.schiri-download-item__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.schiri-download-item__info strong {
	font-size: 0.95rem;
	color: var(--schiri-navy);
}

.schiri-download-item__info small {
	font-size: 0.8rem;
	color: var(--schiri-gray-400);
}

.schiri-download-item__action {
	display: flex;
	color: var(--schiri-blue);
	flex-shrink: 0;
}

/* Footer */
.schiri-footer {
	background: var(--schiri-navy);
	color: rgba(255,255,255,0.85);
	padding: 4rem 0 0;
}

.schiri-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

.schiri-footer__tagline {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.65);
	max-width: 260px;
}

.schiri-footer__title {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--schiri-white);
}

.schiri-footer__contact {
	font-style: normal;
	font-size: 0.9rem;
}

.schiri-footer__contact p {
	margin: 0 0 0.75rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.schiri-footer__contact a:hover { color: var(--schiri-white); }

.schiri-footer__links-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1.5rem;
}

.schiri-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.schiri-footer__links li { margin-bottom: 0.5rem; }

.schiri-footer__links a {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.7);
	transition: color 0.2s;
}

.schiri-footer__links a:hover { color: var(--schiri-white); }

.schiri-footer__social {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.schiri-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	color: var(--schiri-white);
	transition: background 0.2s;
}

.schiri-footer__social a:hover { background: var(--schiri-red); }

.schiri-footer__partner-label {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.5);
	margin: 0 0 0.75rem;
}

.schiri-footer__partners {
	display: flex;
	gap: 0.75rem;
}

.schiri-footer__partner-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4rem 0.75rem;
	background: rgba(255,255,255,0.1);
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.schiri-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.85rem;
	color: rgba(255,255,255,0.5);
	flex-wrap: wrap;
}

.schiri-footer__legal {
	display: flex;
	gap: 1.5rem;
}

.schiri-footer__legal a:hover { color: var(--schiri-white); }

/* Misc */
.schiri-empty-notice {
	padding: 2rem;
	background: var(--schiri-gray-100);
	border-radius: var(--schiri-radius);
	color: var(--schiri-gray-600);
	text-align: center;
}

.schiri-page-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--schiri-navy);
	margin: 0 0 1.5rem;
}

.schiri-article__content { line-height: 1.7; }

.schiri-container--narrow { max-width: 800px; }

.schiri-article__date {
	display: block;
	font-size: 0.9rem;
	color: var(--schiri-gray-400);
	margin-bottom: 1.5rem;
}

.schiri-article__featured {
	margin-bottom: 2rem;
	border-radius: var(--schiri-radius-lg);
	overflow: hidden;
}

.schiri-article__featured img {
	display: block;
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	object-position: 50% 30%;
}

.schiri-pagination {
	margin-top: 2.5rem;
	text-align: center;
}

.schiri-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.schiri-pagination a,
.schiri-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border-radius: var(--schiri-radius);
	border: 1px solid var(--schiri-gray-200);
	font-weight: 600;
}

.schiri-pagination .current {
	background: var(--schiri-red);
	color: var(--schiri-white);
	border-color: var(--schiri-red);
}

/* Responsive */
@media (max-width: 1024px) {
	.schiri-features-bento {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.schiri-feature-card--hero {
		grid-row: auto;
		grid-column: 1 / -1;
	}

	.schiri-feature-card--downloads {
		grid-column: 1 / -1;
	}

	.schiri-news-grid { grid-template-columns: repeat(2, 1fr); }
	.schiri-group-values { grid-template-columns: 1fr; }
	.schiri-footer__grid { grid-template-columns: 1fr 1fr; }
	.schiri-werden-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.schiri-nav-toggle { display: flex; }

	.schiri-nav {
		position: fixed;
		top: var(--schiri-header-height);
		left: 0;
		right: 0;
		background: var(--schiri-navy);
		padding: 1rem;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.3s, opacity 0.3s;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

	.schiri-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	body.admin-bar .schiri-nav {
		top: calc(var(--schiri-header-height) + 32px);
	}

	@media screen and (max-width: 782px) {
		body.admin-bar .schiri-nav {
			top: calc(var(--schiri-header-height) + 46px);
		}
	}

	.schiri-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.schiri-header__cta { display: none; }

	.schiri-hero {
		min-height: auto;
		clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
	}

	.schiri-hero--werden {
		clip-path: none;
	}

	/* Mobile Hero: schlank – nur Headline, Kurztext, 1 Button */
	.schiri-hero__content {
		padding: 2.75rem 0 3.75rem;
	}

	.schiri-hero__title {
		font-size: clamp(1.7rem, 7vw, 2.15rem);
		gap: 0;
		margin-bottom: 1.35rem;
		line-height: 1.1;
	}

	.schiri-hero__subtitle {
		display: none;
	}

	.schiri-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.schiri-hero__actions .schiri-btn--primary {
		width: 100%;
		justify-content: center;
		padding: 0.8rem 1.25rem;
	}

	.schiri-hero__secondary {
		display: none;
	}

	.schiri-hero__stats {
		display: none;
	}

	.schiri-hero--werden .schiri-hero__content {
		min-height: auto;
		padding: 2.5rem 0 3rem;
	}

	.schiri-hero--werden .schiri-hero__stats {
		display: flex;
		flex-direction: column;
		padding-top: 2rem;
	}

	.schiri-hero--werden .schiri-hero__stat {
		padding: 1rem 1.15rem;
	}

	.schiri-features-bento {
		grid-template-columns: 1fr;
	}

	.schiri-feature-card--hero,
	.schiri-feature-card--downloads {
		grid-column: auto;
	}

	.schiri-feature-card--downloads .schiri-feature-card__body {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		gap: 0.85rem;
		padding: 1.35rem 1.35rem 1.25rem;
	}

	.schiri-feature-card--downloads .schiri-feature-card__top,
	.schiri-feature-card--downloads .schiri-feature-card__text {
		flex: 0 0 auto;
		width: 100%;
	}

	.schiri-feature-card--downloads .schiri-feature-card__text {
		margin: 0;
	}

	.schiri-feature-card--downloads .schiri-feature-card__link {
		margin-top: 0.15rem;
	}

	.schiri-news-grid { grid-template-columns: 1fr; }

	.schiri-news-card--featured {
		flex-direction: column;
	}

	.schiri-news-card--featured .schiri-news-card__image-link {
		flex: none;
		max-width: none;
	}

	.schiri-news-card--featured .schiri-news-card__image,
	.schiri-news-card--featured .schiri-news-card__image--placeholder {
		min-height: 200px;
		height: 200px;
	}

	.schiri-group-values { grid-template-columns: 1fr; }
	.schiri-group-cta {
		padding: 1.5rem;
		gap: 1.25rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.schiri-group-cta__content {
		max-width: none;
	}

	.schiri-group-cta h2 {
		font-size: 1.25rem;
		overflow-wrap: anywhere;
	}

	.schiri-section--group-team {
		padding-top: 2rem;
	}

	.schiri-subhero {
		padding-bottom: 2.75rem;
	}

	.schiri-subhero__title {
		font-size: clamp(1.75rem, 8vw, 2.25rem);
		overflow-wrap: anywhere;
	}

	.schiri-header__inner {
		gap: 0.75rem;
		min-width: 0;
	}

	.schiri-logo {
		min-width: 0;
		flex: 1 1 auto;
	}

	.schiri-logo__text {
		min-width: 0;
	}

	.schiri-werden-steps {
		grid-template-columns: 1fr;
	}

	.schiri-events-downloads {
		grid-template-columns: 1fr;
	}

	.schiri-footer__grid { grid-template-columns: 1fr; }
	.schiri-footer__links-grid { grid-template-columns: 1fr; }
}

/* Druck & Vollseiten-Screenshots: Header nur einmal im Dokument */
@media print {
	.schiri-header {
		position: static !important;
	}

	.schiri-nav.is-open {
		position: static !important;
		transform: none !important;
		opacity: 1 !important;
	}
}
