/**
 * OH Core widget styles.
 */

/* Button */
.oh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	line-height: 1.2;
}

.oh-button--sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.oh-button--md {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
}

.oh-button--lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.oh-button--primary {
	background: var(--oh-primary, #0087bf);
	color: #fff;
	border: 2px solid var(--oh-primary, #0087bf);
}

.oh-button--primary:hover {
	background: var(--oh-primary-dark, #006994);
	border-color: var(--oh-primary-dark, #006994);
	color: #fff;
}

.oh-button--outline {
	background: transparent;
	color: var(--oh-primary, #0087bf);
	border: 2px solid var(--oh-primary, #0087bf);
}

.oh-button--outline:hover {
	background: var(--oh-primary-light, #e5f4fa);
	color: var(--oh-primary-dark, #006994);
}

.oh-button--accent {
	background: var(--oh-accent, #ff6b35);
	color: #fff;
	border: 2px solid var(--oh-accent, #ff6b35);
}

.oh-button--accent:hover {
	filter: brightness(0.92);
	color: #fff;
}

.oh-button__icon {
	display: inline-flex;
}

/* Icon Box */
.oh-icon-box {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	border-radius: 10px;
	background: var(--oh-primary-light, #e5f4fa);
	color: inherit;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oh-icon-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	color: inherit;
}

.oh-icon-box--top {
	flex-direction: column;
	text-align: center;
	align-items: center;
}

.oh-icon-box--left {
	flex-direction: row;
	align-items: flex-start;
}

.oh-icon-box__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--oh-primary, #0087bf);
	color: #fff;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.oh-icon-box__title {
	margin: 0 0 0.5rem;
	font-family: var(--oh-font-heading, inherit);
	font-size: 1.25rem;
	color: var(--oh-primary-dark, #006994);
}

.oh-icon-box__desc {
	margin: 0;
	opacity: 0.85;
	line-height: 1.6;
}

/* Title */
.oh-title {
	margin: 0;
}

.oh-title__heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.oh-title__inner {
	position: relative;
	display: inline-block;
}

.oh-title__label {
	position: relative;
	z-index: 1;
	display: inline-block;
}

.oh-title__highlighter {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 0;
	width: 108%;
	height: 0.42em;
	transform: translateX(-50%);
	background-color: #0087bf40;
	pointer-events: none;
}

/* Section Heading */
.oh-section-heading {
	max-width: var(--oh-container, 1200px);
	margin: 0 auto;
}

.oh-section-heading--left {
	text-align: left;
}

.oh-section-heading--center {
	text-align: center;
}

.oh-section-heading--right {
	text-align: right;
}

.oh-section-heading__tagline {
	display: inline-block;
	margin-bottom: 0.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	background: var(--oh-primary-light, #e5f4fa);
	color: var(--oh-primary, #0087bf);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.oh-section-heading__title {
	margin: 0 0 0.75rem;
	font-family: var(--oh-font-heading, inherit);
	color: var(--oh-primary-dark, #006994);
	line-height: 1.2;
}

.oh-section-heading__desc {
	margin: 0 auto;
	max-width: 42rem;
	opacity: 0.85;
	line-height: 1.7;
}

/* Shared carousel arrow ---------------------------------------------------
   Every slider uses the same chevron and weight; the per-widget rules below
   only adjust size, colour and placement. */
.oh-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.oh-arrow .oh-arrow__glyph {
	display: block;
	width: auto;
	height: 1em;
}

/* The hero slider sizes its chevron through Elementor controls on
   `.oh-aktuelles__arrow svg`, so let those keep control there. */
.oh-aktuelles__arrow .oh-arrow__glyph {
	height: auto;
}

.oh-arrow .oh-arrow__glyph path {
	stroke-width: 2;
}

.oh-arrow:hover {
	opacity: 0.65;
}

/* No ring on click - only when reached by keyboard. */
.oh-arrow:focus {
	outline: none;
}

.oh-arrow:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.oh-arrow {
		transition: none;
	}
}

/* Aktuelles Slider */
.oh-aktuelles {
	position: relative;
	overflow: hidden;
}

.oh-aktuelles__track {
	display: flex;
	align-items: stretch;
	width: 100%;
	transition: transform 0.35s ease;
	will-change: transform;
}

.oh-aktuelles__slide {
	display: flex;
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	min-height: var(--oh-aktuelles-min-height, 420px);
	text-decoration: none;
	color: inherit;
}

.oh-aktuelles__slide:hover {
	color: inherit;
}

.oh-aktuelles__panel,
.oh-aktuelles__media {
	min-height: var(--oh-aktuelles-min-height, 420px);
}

.oh-aktuelles__panel {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	width: var(--oh-aktuelles-panel-width, 50%);
	background: var(--oh-primary, #0087bf);
	color: #fff;
}

.oh-aktuelles__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 475px;
	box-sizing: border-box;
}

.oh-aktuelles__kicker {
	margin: 0 0 2rem;
	font-family: "LEMON MILK", sans-serif;
	font-size: clamp(1.5rem, 2.3vw, 2.5rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #fff;
}

.oh-aktuelles__title {
	margin: 0 0 1.25rem;
	color: #fff;
	font-family: "LEMON MILK", sans-serif;
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
}

.oh-aktuelles__text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--oh-aktuelles-lines, 6);
	overflow: hidden;
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.95);
}

.oh-aktuelles__text p {
	display: inline;
	margin: 0;
	font-family: inherit;
	font-size: 17px;
	font-weight: 400;
	line-height: inherit;
	letter-spacing: 0;
}

.oh-aktuelles__text p + p::before {
	content: " ";
}

.oh-aktuelles__text strong,
.oh-aktuelles__text b {
	font-family: inherit;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}

.oh-aktuelles__more {
	margin-top: 1.25rem;
	font-family: "Poppins", sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.oh-aktuelles__media {
	position: relative;
	align-self: stretch;
	width: calc(100% - var(--oh-aktuelles-panel-width, 50%));
	overflow: hidden;
	background: #d9d9d9;
}

.oh-aktuelles__media img,
.elementor .oh-aktuelles__media img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}

.oh-aktuelles__media--left img,
.elementor .oh-aktuelles__media--left img {
	object-position: left center !important;
}

.oh-aktuelles__media--right img,
.elementor .oh-aktuelles__media--right img {
	object-position: right center !important;
}

.oh-aktuelles__media--top img,
.elementor .oh-aktuelles__media--top img {
	object-position: center top !important;
}

.oh-aktuelles__media--bottom img,
.elementor .oh-aktuelles__media--bottom img {
	object-position: center bottom !important;
}

.oh-aktuelles__media--center img,
.elementor .oh-aktuelles__media--center img {
	object-position: center center !important;
}

.oh-aktuelles__nav {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

@media (max-width: 1024px) {
	.oh-aktuelles__nav {
		width: 100%;
		right: auto;
		bottom: auto;
	}
}

.oh-aktuelles__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #fff;
	font-size: 3rem;
	font-weight: 300;
	line-height: 1;
	appearance: none;
	-webkit-appearance: none;
	transform: translateY(-50%);
	cursor: pointer;
	pointer-events: auto;
}

.oh-aktuelles__arrow span {
	display: block;
	line-height: 1;
}

.oh-aktuelles__arrow svg {
	display: block;
	width: 20px !important;
	height: 34px !important;
}

.oh-aktuelles__arrow svg path {
	stroke-width: 6 !important;
}

.oh-aktuelles__arrow--prev {
	left: 45px !important;
}

.oh-aktuelles__arrow--next {
	right: 45px !important;
}

.oh-aktuelles__arrow:hover,
.oh-aktuelles__arrow:focus,
.oh-aktuelles__arrow:active,
.oh-aktuelles__arrow:focus-visible {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #fff;
	opacity: 1;
	outline: none;
}

/* Aktuelle Slider */
.oh-aktuelle-slider-section {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #0087bf0d;
	padding: 3rem 2.5rem;
	box-sizing: border-box;
}

.oh-aktuelle-slider {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	box-sizing: border-box;
}

.oh-aktuelle-slider__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-inline: 0.5rem;
}

.oh-aktuelle-slider__heading {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	text-align: center;
}

.oh-aktuelle-slider__title {
	margin: 0;
	color: #0087bf;
	font-family: "LEMON MILK", sans-serif;
	font-size: clamp(1.25rem, 2vw, 2rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.oh-aktuelle-slider__underline {
	display: block;
	width: 20%;
	height: 3px;
	margin-top: 0.75rem;
	background-color: #0087bf;
}

.oh-aktuelle-slider__arrow,
.oh-aktuelle-slider__arrow-spacer {
	flex: 0 0 auto;
	width: 2rem;
}

.oh-aktuelle-slider__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #0087bf;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.oh-aktuelle-slider__arrow svg {
	display: block;
	width: 16px;
	height: 28px;
}

.oh-aktuelle-slider__arrow svg path {
	stroke-width: 1.75;
}

.oh-aktuelle-slider__arrow:hover,
.oh-aktuelle-slider__arrow:focus,
.oh-aktuelle-slider__arrow:active,
.oh-aktuelle-slider__arrow:focus-visible {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #0087bf;
	opacity: 0.75;
	outline: none;
}

.oh-aktuelle-slider__viewport {
	overflow: hidden;
	margin-top: 2.5rem;
}

.oh-aktuelle-slider__track {
	display: flex;
	transition: transform 0.35s ease;
	will-change: transform;
}

.oh-aktuelle-slider__slide {
	display: flex;
	align-items: stretch;
	flex: 0 0 100%;
	min-width: 100%;
	gap: 2.5rem;
	text-decoration: none;
	color: inherit;
}

.oh-aktuelle-slider__slide:hover {
	color: inherit;
}

.oh-aktuelle-slider__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 50%;
	width: 50%;
	min-width: 0;
}

.oh-aktuelle-slider__content-inner {
	width: 100%;
	max-width: 100%;
}

.oh-aktuelle-slider__slide-title {
	margin: 0 0 1.5rem;
	color: #0087bf;
	font-family: "Poppins", sans-serif;
	font-size: clamp(1.125rem, 1.6vw, 1.5rem);
	font-weight: 600;
	line-height: 1.3;
}

.oh-aktuelle-slider__text {
	margin: 0;
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5;
}

.oh-aktuelle-slider__text p {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.oh-aktuelle-slider__text p + p {
	margin-top: 1rem;
}

.oh-aktuelle-slider__media {
	flex: 0 0 50%;
	width: 50%;
	min-width: 0;
	overflow: hidden;
	border-radius: var(--oh-aktuelle-slider-image-radius, 14px);
	isolation: isolate;
}

.oh-widget.oh-aktuelle-slider .oh-aktuelle-slider__media,
.elementor-widget-oh-aktuelle-slider .oh-aktuelle-slider__media {
	overflow: hidden;
	border-radius: var(--oh-aktuelle-slider-image-radius, 14px);
}

.oh-aktuelle-slider__media img,
.oh-widget.oh-aktuelle-slider .oh-aktuelle-slider__media img,
.elementor-widget-oh-aktuelle-slider .oh-aktuelle-slider__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	border-radius: var(--oh-aktuelle-slider-image-radius, 14px);
	object-fit: cover;
}

@media (max-width: 1024px) {
	.oh-aktuelle-slider__slide {
		flex-direction: column;
		gap: 1.5rem;
	}

	.oh-aktuelle-slider__content,
	.oh-widget.oh-aktuelle-slider .oh-aktuelle-slider__content,
	.elementor-widget-oh-aktuelle-slider .oh-aktuelle-slider__content,
	.oh-aktuelle-slider__media,
	.oh-widget.oh-aktuelle-slider .oh-aktuelle-slider__media,
	.elementor-widget-oh-aktuelle-slider .oh-aktuelle-slider__media {
		width: 100% !important;
		flex: 0 0 auto !important;
		max-width: 100% !important;
	}

	.oh-aktuelle-slider__content-inner {
		max-width: 100% !important;
	}

	.oh-aktuelle-slider__media img,
	.oh-widget.oh-aktuelle-slider .oh-aktuelle-slider__media img,
	.elementor-widget-oh-aktuelle-slider .oh-aktuelle-slider__media img {
		height: auto;
		min-height: 220px;
	}
}

/* CTA Banner */
.oh-cta-banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 2.5rem;
	border-radius: 14px;
}

.oh-cta-banner--primary {
	background: linear-gradient(135deg, var(--oh-primary, #0087bf), var(--oh-primary-dark, #006994));
	color: #fff;
}

.oh-cta-banner--dark {
	background: #1a1a1a;
	color: #fff;
}

.oh-cta-banner--light {
	background: var(--oh-primary-light, #e5f4fa);
	color: var(--oh-primary-dark, #006994);
}

.oh-cta-banner__title {
	margin: 0 0 0.5rem;
	font-family: var(--oh-font-heading, inherit);
	font-size: 1.75rem;
	line-height: 1.2;
}

.oh-cta-banner__desc {
	margin: 0;
	opacity: 0.9;
	line-height: 1.6;
	max-width: 36rem;
}

.oh-cta-banner__button {
	display: inline-flex;
	padding: 0.875rem 1.75rem;
	border-radius: 6px;
	background: #fff;
	color: var(--oh-primary-dark, #006994);
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oh-cta-banner--light .oh-cta-banner__button {
	background: var(--oh-primary, #0087bf);
	color: #fff;
}

.oh-cta-banner__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
	color: inherit;
}

.oh-cta-banner--light .oh-cta-banner__button:hover {
	color: #fff;
}

@media (max-width: 1024px) {
	/* Each stacked slide keeps its own height, so the script can size the
	   track to whichever one is on screen. */
	.oh-aktuelles__track {
		align-items: flex-start;
	}

	.oh-aktuelles__slide {
		flex-direction: column;
		align-self: flex-start;
		height: auto;
		min-height: 0;
	}

	.oh-aktuelles__panel,
	.oh-aktuelles__media,
	.elementor-widget-oh-aktuelles .oh-aktuelles__panel,
	.elementor-widget-oh-aktuelles .oh-aktuelles__media {
		width: 100% !important;
		flex: 0 0 auto !important;
		max-width: 100% !important;
		min-height: auto;
	}

	.oh-aktuelles__panel {
		position: relative;
	}

	.oh-aktuelles__inner,
	.elementor-widget-oh-aktuelles .oh-aktuelles__inner {
		max-width: 100% !important;
		padding: 2.5rem 2rem 2.5rem 3.5rem !important;
	}

	.oh-aktuelles__kicker,
	.elementor-widget-oh-aktuelles .oh-aktuelles__kicker {
		margin-bottom: 1.5rem !important;
		font-size: clamp(1.25rem, 4vw, 1.75rem) !important;
	}

	.oh-aktuelles__title,
	.elementor-widget-oh-aktuelles .oh-aktuelles__title {
		margin-bottom: 0.875rem !important;
		font-size: clamp(1.125rem, 3.5vw, 1.5rem) !important;
		line-height: 1.2 !important;
	}

	.oh-aktuelles__text,
	.oh-aktuelles__text p,
	.elementor-widget-oh-aktuelles .oh-aktuelles__text,
	.elementor-widget-oh-aktuelles .oh-aktuelles__text p {
		font-size: 16px !important;
		line-height: 1.45 !important;
	}

	.oh-aktuelles__text p + p,
	.elementor-widget-oh-aktuelles .oh-aktuelles__text p + p {
		margin-top: 0 !important;
	}

	.oh-aktuelles__media,
	.elementor-widget-oh-aktuelles .oh-aktuelles__media {
		min-height: 240px !important;
		height: auto !important;
		aspect-ratio: 16 / 10;
	}

	.oh-aktuelles__media img,
	.elementor .oh-aktuelles__media img {
		position: absolute;
		inset: 0;
		width: 100% !important;
		height: 100% !important;
		min-height: 0;
		max-width: none !important;
		object-fit: cover;
	}

	.oh-aktuelles__arrow {
		top: var(--oh-aktuelles-arrow-top, 2.5rem);
		transform: none;
	}

	.oh-aktuelles__arrow svg {
		width: 19px !important;
		height: 32px !important;
	}

	.oh-aktuelles__arrow--prev {
		left: 24px !important;
	}

	.oh-aktuelles__arrow--next {
		right: 24px !important;
	}
}

@media (max-width: 767px) {
	.oh-aktuelles__inner,
	.elementor-widget-oh-aktuelles .oh-aktuelles__inner {
		padding: 1.75rem 1.25rem 1.75rem 2.5rem !important;
	}

	.oh-aktuelles__kicker,
	.elementor-widget-oh-aktuelles .oh-aktuelles__kicker {
		margin-bottom: 1rem !important;
		font-size: clamp(1.125rem, 5vw, 1.5rem) !important;
	}

	.oh-aktuelles__title,
	.elementor-widget-oh-aktuelles .oh-aktuelles__title {
		margin-bottom: 0.625rem !important;
		font-size: clamp(1rem, 4.5vw, 1.25rem) !important;
	}

	.oh-aktuelles__text,
	.oh-aktuelles__text p,
	.elementor-widget-oh-aktuelles .oh-aktuelles__text,
	.elementor-widget-oh-aktuelles .oh-aktuelles__text p {
		font-size: 15px !important;
		line-height: 1.5 !important;
	}

	.oh-aktuelles__text p + p,
	.elementor-widget-oh-aktuelles .oh-aktuelles__text p + p {
		margin-top: 0 !important;
	}

	.oh-aktuelles__media,
	.elementor-widget-oh-aktuelles .oh-aktuelles__media {
		min-height: 200px !important;
	}

	.oh-aktuelles__arrow {
		top: var(--oh-aktuelles-arrow-top, 1.75rem);
	}

	.oh-aktuelles__arrow svg {
		width: 16px !important;
		height: 28px !important;
	}

	.oh-aktuelles__arrow--prev {
		left: 16px !important;
	}

	.oh-aktuelles__arrow--next {
		right: 16px !important;
	}

	.oh-aktuelle-slider-section {
		padding: 2rem 1.25rem;
	}

	.oh-aktuelle-slider__header {
		padding-inline: 0;
	}

	.oh-aktuelle-slider__slide {
		gap: 1.25rem;
	}

	.oh-aktuelle-slider__media img,
	.oh-widget.oh-aktuelle-slider .oh-aktuelle-slider__media img,
	.elementor-widget-oh-aktuelle-slider .oh-aktuelle-slider__media img {
		min-height: 200px;
	}

	.oh-cta-banner {
		flex-direction: column;
		text-align: center;
	}

	.oh-cta-banner__desc {
		margin-inline: auto;
	}

	.oh-instagram-feed__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Instagram Feed */
.oh-instagram-feed__grid {
	display: grid;
	grid-template-columns: repeat(var(--oh-instagram-cols, 4), minmax(0, 1fr));
	gap: 12px;
}

.oh-instagram-feed__item {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--oh-primary-light, #e5f4fa);
	text-decoration: none;
}

.oh-instagram-feed__item img,
.oh-instagram-feed__placeholder {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.oh-instagram-feed__placeholder {
	background: linear-gradient(135deg, var(--oh-primary-light, #e5f4fa), #d4ebf5);
}

.oh-instagram-feed__item:hover img {
	transform: scale(1.03);
}

.oh-instagram-feed__icon {
	position: absolute;
	pointer-events: none;
	color: #fff;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.oh-instagram-feed__icon--video {
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.oh-instagram-feed__icon--video svg {
	width: 48px;
	height: 48px;
	opacity: 0.92;
}

.oh-instagram-feed__icon--carousel {
	top: 10px;
	right: 10px;
}

.oh-instagram-feed__icon--carousel svg {
	width: 22px;
	height: 22px;
}

.oh-instagram-feed__notice {
	margin: 0 0 12px;
	padding: 0.65rem 0.85rem;
	border-radius: 6px;
	background: var(--oh-primary-light, #e5f4fa);
	color: var(--oh-primary-dark, #006994);
	font-size: 0.85rem;
	line-height: 1.4;
}

.oh-instagram-feed--placeholder .oh-instagram-feed__item {
	cursor: default;
}

.oh-instagram-feed--placeholder .oh-instagram-feed__item:hover img {
	opacity: 1;
	transform: none;
}

/* Studiengangsvertretung */
.oh-studiengangsvertretung__grid {
	display: grid;
	grid-template-columns: repeat(var(--oh-sv-cols, 4), minmax(0, 1fr));
	column-gap: 24px;
	row-gap: 80px;
	padding-top: calc(var(--oh-sv-badge, 148px) / 2 + 4px);
	justify-items: center;
}

.oh-studiengangsvertretung__card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 278px;
	max-width: 100%;
	min-width: 0;
	height: 280px;
	overflow: visible;
}

.oh-studiengangsvertretung__badge {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 148px;
	height: 148px;
	padding: 12px;
	border-radius: 50%;
	background: #fff;
	border: 8px solid #0087bf;
	overflow: hidden;
	transform: translate(-50%, -50%);
}

.oh-studiengangsvertretung__badge-text {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-wrap: anywhere;
	word-break: break-word;
	font-family: "LEMON MILK", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #0087bf;
}

.oh-studiengangsvertretung__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: calc(var(--oh-sv-badge, 148px) / 2 + 16px) 16px 20px;
	border-radius: 14px;
	background: #0087bf;
	color: #fff;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.4;
	text-align: center;
}

.oh-studiengangsvertretung__program {
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.oh-studiengangsvertretung__contact {
	margin-top: 1rem;
	min-width: 0;
	flex-shrink: 0;
}

.oh-studiengangsvertretung__name {
	margin: 0 0 0.25rem;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.oh-studiengangsvertretung__email {
	display: block;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
	color: #fff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.oh-studiengangsvertretung__email:hover {
	opacity: 0.85;
	color: #fff;
}

@media (max-width: 767px) {
	.oh-studiengangsvertretung__grid {
		padding-top: 52px;
	}

	.oh-studiengangsvertretung__badge {
		width: 104px;
		height: 104px;
		padding: 8px;
		border-width: 6px;
	}

	.oh-studiengangsvertretung__body {
		padding: 68px 14px 16px;
		font-size: 15px;
		line-height: 1.45;
	}

	.oh-studiengangsvertretung__program {
		font-size: 16px;
		line-height: 1.45;
	}

	.oh-studiengangsvertretung__name,
	.oh-studiengangsvertretung__email {
		font-size: 15px;
	}

	.oh-studiengangsvertretung__contact {
		margin-top: 0.75rem;
	}
}

/* Referate */
.oh-referate {
	--oh-referate-peek: 56px;
	--oh-referate-slider-gap: 16px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.oh-referate__scroller {
	width: 100%;
	max-width: 100%;
	container-type: inline-size;
	container-name: oh-referate;
}

.oh-referate__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 24px;
	row-gap: 32px;
}

.oh-referate__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	flex: 0 1 calc((100% - (var(--oh-referate-cols, 3) - 1) * 24px) / var(--oh-referate-cols, 3));
	width: 100%;
	max-width: 360px;
	min-width: 0;
	min-height: var(--oh-referate-card-min-height, 320px);
	padding: 24px 20px;
	border-radius: 14px;
	background: #0087bf33;
	text-align: center;
}

.oh-referate__title {
	margin: 0 0 12px;
	flex-shrink: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	color: #0087bf;
}

.oh-referate__description {
	margin: 0 0 16px;
	flex-shrink: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	color: #000;
}

.oh-referate__image,
.oh-widget.oh-referate .oh-referate__image,
.elementor-widget-oh-referate .oh-referate__image {
	--oh-referate-image-width: min(100%, max(120px, calc(var(--oh-referate-card-min-height, 320px) * 0.42)));
	--oh-referate-image-height: min(100%, max(120px, calc(var(--oh-referate-card-min-height, 320px) * 0.42)));
	position: relative;
	flex: 0 0 auto;
	align-self: center;
	width: var(--oh-referate-image-width);
	height: var(--oh-referate-image-height);
	min-height: var(--oh-referate-image-height);
	max-width: 100%;
	margin: 0 0 16px;
	border-radius: 14px;
	overflow: hidden;
}

.oh-referate__image--placeholder {
	background: #56f478;
}

.oh-referate__image img,
.oh-referate__image .oh-referate__photo,
.oh-widget.oh-referate .oh-referate__image img,
.oh-widget.oh-referate .oh-referate__image .oh-referate__photo,
.elementor-widget-oh-referate .oh-referate__image img,
.elementor-widget-oh-referate .oh-referate__image .oh-referate__photo {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	border-radius: 14px;
}

.oh-referate__contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 100%;
	margin-top: auto;
	gap: 10px;
}

.oh-referate__people {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	min-width: 0;
}

.oh-referate__people-viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.oh-referate__people-track {
	display: flex;
	transition: transform 0.35s ease;
}

.oh-referate__person {
	display: flex;
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.oh-referate__people-arrow {
	flex: 0 0 auto;
	width: 1.5rem;
	color: #0087bf;
	font-size: 1rem;
}

.oh-referate__role {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	text-align: center;
	color: #000;
	opacity: 0.75;
}

.oh-referate__dots {
	display: flex;
	justify-content: center;
	gap: 6px;
}

.oh-referate__dot {
	appearance: none;
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #0087bf;
	opacity: 0.3;
	cursor: pointer;
	transition: opacity 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.oh-referate__dot.is-active {
	opacity: 1;
}

.oh-referate__dot:focus {
	outline: none;
}

.oh-referate__dot:focus-visible {
	outline: 2px solid #0087bf;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.oh-referate__people-track {
		transition: none;
	}
}

.oh-referate__name {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #000;
}

.oh-referate__email {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #0087bf;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.oh-referate__email:hover {
	opacity: 0.75;
	color: #0087bf;
}

@media (max-width: 1024px) {
	.elementor-widget-oh-referate .elementor-widget-container,
	.elementor-element:has(> .elementor-widget-container > .oh-referate),
	.elementor-element:has(.oh-referate) {
		overflow: hidden;
		max-width: 100%;
	}

	.oh-referate__scroller {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		overscroll-behavior-x: contain;
		overscroll-behavior-y: auto;
		touch-action: pan-x pan-y pinch-zoom;
		scrollbar-width: none;
	}

	.oh-referate__scroller::-webkit-scrollbar {
		display: none;
	}

	.oh-referate__grid {
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
		width: max-content;
		min-width: 100%;
		row-gap: 0;
		column-gap: var(--oh-referate-slider-gap, 16px);
		padding-inline-end: var(--oh-referate-peek, 56px);
	}

	.oh-referate__card {
		flex: 0 0 calc(100% - var(--oh-referate-peek, 56px));
		flex: 0 0 var(
			--oh-referate-slide-width,
			calc(100cqw - var(--oh-referate-peek, 56px))
		);
		width: calc(100% - var(--oh-referate-peek, 56px));
		width: var(
			--oh-referate-slide-width,
			calc(100cqw - var(--oh-referate-peek, 56px))
		);
		max-width: none;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}
}

@media (max-width: 767px) {
	.oh-referate__card {
		padding: 20px 16px;
	}

	.oh-referate__title {
		font-size: 18px;
	}

	.oh-referate__description,
	.oh-referate__name,
	.oh-referate__email {
		font-size: 14px;
	}
}

/* Vorsitz */
.oh-vorsitz {
	max-width: 100%;
}

.oh-vorsitz__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 24px;
	row-gap: 32px;
}

.oh-vorsitz__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	flex: 0 1 calc((100% - (var(--oh-vorsitz-cols, 3) - 1) * 24px) / var(--oh-vorsitz-cols, 3));
	width: 100%;
	max-width: 280px;
	min-width: 0;
	text-align: center;
}

.oh-vorsitz__image,
.oh-widget.oh-vorsitz .oh-vorsitz__image,
.elementor-widget-oh-vorsitz .oh-vorsitz__image {
	--oh-vorsitz-image-width: 280px;
	--oh-vorsitz-image-height: 280px;
	--oh-vorsitz-aspect-w: 280;
	--oh-vorsitz-aspect-h: 280;
	position: relative;
	flex: 0 0 auto;
	width: min(100%, var(--oh-vorsitz-image-width));
	height: var(--oh-vorsitz-image-height);
	min-height: var(--oh-vorsitz-image-height);
	max-width: 100%;
	margin: 0 0 12px;
	border-radius: 14px;
	overflow: hidden;
}

@media (max-width: 767px) {
	.oh-vorsitz__image,
	.oh-widget.oh-vorsitz .oh-vorsitz__image,
	.elementor-widget-oh-vorsitz .oh-vorsitz__image {
		width: min(100%, var(--oh-vorsitz-image-width));
		max-width: 100%;
	}
}

.oh-vorsitz__image--placeholder {
	background: #56f478;
}

.oh-vorsitz__image img,
.oh-vorsitz__image .oh-vorsitz__photo,
.oh-widget.oh-vorsitz .oh-vorsitz__image img,
.oh-widget.oh-vorsitz .oh-vorsitz__image .oh-vorsitz__photo,
.elementor-widget-oh-vorsitz .oh-vorsitz__image img,
.elementor-widget-oh-vorsitz .oh-vorsitz__image .oh-vorsitz__photo {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	border-radius: 14px;
}

.oh-vorsitz__name {
	margin: 0 0 4px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #000;
}

.oh-vorsitz__position {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #000;
}

.oh-vorsitz__email {
	margin: 4px 0 0;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	color: #0087bf;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.oh-vorsitz__email:hover {
	opacity: 0.75;
	color: #0087bf;
}

@media (max-width: 767px) {
	.oh-vorsitz__card {
		max-width: 100%;
	}
}

/* Services */
.oh-services__grid {
	display: grid;
	grid-template-columns: repeat(var(--oh-services-cols, 4), minmax(0, 1fr));
	justify-items: stretch;
	gap: 24px;
}

.oh-services__card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: var(--oh-services-card-width, 100%);
	max-width: 100%;
	height: var(--oh-services-card-height, auto);
	min-height: var(--oh-services-card-min-height, 240px);
	padding: 24px 16px;
	border: 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	text-decoration: none;
	color: inherit;
	justify-self: center;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	font: inherit;
	transition: box-shadow 0.35s ease;
}

.oh-services__card:hover {
	color: inherit;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.oh-services__bg {
	position: absolute;
	inset: 0;
	background-color: #f5f8fb;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transition: transform 0.35s ease;
}

.oh-services__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(232, 242, 250, 0.88);
	transition: background-color 0.35s ease;
}

.oh-services__card:hover .oh-services__overlay {
	background-color: rgba(232, 242, 250, 0.45);
}

.oh-services__card:hover .oh-services__bg {
	transform: scale(1.04);
}

.oh-services__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 100%;
	text-align: center;
}

.oh-services__title {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	overflow-wrap: anywhere;
	hyphens: auto;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
}

.oh-services__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 20px;
	border-radius: 999px;
	background: var(--oh-primary, #0087bf);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
}

.oh-services__modals {
	display: contents;
}

.oh-services-popup-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1000009;
	background: rgba(0, 0, 0, 0.4);
}

.oh-services-popup-backdrop[hidden] {
	display: none;
}

.oh-services-popup {
	position: fixed;
	inset: 0;
	z-index: 1000010;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	pointer-events: none;
}

.oh-services-popup[hidden] {
	display: none;
}

.oh-services-popup__overlay {
	position: absolute;
	inset: 0;
	background: transparent;
	pointer-events: auto;
}

.oh-services-popup__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: min(1200px, 100%);
	max-height: calc(100vh - 48px);
	padding: 48px;
	border: 0;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	overflow-y: auto;
	pointer-events: auto;
}

.oh-services-popup__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--oh-primary, #0087bf);
	cursor: pointer;
}

.oh-services-popup__close svg {
	display: block;
	width: 36px;
	height: 36px;
}

.oh-services-popup__close:hover,
.oh-services-popup__close:focus,
.oh-services-popup__close:active {
	background: transparent;
	color: var(--oh-primary, #0087bf);
	opacity: 1;
	outline: none;
	box-shadow: none;
}

.oh-services-popup__title {
	margin: 0 0 28px;
	padding-right: 60px;
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--oh-primary, #0087bf);
}

.oh-services-popup__sections {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.oh-services-popup__section {
	padding-left: 0;
}

.oh-services-popup__section-heading {
	margin: 0 0 16px;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--oh-primary, #0087bf);
}

.oh-services-popup__section-body {
	display: grid;
	grid-template-columns: 3px minmax(0, 1fr);
	column-gap: 21px;
	align-items: stretch;
}

.oh-services-popup__section-line {
	display: block;
	width: 3px;
	min-height: 100%;
	align-self: stretch;
	background-color: var(--oh-primary, #0087bf);
}

.oh-services-popup__section-content {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: #333;
	min-width: 0;
}

.oh-services-popup__section-content p {
	margin: 0 0 16px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.oh-services-popup__section-content p:last-child {
	margin-bottom: 0;
}

.oh-services-popup__section-content strong,
.oh-services-popup__section-content b {
	font-weight: 700;
}

.oh-services-popup__section-content a {
	color: inherit;
	text-decoration: underline;
}

body.oh-services-popup-open {
	overflow: hidden;
}

body.oh-services-popup-open #masthead.site-header {
	z-index: 1;
}

@media (max-width: 1024px) {
	.oh-services__grid {
		gap: 20px;
	}

	.oh-services__card {
		width: 100%;
		min-height: var(--oh-services-card-min-height, 220px);
		height: var(--oh-services-card-height, auto);
	}

	.oh-services__title {
		font-size: 19px;
	}

	.oh-services__button {
		font-size: 15px;
		padding: 8px 18px;
	}

	.oh-services-popup {
		padding: 20px;
	}

	.oh-services-popup__dialog {
		max-height: calc(100vh - 40px);
		max-height: calc(100dvh - 40px);
	}

	.oh-services-popup__title {
		margin-bottom: 24px;
		font-size: 24px;
	}

	.oh-services-popup__sections {
		gap: 24px;
	}

	.oh-services-popup__section-heading {
		font-size: 19px;
	}

	.oh-services-popup__section-content {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.oh-services__grid {
		gap: 16px;
	}

	.oh-services__card {
		width: 100%;
		max-width: 100%;
		justify-self: stretch;
		min-height: var(--oh-services-card-min-height, 200px);
		height: var(--oh-services-card-height, auto);
		padding: 20px 14px;
		border-radius: 14px;
	}

	.oh-services__content {
		gap: 12px;
	}

	.oh-services__title {
		font-size: 20px;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.oh-services__button {
		font-size: 14px;
		padding: 8px 16px;
		max-width: 100%;
		white-space: normal;
		text-align: center;
	}

	.oh-services-popup {
		align-items: center;
		padding: 12px;
	}

	.oh-services-popup__dialog {
		width: 100%;
		max-height: calc(100vh - 24px);
		max-height: calc(100dvh - 24px);
		-webkit-overflow-scrolling: touch;
	}

	.oh-services-popup__close {
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
	}

	.oh-services-popup__close svg {
		width: 24px;
		height: 24px;
	}

	.oh-services-popup__title {
		margin-bottom: 20px;
		padding-right: 40px;
		font-size: 20px;
		line-height: 1.25;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.oh-services-popup__sections {
		gap: 20px;
	}

	.oh-services-popup__section {
		padding-left: 0;
	}

	.oh-services-popup__section-heading {
		margin-bottom: 12px;
		font-size: 18px;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.oh-services-popup__section-body {
		grid-template-columns: 2px minmax(0, 1fr);
		column-gap: 14px;
	}

	.oh-services-popup__section-line {
		width: 2px;
	}

	.oh-services-popup__section-content {
		font-size: 14px;
		line-height: 1.55;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.oh-services-popup__section-content p {
		margin-bottom: 14px;
	}
}

/* OH Event */
.oh-event {
	--oh-event-image-max-width: 575px;
	--oh-event-image-ratio: 575 / 322;
	--oh-event-image-radius: 18px;
	max-width: 100%;
	overflow: visible;
}

.elementor-widget-oh-event,
.elementor-widget-oh-event .elementor-widget-container {
	overflow: visible;
}

.elementor-element:has(.oh-event) {
	overflow: visible;
}

.oh-event__list {
	display: flex;
	flex-direction: column;
}

.oh-event__item {
	display: grid;
	grid-template-columns: minmax(56px, 72px) minmax(0, var(--oh-event-image-max-width)) minmax(0, 1fr);
	column-gap: clamp(16px, 3vw, 40px);
	align-items: stretch;
	padding: 32px 0;
	border-bottom: 1px solid var(--oh-primary, #0087bf);
}

.oh-event__item--no-date {
	grid-template-columns: minmax(0, var(--oh-event-image-max-width)) minmax(0, 1fr);
}

.oh-event__item--no-media {
	grid-template-columns: minmax(56px, 72px) minmax(0, 1fr);
}

.oh-event__item--no-date.oh-event__item--no-media {
	grid-template-columns: minmax(0, 1fr);
}

.oh-event__item:last-child {
	border-bottom: none;
}

.oh-event__date {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: start;
	color: var(--oh-primary, #0087bf);
	line-height: 1;
}

.oh-event__month {
	font-family: "LEMON MILK", sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.oh-event__date-line {
	display: block;
	width: 36px;
	height: 2px;
	margin: 8px 0 10px;
	background-color: currentColor;
}

.oh-event__day {
	font-family: "LEMON MILK", sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 0.95;
}

.oh-event__media {
	flex-shrink: 0;
	width: 100%;
	max-width: var(--oh-event-image-max-width);
	aspect-ratio: var(--oh-event-image-ratio);
	height: auto;
	min-width: 0;
	overflow: hidden;
	border-radius: var(--oh-event-image-radius);
	background: #e5f4fa;
}

.oh-event__media--placeholder {
	background: linear-gradient(135deg, #e5f4fa 0%, #cce8f4 100%);
}

.oh-event__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.oh-event__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	min-width: 0;
	min-height: 0;
	height: 100%;
	font-family: 'Poppins', sans-serif;
}

.oh-event__title {
	margin: 0 0 12px;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(18px, 2vw, 20px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--oh-primary, #0087bf);
	overflow-wrap: anywhere;
}

.oh-event__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 14px;
	padding: 4px 2px;
}

.oh-event__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	flex: 0 0 auto;
	width: 132px;
	height: 40px;
	padding: 0 12px;
	border: none;
	border-radius: 38px;
	background: #fff;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	color: #333;
	text-align: center;
	white-space: nowrap;
}

.oh-event__description {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(13px, 1.6vw, 14px);
	font-weight: 400;
	line-height: 1.55;
	color: #333;
	overflow-wrap: anywhere;
}

.oh-event__actions {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin-top: auto;
	padding-top: 16px;
}

.oh-event__button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--oh-primary, #0087bf);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.oh-event__button:hover {
	background: var(--oh-primary-dark, #006994);
	color: #fff;
}

.oh-event__button-icon {
	display: inline-flex;
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 1024px) {
	.oh-event__item {
		grid-template-columns: minmax(48px, 64px) minmax(0, min(575px, 42vw)) minmax(0, 1fr);
		column-gap: clamp(12px, 2.5vw, 24px);
		padding: 28px 0;
	}

	.oh-event__item--no-date {
		grid-template-columns: minmax(0, min(575px, 42vw)) minmax(0, 1fr);
	}

	.oh-event__item--no-media {
		grid-template-columns: minmax(48px, 64px) minmax(0, 1fr);
	}

	.oh-event__item--no-date.oh-event__item--no-media {
		grid-template-columns: minmax(0, 1fr);
	}

	.oh-event__day {
		font-size: 40px;
	}

	.oh-event__month {
		font-size: 16px;
	}

	.oh-event__meta {
		flex-wrap: wrap;
		gap: 12px;
		width: 100%;
	}

	.oh-event__badge {
		width: 140px;
		height: 44px;
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.oh-event {
		overflow: visible;
		padding-inline: 4px;
	}

	.oh-event__item {
		grid-template-columns: 1fr;
		grid-template-areas:
			"date"
			"media"
			"content";
		row-gap: 16px;
		column-gap: 0;
		padding: 24px 0;
	}

	.oh-event__item--no-date {
		grid-template-areas:
			"media"
			"content";
	}

	.oh-event__item--no-media {
		grid-template-areas:
			"date"
			"content";
	}

	.oh-event__item--no-date.oh-event__item--no-media {
		grid-template-areas: "content";
	}

	.oh-event__date {
		grid-area: date;
		flex-direction: row;
		align-items: center;
		gap: 12px;
	}

	.oh-event__date-line {
		width: 2px;
		height: 36px;
		margin: 0;
	}

	.oh-event__day {
		font-size: 36px;
	}

	.oh-event__month {
		font-size: 16px;
	}

	.oh-event__media {
		grid-area: media;
		width: 100%;
		max-width: none;
	}

	.oh-event__content {
		grid-area: content;
		min-height: 0;
		height: auto;
	}

	.oh-event__actions {
		margin-top: 0;
		padding-top: 20px;
	}

	.oh-event__meta {
		margin-bottom: 12px;
		flex-wrap: wrap;
		gap: 12px;
		width: 100%;
		padding: 6px 4px;
	}

	.oh-event__badge {
		flex: 1 1 calc(50% - 12px);
		width: auto;
		min-width: 0;
		max-width: 100%;
		height: 46px;
		padding: 0 16px;
		font-size: 15px;
	}
}

@media (max-width: 479px) {
	.oh-event__item {
		padding: 20px 0;
		row-gap: 14px;
	}

	.oh-event__day {
		font-size: 32px;
	}

	.oh-event__meta {
		gap: 10px;
		padding: 6px 4px;
	}

	.oh-event__badge {
		flex: 1 1 calc(50% - 10px);
		min-width: 0;
		max-width: 100%;
		width: auto;
		height: 44px;
		padding: 0 12px;
		font-size: 14px;
	}

	.oh-event__button {
		width: 100%;
		justify-content: center;
	}
}

.oh-event__past {
	margin-top: clamp(40px, 6vw, 72px);
}

.oh-event__past-heading {
	margin: 0 0 clamp(24px, 4vw, 40px);
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	text-align: center;
}

.oh-event__past-heading-inner {
	position: relative;
	display: inline-block;
}

.oh-event__past-heading-label {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-family: "LEMON MILK", sans-serif;
	font-weight: 700;
	font-size: clamp(36px, 6vw, 65px);
	line-height: 1;
	text-transform: uppercase;
	color: var(--oh-primary, #0087bf);
}

.oh-event__past-heading-highlighter {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 0;
	width: 108%;
	height: 0.42em;
	transform: translateX(-50%);
	background-color: #0087bf40;
	pointer-events: none;
}

.oh-event__media--past img {
	filter: grayscale(1);
}

.oh-event__galleries {
	display: contents;
}

.oh-event-gallery-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1000009;
	background: rgba(0, 0, 0, 0.4);
}

.oh-event-gallery-backdrop[hidden] {
	display: none;
}

.oh-event-gallery {
	position: fixed;
	inset: 0;
	z-index: 1000010;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	pointer-events: none;
}

.oh-event-gallery[hidden] {
	display: none;
}

.oh-event-gallery__overlay {
	position: absolute;
	inset: 0;
	background: transparent;
	pointer-events: auto;
}

.oh-event-gallery__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: min(1100px, 100%);
	max-height: calc(100vh - 48px);
	padding: 48px;
	border: 0;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	overflow-y: auto;
	pointer-events: auto;
}

.oh-event-gallery__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--oh-primary, #0087bf);
	cursor: pointer;
}

.oh-event-gallery__close svg {
	display: block;
	width: 28px;
	height: 28px;
}

.oh-event-gallery__title {
	margin: 0 0 16px;
	padding-right: 60px;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--oh-primary, #0087bf);
}

.oh-event-gallery__description {
	margin: 0 0 28px;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(14px, 1.6vw, 16px);
	font-weight: 400;
	line-height: 1.6;
	color: #333;
}

.oh-event-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 14px;
}

.oh-event-gallery__figure {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
	background: #e5f4fa;
}

.oh-event-gallery__link {
	display: block;
	width: 100%;
	height: 100%;
}

.oh-event-gallery__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.oh-event-gallery-open {
	overflow: hidden;
}

body.oh-event-gallery-open #masthead.site-header {
	z-index: 1;
}

@media (max-width: 767px) {
	.oh-event-gallery {
		padding: 12px;
	}

	.oh-event-gallery__dialog {
		padding: 28px 20px 24px;
		max-height: calc(100vh - 24px);
	}

	.oh-event-gallery__close {
		top: 8px;
		right: 8px;
		width: 44px;
		height: 44px;
	}

	.oh-event-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}
}

/* OH Erklärung */
.oh-erklaerung {
	max-width: 100%;
	overflow: visible;
	font-family: 'Poppins', sans-serif;
}

.elementor-widget-oh-erklaerung .elementor-widget-container {
	overflow: visible;
}

.elementor-element:has(.oh-erklaerung) {
	overflow: visible;
}

.oh-erklaerung__list {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 3vw, 28px);
	padding: 12px 14px;
	overflow: visible;
}

.oh-erklaerung__hidden-notice {
	margin: 0 14px 8px;
	padding: 8px 12px;
	border-radius: 8px;
	background: #fff4cc;
	color: #5c4b00;
	font-size: 13px;
	font-weight: 600;
}

.oh-erklaerung__box--hidden {
	opacity: 0.45;
	outline: 1px dashed #0087bf;
}

.oh-erklaerung__box {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
	overflow: visible;
}

.oh-erklaerung__box--row {
	display: grid;
	grid-template-columns: minmax(140px, 22%) minmax(0, 1fr) minmax(0, 1fr);
	grid-template-areas: 'sidebar content content';
	column-gap: clamp(20px, 4vw, 48px);
	row-gap: clamp(20px, 3vw, 28px);
	align-items: start;
}

.oh-erklaerung__box--grid {
	display: grid;
	grid-template-columns: minmax(140px, 22%) minmax(0, 1fr);
	grid-template-areas: 'sidebar body';
	column-gap: clamp(20px, 4vw, 48px);
	row-gap: clamp(20px, 3vw, 28px);
	align-items: stretch;
}

.oh-erklaerung__sidebar {
	grid-area: sidebar;
	min-width: 0;
}

.oh-erklaerung__title {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	line-height: 1.25;
	color: var(--oh-primary, #0087bf);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.oh-erklaerung__title-line {
	display: block;
	width: 100%;
	max-width: min(180px, 100%);
	height: 3px;
	margin-top: 10px;
	background-color: var(--oh-primary, #0087bf);
}

.oh-erklaerung__subtitle {
	margin: 14px 0 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(14px, 1.6vw, 16px);
	font-weight: 600;
	line-height: 1.35;
	color: var(--oh-primary, #0087bf);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.oh-erklaerung__body--row {
	grid-area: content;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: clamp(20px, 4vw, 48px);
	row-gap: clamp(20px, 3vw, 24px);
	min-width: 0;
}

.oh-erklaerung__body--grid {
	grid-area: body;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.oh-erklaerung__grid-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: clamp(20px, 4vw, 48px);
	row-gap: clamp(20px, 3vw, 24px);
	align-items: start;
}

.oh-erklaerung__grid-row--bottom {
	margin-top: clamp(20px, 3vw, 28px);
}

.oh-erklaerung__divider {
	display: block;
	flex-shrink: 0;
	width: 100%;
	height: 2px;
	margin-top: clamp(20px, 3vw, 28px);
	border: 0;
	background-color: var(--oh-primary, #0087bf);
}

.oh-erklaerung__col {
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 2.5vw, 24px);
	min-width: 0;
}

.oh-erklaerung__block {
	min-width: 0;
}

.oh-erklaerung__block-heading {
	margin: 0 0 10px;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(15px, 1.7vw, 17px);
	font-weight: 700;
	line-height: 1.35;
	color: var(--oh-primary, #0087bf);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.oh-erklaerung__block-content {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(14px, 1.5vw, 16px);
	font-weight: 400;
	line-height: 1.55;
	color: #333;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.oh-erklaerung__block-content p {
	margin: 0 0 0.75em;
}

.oh-erklaerung__block-content p:last-child {
	margin-bottom: 0;
}

.oh-erklaerung__block-content a {
	color: var(--oh-primary, #0087bf);
	text-decoration: underline;
	text-underline-offset: 2px;
	overflow-wrap: anywhere;
	word-break: break-word;
	transition: opacity 0.2s ease;
}

.oh-erklaerung__block-content a:hover {
	opacity: 0.8;
}

/* Tablet: title on top, content columns below */
@media (max-width: 1024px) {
	.oh-erklaerung__box--row {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas:
			'sidebar sidebar'
			'content content';
	}

	.oh-erklaerung__box--grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			'sidebar'
			'body';
	}
}

/* Mobile: single column stack */
@media (max-width: 767px) {
	.oh-erklaerung__box--row {
		grid-template-columns: 1fr;
		grid-template-areas:
			'sidebar'
			'content';
	}

	.oh-erklaerung__body--row,
	.oh-erklaerung__grid-row {
		grid-template-columns: 1fr;
	}

	.oh-erklaerung__grid-row--bottom {
		margin-top: 20px;
	}

	.oh-erklaerung__divider {
		margin-top: 20px;
	}

	.oh-erklaerung__title-line {
		max-width: 120px;
	}

	.oh-erklaerung__subtitle {
		margin-top: 12px;
	}

	.oh-erklaerung__col {
		gap: 20px;
	}
}

@media (max-width: 479px) {
	.oh-erklaerung__title {
		font-size: 17px;
	}

	.oh-erklaerung__block-heading {
		font-size: 15px;
	}

	.oh-erklaerung__block-content {
		font-size: 14px;
		line-height: 1.5;
	}
}

/* OH Download */
.oh-download {
	max-width: 100%;
	overflow-x: clip;
	font-family: 'Poppins', sans-serif;
}

.oh-download__list {
	display: flex;
	flex-direction: column;
}

.oh-download__item {
	min-width: 0;
}

button.oh-download__trigger,
button.oh-download__trigger:hover,
button.oh-download__trigger:focus,
button.oh-download__trigger:active {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	margin: 0;
	padding: 28px 0;
	border: 0;
	border-bottom: 1px solid #0087bf;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #0087bf;
	font: inherit;
	line-height: inherit;
	text-align: left;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

button.oh-download__trigger:focus-visible {
	outline: 2px solid #0087bf;
	outline-offset: 4px;
}

.oh-download__title {
	flex: 1;
	min-width: 0;
	font-family: "LEMON MILK", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #0087bf;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.oh-download__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-self: center;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	margin-top: 0;
	color: #0087bf;
	transform: rotate(90deg);
	transition: transform 0.25s ease;
}

.oh-download__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.oh-download__item.is-open .oh-download__icon {
	transform: rotate(0deg);
}

.oh-download__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: clamp(24px, 4vw, 48px);
	padding: 20px 0 28px;
}

.oh-download__panel[hidden] {
	display: none;
}

.oh-download__files {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.oh-download__file {
	width: 100%;
	margin: 0;
	text-align: left;
}

.oh-download__link,
.oh-download__link:hover,
.oh-download__link:focus,
.oh-download__link:active,
.oh-download__link:visited {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
	text-decoration: underline;
	text-underline-offset: 2px;
	overflow-wrap: anywhere;
	word-break: break-word;
	outline: none;
}

/* Tablet */
@media (max-width: 1024px) {
	.oh-download__item button.oh-download__trigger,
	.oh-download__item button.oh-download__trigger:hover,
	.oh-download__item button.oh-download__trigger:focus,
	.oh-download__item button.oh-download__trigger:active {
		gap: 20px;
		padding: 24px 0;
	}

	.oh-download__title {
		font-size: clamp(24px, 3.2vw, 30px);
		line-height: 1.1;
	}

	.oh-download__icon {
		width: 13px;
		height: 15px;
	}

	.oh-download__panel {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
		column-gap: 20px;
		padding: 16px 0 24px;
	}

	.oh-download__files {
		gap: 10px;
	}

	.oh-download__link,
	.oh-download__link:hover,
	.oh-download__link:focus,
	.oh-download__link:active,
	.oh-download__link:visited {
		font-size: 15px;
		line-height: 1.45;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.oh-download__item button.oh-download__trigger,
	.oh-download__item button.oh-download__trigger:hover,
	.oh-download__item button.oh-download__trigger:focus,
	.oh-download__item button.oh-download__trigger:active {
		gap: 16px;
		padding: 20px 0;
	}

	.oh-download__title {
		font-size: clamp(20px, 5.5vw, 26px);
		line-height: 1.15;
	}

	.oh-download__icon {
		width: 12px;
		height: 14px;
	}

	.oh-download__panel {
		grid-template-columns: 1fr;
		column-gap: 0;
		padding: 14px 0 22px;
	}

	.oh-download__files {
		grid-column: 1;
		gap: 10px;
	}

	.oh-download__link,
	.oh-download__link:hover,
	.oh-download__link:focus,
	.oh-download__link:active,
	.oh-download__link:visited {
		font-size: 15px;
		line-height: 1.5;
	}
}

/* Small mobile */
@media (max-width: 479px) {
	.oh-download__item button.oh-download__trigger,
	.oh-download__item button.oh-download__trigger:hover,
	.oh-download__item button.oh-download__trigger:focus,
	.oh-download__item button.oh-download__trigger:active {
		gap: 12px;
		padding: 16px 0;
	}

	.oh-download__title {
		font-size: 18px;
		line-height: 1.2;
	}

	.oh-download__panel {
		padding: 12px 0 18px;
	}

	.oh-download__files {
		gap: 8px;
	}

	.oh-download__link,
	.oh-download__link:hover,
	.oh-download__link:focus,
	.oh-download__link:active,
	.oh-download__link:visited {
		font-size: 14px;
		line-height: 1.45;
	}
}

/* OH FAQ */
.oh-faq {
	width: 100%;
	max-width: 100%;
	font-family: 'Poppins', sans-serif;
}

.oh-faq__list {
	--oh-faq-columns: 2;
	--oh-faq-column-gap: 64px;
	--oh-faq-row-gap: 64px;
	display: grid;
	grid-template-columns: repeat(var(--oh-faq-columns), minmax(0, 1fr));
	column-gap: var(--oh-faq-column-gap);
	row-gap: var(--oh-faq-row-gap);
	align-items: start;
}

.oh-faq__column {
	display: flex;
	flex-direction: column;
	gap: var(--oh-faq-row-gap);
	min-width: 0;
	align-items: stretch;
}

.oh-faq__item {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-self: stretch;
	width: 100%;
	height: auto;
	min-height: 150px;
	order: var(--oh-faq-order, 0);
	padding: 34px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
}

button.oh-faq__trigger,
button.oh-faq__trigger:hover,
button.oh-faq__trigger:focus,
button.oh-faq__trigger:active {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #0087bf;
	font: inherit;
	line-height: inherit;
	text-align: left;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

button.oh-faq__trigger:focus-visible {
	outline: 2px solid #0087bf;
	outline-offset: 6px;
}

.oh-faq__question {
	flex: 1;
	min-width: 0;
	margin: 0;
	color: #0087bf;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.45;
	overflow-wrap: anywhere;
	word-break: break-word;
	text-wrap: balance;
}

.oh-faq__toggle {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 16px;
	color: #0087bf;
	transform: rotate(90deg);
	transition: transform 0.25s ease;
}

.oh-faq__toggle svg {
	display: block;
	width: 100%;
	height: 100%;
}

.oh-faq__item.is-open .oh-faq__toggle {
	transform: rotate(0deg);
}

.oh-faq__panel {
	padding-top: 26px;
}

.oh-faq__panel[hidden] {
	display: none;
}

.oh-faq__answer,
.oh-faq__answer p {
	margin: 0;
	color: #000;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.55;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.oh-faq__answer p + p {
	margin-top: 1rem;
}

.oh-faq__answer a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (max-width: 1024px) {
	.oh-faq__list {
		display: flex;
		flex-direction: column;
		grid-template-columns: 1fr !important;
		--oh-faq-column-gap: 44px;
		--oh-faq-row-gap: 44px;
		gap: var(--oh-faq-row-gap);
	}

	.oh-faq__column {
		display: contents;
	}

	.oh-faq__item {
		min-height: 136px;
		padding: 30px 28px;
	}

	.oh-faq__question {
		font-size: 18px;
		line-height: 1.4;
	}

	.oh-faq__answer,
	.oh-faq__answer p {
		font-size: 16px;
		line-height: 1.5;
	}
}

@media (max-width: 767px) {
	.oh-faq__list {
		--oh-faq-column-gap: 36px;
		--oh-faq-row-gap: 36px;
		gap: var(--oh-faq-row-gap);
	}

	.oh-faq__item {
		min-height: 112px;
		padding: 24px 20px;
	}

	.oh-faq__trigger {
		gap: 16px;
	}

	.oh-faq__question {
		font-size: 16px;
		line-height: 1.4;
	}

	.oh-faq__toggle {
		width: 12px;
		height: 14px;
	}

	.oh-faq__panel {
		padding-top: 18px;
	}

	.oh-faq__answer,
	.oh-faq__answer p {
		font-size: 15px;
		line-height: 1.5;
	}
}

/* OH Impressum */
.oh-impressum {
	width: 100%;
	max-width: 100%;
	font-family: 'Poppins', sans-serif;
}

.oh-impressum__title {
	margin: 0 0 12px;
	color: #6a6a6a;
	font-family: "LEMON MILK", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
}

.oh-impressum__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 0.86fr;
	border: 1px solid #e6e6e6;
	background: #fff;
}

.oh-impressum__cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	padding: 28px 24px 26px;
	border-right: 1px solid #e6e6e6;
	text-align: center;
}

.oh-impressum__cell:last-child {
	border-right: 0;
}

.oh-impressum__heading {
	margin: 0 0 18px;
	color: #6a6a6a;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.oh-impressum__content,
.oh-impressum__content p,
.oh-impressum__content a {
	margin: 0;
	color: #9b9b9b;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	text-align: center;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.oh-impressum__content p + p {
	margin-top: 0.55rem;
}

.oh-impressum__content a {
	color: #c7903c;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.oh-impressum__title {
		font-size: 24px;
	}

	.oh-impressum__grid {
		grid-template-columns: 1fr;
	}

	.oh-impressum__cell {
		padding: 22px 18px;
		border-right: 0;
		border-bottom: 1px solid #e6e6e6;
	}

	.oh-impressum__cell:last-child {
		border-bottom: 0;
	}

	.oh-impressum__heading {
		margin-bottom: 14px;
	}

	.oh-impressum__content,
	.oh-impressum__content p,
	.oh-impressum__content a {
		font-size: 13px;
	}
}

@media (max-width: 767px) {
	.oh-impressum__title {
		font-size: 20px;
	}

	.oh-impressum__cell {
		padding: 18px 16px;
	}

	.oh-impressum__heading {
		font-size: 13px;
	}

	.oh-impressum__content,
	.oh-impressum__content p,
	.oh-impressum__content a {
		font-size: 14px;
		line-height: 1.55;
	}
}

/* OH Kontakt */
.oh-kontakt {
	--oh-kontakt-accent: #0084bd;
	--oh-kontakt-field-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.15);
	width: 100%;
	max-width: 100%;
	font-family: 'Poppins', var(--oh-font-body, sans-serif);
}

.oh-kontakt__layout {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 48px;
}

.oh-kontakt__intro {
	flex: 1 1 280px;
	min-width: 0;
	max-width: 38%;
}

.oh-kontakt__form-wrap {
	flex: 1 1 360px;
	min-width: 0;
}

.oh-kontakt__intro-inner {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.oh-kontakt__accent {
	flex-shrink: 0;
	width: 4px;
	min-height: 100%;
	align-self: stretch;
	background: var(--oh-kontakt-accent);
	border-radius: 2px;
}

.oh-kontakt__intro-content {
	min-width: 0;
}

.oh-kontakt__heading {
	margin: 0 0 16px;
	color: var(--oh-kontakt-accent, #0084bd);
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.oh-kontakt__description {
	margin: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.oh-kontakt__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.oh-kontakt__row {
	display: grid;
	gap: 12px;
	width: 100%;
}

.oh-kontakt__row--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oh-kontakt__field {
	min-width: 0;
	width: 100%;
}

.oh-kontakt input.oh-kontakt__input,
.oh-kontakt textarea.oh-kontakt__textarea,
.oh-kontakt .oh-kontakt__input {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	height: 52px;
	padding: 0 28px;
	border: none;
	border-radius: 50px;
	background: #fff;
	box-shadow: var(--oh-kontakt-field-shadow);
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 52px;
	color: #333;
	appearance: none;
	transition: box-shadow 0.2s ease;
}

.oh-kontakt input.oh-kontakt__input::placeholder,
.oh-kontakt textarea.oh-kontakt__textarea::placeholder,
.oh-kontakt .oh-kontakt__input::placeholder {
	color: var(--oh-kontakt-accent);
	opacity: 1;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.oh-kontakt input.oh-kontakt__input:focus,
.oh-kontakt textarea.oh-kontakt__textarea:focus,
.oh-kontakt .oh-kontakt__input:focus {
	outline: none;
	box-shadow: var(--oh-kontakt-field-shadow);
}

.oh-kontakt textarea.oh-kontakt__textarea,
.oh-kontakt .oh-kontakt__textarea {
	height: auto;
	min-height: 180px;
	padding: 18px 28px;
	border-radius: 25px;
	line-height: 1.5;
	resize: vertical;
}

.oh-kontakt textarea.oh-kontakt__textarea::placeholder,
.oh-kontakt .oh-kontakt__textarea::placeholder {
	line-height: 1.4;
}

.oh-kontakt__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.oh-kontakt__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	margin-top: 4px;
	width: 100%;
}

.oh-kontakt__feedback {
	margin: 0;
	width: 100%;
	font-size: 14px;
	line-height: 1.5;
	text-align: right;
}

.oh-kontakt__feedback--success {
	color: #1e7e34;
}

.oh-kontakt__feedback--error {
	color: #b32d2e;
}

.oh-kontakt__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	padding: 10px 32px;
	border: none;
	border-radius: 50px;
	background: var(--oh-kontakt-accent);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.oh-kontakt__submit:hover:not(:disabled) {
	background: var(--oh-primary-dark, #006994);
}

.oh-kontakt__submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Tablet */
@media (max-width: 1024px) {
	.oh-kontakt__intro,
	.oh-kontakt__form-wrap {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.oh-kontakt__layout {
		gap: 32px;
	}

	.oh-kontakt__intro-inner {
		gap: 16px;
	}

	.oh-kontakt__heading {
		margin-bottom: 12px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.oh-kontakt__layout {
		gap: 24px;
	}

	.oh-kontakt__intro-inner {
		gap: 12px;
	}

	.oh-kontakt__accent {
		width: 3px;
	}

	.oh-kontakt__heading {
		margin-bottom: 10px;
	}

	.oh-kontakt__row--2 {
		grid-template-columns: 1fr;
	}

	.oh-kontakt input.oh-kontakt__input,
	.oh-kontakt textarea.oh-kontakt__textarea,
	.oh-kontakt .oh-kontakt__input {
		height: 48px;
		padding-left: 20px;
		padding-right: 20px;
		line-height: 48px;
		font-size: 16px;
	}

	.oh-kontakt input.oh-kontakt__input::placeholder,
	.oh-kontakt textarea.oh-kontakt__textarea::placeholder,
	.oh-kontakt .oh-kontakt__input::placeholder {
		font-size: 11px;
	}

	.oh-kontakt textarea.oh-kontakt__textarea,
	.oh-kontakt .oh-kontakt__textarea {
		min-height: 140px;
		padding: 16px 20px;
		line-height: 1.5;
	}

	.oh-kontakt__actions {
		align-items: stretch;
	}

	.oh-kontakt__feedback {
		text-align: left;
	}

	.oh-kontakt__submit {
		width: 100%;
		min-width: 0;
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

/* Small mobile */
@media (max-width: 479px) {
	.oh-kontakt__layout {
		gap: 20px;
	}

	.oh-kontakt input.oh-kontakt__input,
	.oh-kontakt textarea.oh-kontakt__textarea,
	.oh-kontakt .oh-kontakt__input {
		padding-left: 18px;
		padding-right: 18px;
	}

	.oh-kontakt textarea.oh-kontakt__textarea,
	.oh-kontakt .oh-kontakt__textarea {
		padding-left: 18px;
		padding-right: 18px;
	}
}


/* Section sub-headings: underline matching the width of the text, replacing
   the full-width divider widget that used to sit underneath. */
.elementor-widget-heading .elementor-heading-title {
	display: inline-block;
	position: relative;
}

.elementor-widget-heading .elementor-heading-title::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.28em;
	height: 3px;
	border-radius: 2px;
	background-color: #0087bf;
}

.elementor-widget-heading + .elementor-widget-divider {
	display: none;
}

@media (max-width: 767px) {
	.elementor-widget-heading .elementor-heading-title::after {
		height: 2px;
	}

	/* Subpage headings start straight away instead of after a tall spacer. */
	.e-con.e-parent:first-of-type
		> .e-con-inner
		> .elementor-widget-spacer:first-child
		.elementor-spacer-inner {
		height: 0 !important;
	}

	.elementor-widget-oh-title + .elementor-widget-spacer .elementor-spacer-inner {
		height: 16px !important;
	}

	/* A little more room from the screen edges. */
	.e-con > .e-con-inner {
		padding-left: 18px;
		padding-right: 18px;
	}

	/* Longer text passages match the "Aktuelle Themen" size. */
	.elementor-widget-text-editor,
	.elementor-widget-text-editor p {
		font-size: 15px;
		line-height: 1.55;
	}

	/* Social media block: tighter gaps between heading, text and grid. */
	.oh-instagram-feed__grid {
		gap: 8px;
	}
}


/* Swipeable carousels ------------------------------------------------------
   pan-y lets the browser keep vertical scrolling while the script handles the
   horizontal gesture. Without it the page would stop scrolling over a slider. */
.oh-aktuelles,
.oh-aktuelle-slider__viewport,
.oh-referate__people-viewport {
	touch-action: pan-y;
}

/* A swipe should not leave text highlighted behind it. */
.oh-aktuelles__track,
.oh-aktuelle-slider__track,
.oh-referate__people-track {
	-webkit-user-select: none;
	user-select: none;
}


/* An Elementor image with a fixed height defaults to object-fit: fill, which
   distorts the photo. Cropping is always the better failure mode here. */
.elementor-widget-image img {
	object-fit: cover;
	object-position: center;
}

/* Vertretung pyramid (gendered labels) */
.oh-pyramid {
	--oh-pyramid-blue: #0087bf;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.1rem;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	font-family: "Poppins", sans-serif;
	color: var(--oh-pyramid-blue);
}

.oh-pyramid__level {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}

.oh-pyramid__label {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-align: center;
}

.oh-pyramid__people {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem 0.7rem;
}

.oh-pyramid__person {
	width: 22px;
	height: 32px;
}

.oh-pyramid__person::before,
.oh-pyramid__person::after {
	display: block;
	margin: 0 auto;
	background: #111;
	content: "";
}

.oh-pyramid__person::before {
	width: 14px;
	height: 14px;
	border-radius: 50%;
}

.oh-pyramid__person::after {
	width: 22px;
	height: 16px;
	margin-top: 2px;
	border-radius: 11px 11px 3px 3px;
}

@media (max-width: 767px) {
	.oh-pyramid__person {
		width: 22px;
		height: 30px;
	}

	.oh-pyramid__label {
		font-size: 13px;
	}
}

/* OH SVG */
.oh-svg {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	color: unset;
	fill: unset;
	text-decoration: none;
}

.oh-svg:hover,
.oh-svg:focus,
.oh-svg:focus-visible {
	color: unset;
	fill: unset;
	opacity: 1;
}

.oh-svg__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
}

.oh-svg__image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	filter: none;
}

.oh-svg__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 1rem;
	border: 1px dashed #0087bf;
	border-radius: 8px;
	color: #0087bf;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	text-align: center;
}
