@charset "UTF-8";

.file-ratgeber {
	--rg-accent: #203a1d;
	--rg-accent-soft: #2f5a28;
	--rg-muted: #5c6b58;
	--rg-surface: #f8f6f1;
	--rg-sand: var(--sandbeige, #f4efe5);
	--rg-border: rgba(32, 58, 29, 0.12);
	--rg-hero-green: #203a1d;
	--rg-chips-edge-pad: max(1rem, calc((100vw - min(100vw, 1200px)) / 2 + 25px));
	--rg-chips-bar-bg: var(--olivgrau, #d0cabe);
	--rg-chips-sticky-top-mobile: var(--mobile-fixed-header-total, 88px);
	--rg-chips-bar-height: 3.75rem;
	--mobile-fixed-header-total: 88px;
	--inflow-top-offset: 0px;
	/* Sticky-Stack (Header/Topbar + Chips) + Luft — für native Hash-Navigation */
	--rg-anchor-scroll-margin: calc(
		var(--rg-chips-sticky-top-mobile) + var(--rg-chips-bar-height) + 0.5rem
	);
}

@media (min-width: 992px) {
	.file-ratgeber {
		--rg-chips-sticky-top: var(--desktop-topbar-height, 36px);
		--rg-anchor-scroll-margin: calc(
			var(--rg-chips-sticky-top) + var(--rg-chips-bar-height) + 0.5rem
		);
	}

	body.desktop-main-nav--overlay .file-ratgeber {
		--rg-chips-sticky-top: calc(
			var(--desktop-main-nav-height, 62px) + var(--desktop-topbar-height, 36px)
		);
		--rg-anchor-scroll-margin: calc(
			var(--rg-chips-sticky-top) + var(--rg-chips-bar-height) + 0.5rem
		);
	}
}

#ueberschrift.page-hero-block--ratgeber {
	display: none !important;
}

.file-ratgeber {
	background: var(--rg-sand);
	color: #2b2b2b;
}

/* --- Hero + Chips --- */
.ratgeber-hero-stack {
	position: relative;
	box-sizing: border-box;
	background: linear-gradient(165deg, #1a3018 0%, var(--rg-hero-green) 42%, #2a4f24 100%);
	color: #fff;
	overflow: hidden;
}

.ratgeber-hero-stack::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08) 0%, transparent 42%),
		radial-gradient(circle at 88% 72%, rgba(121, 173, 75, 0.18) 0%, transparent 45%);
	pointer-events: none;
}


.ratgeber-hero-head {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0.35rem 1rem 0.15rem;
	text-align: center;
}

.ratgeber-hero-title {
	margin: 0;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	font-size: clamp(1.35rem, 5.5vw, 2rem);
}

.ratgeber-hero-lead {
	max-width: 40rem;
	margin: 0.55rem auto 0;
	padding: 0 1rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(0.95rem, 2.2vw, 1.08rem);
	line-height: 1.55;
}

.ratgeber-chips-bar {
	position: sticky;
	top: var(--rg-chips-sticky-top-mobile);
	z-index: 1015;
	background: var(--rg-chips-bar-bg);
	border-bottom: 1px solid rgba(32, 58, 29, 0.16);
	box-shadow: 0 2px 8px rgba(32, 58, 29, 0.07);
	margin: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

@media (min-width: 992px) {
	.ratgeber-chips-bar {
		top: var(--rg-chips-sticky-top);
		transition: top var(--desktop-main-nav-slide-duration, 0.34s)
			var(--desktop-main-nav-slide-ease, cubic-bezier(0.22, 1, 0.36, 1));
	}
}

.ratgeber-chips-scroll-wrap {
	position: relative;
	width: 100%;
	max-width: 100%;
}

.ratgeber-chips-scroll-wrap::before,
.ratgeber-chips-scroll-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2.5rem;
	pointer-events: none;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.ratgeber-chips-scroll-wrap::before {
	left: 0;
	background: linear-gradient(to right, var(--rg-chips-bar-bg), rgba(208, 202, 190, 0));
}

.ratgeber-chips-scroll-wrap::after {
	right: 0;
	background: linear-gradient(to left, var(--rg-chips-bar-bg), rgba(208, 202, 190, 0));
}

.ratgeber-chips-scroll-wrap.can-scroll-left::before,
.ratgeber-chips-scroll-wrap.can-scroll-right::after {
	opacity: 1;
}

.ratgeber-chips-scroll {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.75rem var(--rg-chips-edge-pad);
	scroll-snap-type: x proximity;
	scroll-padding-inline: var(--rg-chips-edge-pad);
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: pan-x;
	cursor: grab;
	outline: none;
}

.ratgeber-chips-scroll::-webkit-scrollbar {
	display: none;
}

.ratgeber-chips-scroll.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	user-select: none;
}

.ratgeber-chip {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 1rem;
	border: 1px solid rgba(32, 58, 29, 0.25);
	border-radius: 999px;
	background: #fff;
	color: var(--rg-accent);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	scroll-snap-align: start;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ratgeber-chips-scroll.is-dragging .ratgeber-chip {
	pointer-events: none;
}

.ratgeber-chip:hover,
.ratgeber-chip:focus-visible {
	border-color: #79ad4b;
	background: #f4efe5;
	color: var(--rg-accent);
}

.ratgeber-chip.is-active {
	background: var(--rg-accent);
	border-color: var(--rg-accent);
	color: #fff;
	font-weight: 600;
}

.ratgeber-chip.is-active:hover,
.ratgeber-chip.is-active:focus-visible {
	background: var(--rg-accent-soft);
	border-color: var(--rg-accent-soft);
	color: #fff;
}

/* --- Body --- */
.ratgeber-body.container {
	max-width: 1200px;
	padding-top: 1.5rem !important;
	padding-bottom: 3rem !important;
}

.ratgeber-intro-card {
	margin-bottom: 2rem;
	padding: 1.5rem 1.65rem;
	border: 1px solid var(--rg-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(32, 58, 29, 0.07);
}

.ratgeber-quote {
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	line-height: 1.35;
	color: var(--rg-accent);
	font-weight: 600;
	font-style: italic;
}

.ratgeber-quote cite {
	display: block;
	margin-top: 0.45rem;
	font-size: 0.92rem;
	font-style: normal;
	font-weight: 500;
	color: var(--rg-muted);
}

.ratgeber-intro-text {
	margin: 0;
	color: #3a3a3a;
	font-size: 1.02rem;
	line-height: 1.7;
}

.ratgeber-intro-text a {
	color: var(--rg-accent-soft);
	font-weight: 600;
}

.ratgeber-split-section {
	margin-bottom: 2.25rem;
	padding: 1.35rem;
	border: 1px solid var(--rg-border);
	border-radius: 12px;
	background: #fff;
}

.ratgeber-split-section .row {
	align-items: center;
}

.ratgeber-split-media img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(32, 58, 29, 0.12);
}

.ratgeber-section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.35rem;
	color: var(--rg-muted);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ratgeber-section-kicker i {
	color: var(--rg-accent);
}

.ratgeber-split-section h2 {
	margin: 0 0 0.85rem;
	color: var(--rg-accent);
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 700;
	line-height: 1.3;
}

.ratgeber-prose {
	color: #3a3a3a;
	font-size: 1.02rem;
	line-height: 1.7;
}

.ratgeber-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1.1rem;
}

.file-ratgeber .btn-secondary-custom {
	background-color: var(--secondary-color, #203a1d);
	border-color: var(--secondary-color, #203a1d);
	color: #fff;
}

.file-ratgeber .btn-secondary-custom:hover,
.file-ratgeber .btn-secondary-custom:focus-visible {
	background-color: var(--rg-accent-soft);
	border-color: var(--rg-accent-soft);
	color: #fff;
}

.file-ratgeber .btn-outline-ratgeber {
	color: var(--rg-accent);
	border-color: var(--rg-accent);
	background: transparent;
}

.file-ratgeber .btn-outline-ratgeber:hover,
.file-ratgeber .btn-outline-ratgeber:focus-visible {
	background: var(--rg-accent);
	border-color: var(--rg-accent);
	color: #fff;
}

/* DB-Themenbereiche + alle Abschnitts-Anker (Chips-Nav) */
.ratgeber-topic-section,
.ratgeber-split-section,
.file-ratgeber [id^="section-"] {
	scroll-margin-top: var(--rg-anchor-scroll-margin);
}

.ratgeber-topic-section {
	margin-bottom: 2.5rem;
}

.ratgeber-topic-head {
	margin-bottom: 1.25rem;
	text-align: center;
}

.ratgeber-topic-head h2 {
	margin: 0;
	color: var(--rg-accent);
	font-size: clamp(1.3rem, 2.8vw, 1.75rem);
	font-weight: 700;
	line-height: 1.3;
}

.ratgeber-topic-grid .ratgeber-topic-card {
	height: 100%;
	border: 1px solid var(--rg-border);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}

/* Kein Kachel-Hover: custom.css setzt sonst beige + größere Schrift */
.file-ratgeber .feature-box:hover,
.file-ratgeber .feature-box.media-box:hover,
.ratgeber-topic-grid .ratgeber-topic-card:hover {
	transform: none;
	box-shadow: none;
	background-color: #fff;
}

.file-ratgeber .feature-box:hover .fbox-desc,
.file-ratgeber .feature-box:hover .ratgeber-topic-card-body {
	background-color: transparent;
}

.file-ratgeber .feature-box:hover .fbox-desc p,
.file-ratgeber .feature-box:hover .ratgeber-topic-card-body p {
	font-size: 0.96rem;
}

.ratgeber-topic-card-media img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.ratgeber-topic-card-body {
	padding: 1rem 1.1rem 1.15rem;
}

.ratgeber-topic-card-body h3 {
	margin: 0 0 0.55rem;
	color: var(--rg-accent);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
}

.ratgeber-topic-card-body p {
	margin: 0;
	color: #444;
	font-size: 0.96rem;
	line-height: 1.6;
}

.ratgeber-more-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.55rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--rg-accent-soft);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
}

.ratgeber-more-toggle:hover,
.ratgeber-more-toggle:focus-visible {
	color: var(--rg-accent);
	text-decoration: underline;
}

.ratgeber-more-body {
	margin-top: 0.65rem;
	padding-top: 0.65rem;
	border-top: 1px dashed var(--rg-border);
	color: #444;
	font-size: 0.95rem;
	line-height: 1.6;
}

.file-ratgeber .mehrhide[hidden],
.file-ratgeber .ratgeber-more-body[hidden] {
	display: none !important;
}

.file-ratgeber .ratgeber-topic-card--no-media .ratgeber-topic-card-body {
	padding-top: 1.15rem;
}

.file-ratgeber .ratgeber-more-link-wrap {
	margin: 0.75rem 0 0;
}

.file-ratgeber .health-disclaimer {
	margin: 1.5rem 0 2rem;
}

.ratgeber-disclaimer {
	margin: 1.5rem 0 0;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	background: var(--rg-surface);
	border: 1px solid var(--rg-border);
	font-size: 0.88rem;
	color: var(--rg-muted);
}

/* Legacy-Sektionen unter .file-ratgeber */
.file-ratgeber .page-section.section {
	margin-bottom: 2rem;
	padding: 1.35rem 0;
}

.file-ratgeber .page-section.section .container {
	padding: 1.35rem;
	border: 1px solid var(--rg-border);
	border-radius: 12px;
	background: #fff;
}

.file-ratgeber .page-section.section:nth-of-type(even) .container {
	background: var(--rg-surface);
}

.file-ratgeber .heading-block h2 {
	margin-bottom: 0.85rem;
	color: var(--rg-accent);
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	font-weight: 700;
	line-height: 1.35;
}

.file-ratgeber .heading-block h2 i.bi {
	margin-right: 0.4rem;
	color: var(--rg-accent-soft);
}

.file-ratgeber .heading-block span,
.file-ratgeber .heading-block p {
	color: #3a3a3a;
	font-size: 1rem;
	line-height: 1.65;
}

.file-ratgeber .heading-block img,
.file-ratgeber img.roundedborder12 {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 18rem;
	object-fit: cover;
	border-radius: 12px !important;
	box-shadow: 0 8px 24px rgba(32, 58, 29, 0.1);
}

/* Qualität: Abstand unter Bild + Gap zwischen Buttons */
.file-ratgeber .ratgeber-qualitaet-media {
	float: none !important;
	width: 100% !important;
	margin: 0 0 1.75rem !important;
	clear: both;
}

.file-ratgeber .ratgeber-qualitaet-media img.roundedborder12 {
	margin-bottom: 0;
}

.file-ratgeber .ratgeber-qualitaet-row {
	clear: both;
	margin-top: 0.25rem;
}

.file-ratgeber .ratgeber-qualitaet-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.9rem;
	margin-top: 0.15rem;
}

.file-ratgeber .ratgeber-qualitaet-actions .button {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	text-align: center;
}

/* Markenlogo: mittig, kompakt, dicker weißer Rahmen, Reveal beim Einblenden */
#section-kernoelcc .ratgeber-brand-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	max-width: min(280px, 72vw);
	margin: 0.85rem auto 1.85rem;
	padding: 0.85rem 1rem;
	background: #fff;
	border: 10px solid #fff;
	border-radius: 18px;
	box-shadow:
		0 0 0 1px rgba(32, 58, 29, 0.08),
		0 10px 28px rgba(32, 58, 29, 0.12);
	box-sizing: border-box;
}

#section-kernoelcc .ratgeber-brand-logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: none;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
	border-radius: 8px !important;
	box-shadow: none;
	opacity: 0;
	transform: scale(0.78) translateY(22px);
	filter: none;
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

#section-kernoelcc .ratgeber-brand-logo.is-inview img {
	opacity: 1;
	transform: scale(1) translateY(0);
	animation: none;
}

@keyframes ratgeber-logo-glow {
	0%,
	100% {
		filter: none;
	}
	45% {
		filter: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	#section-kernoelcc .ratgeber-brand-logo img {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
		animation: none;
	}

	#section-kernoelcc .ratgeber-brand-logo.is-inview img {
		animation: none;
	}
}

.file-ratgeber .ratgeber-split-media h2 {
	margin: 0 0 0.85rem;
	color: var(--rg-accent);
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	font-weight: 700;
	line-height: 1.35;
}

.file-ratgeber .feature-box.media-box {
	height: 100%;
	border: 1px solid var(--rg-border);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}

.file-ratgeber .feature-box .fbox-media img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.file-ratgeber .feature-box .fbox-desc {
	padding: 1rem 1.05rem 1.1rem;
}

.file-ratgeber .feature-box .fbox-desc h3 {
	margin: 0 0 0.5rem;
	color: var(--rg-accent);
	font-size: 1.02rem;
	font-weight: 700;
}

.file-ratgeber .feature-box .fbox-desc p {
	margin: 0;
	color: #444;
	line-height: 1.6;
}

.file-ratgeber .button,
.file-ratgeber a.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.45rem 1rem;
	border-radius: 999px !important;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.file-ratgeber .button.button-rounded:not(.button-border):not(.button-white) {
	background: var(--rg-accent) !important;
	border: 1px solid var(--rg-accent) !important;
	color: #fff !important;
}

.file-ratgeber .button.button-border,
.file-ratgeber .button.button-white {
	background: transparent !important;
	border: 1px solid var(--rg-accent) !important;
	color: var(--rg-accent) !important;
}

.file-ratgeber .button:hover {
	background: var(--rg-accent-soft) !important;
	border-color: var(--rg-accent-soft) !important;
	color: #fff !important;
}

.file-ratgeber .accordion .acctitle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.35rem;
	padding: 0.75rem 0.95rem;
	border: 1px solid var(--rg-border);
	border-radius: 8px;
	background: var(--rg-surface);
	color: var(--rg-accent);
	font-weight: 600;
	cursor: pointer;
}

.file-ratgeber .accordion .acctitle i.acc-open {
	display: none;
}

.file-ratgeber .accordion .acctitle.acctitlec i.acc-closed {
	display: none;
}

.file-ratgeber .accordion .acctitle.acctitlec i.acc-open {
	display: inline-block;
}

.file-ratgeber .accordion .acc_content {
	display: none;
	margin-bottom: 0.65rem;
	padding: 0.85rem 0.95rem 1rem;
	border: 1px solid var(--rg-border);
	border-top: 0;
	border-radius: 0 0 8px 8px;
	background: #fff;
}

.file-ratgeber .accordion .acctitle.acctitlec + .acc_content {
	display: block;
}

.file-ratgeber .accordion .acc_content .topmargin-sm {
	margin-top: 1.35rem !important;
}

.file-ratgeber .table {
	margin-bottom: 0;
}

.file-ratgeber .table td {
	padding: 0.55rem 0.65rem;
	border-color: var(--rg-border);
	vertical-align: top;
}

.file-ratgeber .page-section.lazy {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.file-ratgeber .page-section.lazy::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 48, 24, 0.82) 0%, rgba(32, 58, 29, 0.72) 100%);
	z-index: 0;
}

.file-ratgeber .page-section.lazy > .container {
	position: relative;
	z-index: 1;
	border: 0;
	background: transparent !important;
	color: #fff;
}

.file-ratgeber .page-section.lazy .heading-block h2,
.file-ratgeber .page-section.lazy .heading-block span,
.file-ratgeber .page-section.lazy .heading-block a {
	color: #fff;
}

.file-ratgeber .page-section.lazy .heading-block h2 i.bi,
.file-ratgeber .page-section.lazy .heading-block h2 i.bi::before {
	color: #fff !important;
}

.file-ratgeber .page-section.lazy .heading-block > span {
	display: block;
	margin-bottom: 1.5rem;
}

.file-ratgeber .page-section.lazy .ratgeber-lazy-actions {
	display: flex;
	margin-top: 0;
	gap: 0.85rem;
}

.file-ratgeber .page-section.lazy .ratgeber-lazy-actions--stack {
	flex-direction: column;
	align-items: flex-start;
}

.file-ratgeber .page-section.lazy .ratgeber-lazy-actions--wrap {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}

.file-ratgeber .page-section.lazy .ratgeber-lazy-actions .button {
	margin: 0 !important;
}

.file-ratgeber .page-section.lazy .heading-block > .button {
	margin-top: 0.15rem;
}

.file-ratgeber .page-section.lazy .button.button-border,
.file-ratgeber .page-section.lazy .button.button-white {
	border-color: rgba(255, 255, 255, 0.75) !important;
	color: #fff !important;
}

.file-ratgeber #page-menu {
	display: none;
}

/* Auszeichnungs-Kachel: Highlight + Scroll-Reveal */
.file-ratgeber .ratgeber-award {
	margin-bottom: 0.5rem;
}

.file-ratgeber .ratgeber-award-card {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 0;
	align-items: stretch;
	overflow: hidden;
	border: 1px solid rgba(32, 58, 29, 0.14);
	border-radius: 18px;
	background:
		radial-gradient(120% 90% at 0% 0%, rgba(201, 162, 39, 0.14) 0%, transparent 55%),
		linear-gradient(145deg, #fffef9 0%, #f7f3ea 48%, #f3eee4 100%);
	box-shadow: 0 14px 36px rgba(32, 58, 29, 0.1);
	opacity: 0;
	transform: translateY(28px) scale(0.985);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s ease;
}

.file-ratgeber .ratgeber-award-card.is-inview {
	opacity: 1;
	transform: translateY(0) scale(1);
	box-shadow: 0 18px 42px rgba(32, 58, 29, 0.14);
}

.file-ratgeber .ratgeber-award-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.7rem 1.6rem 1.85rem;
}

.file-ratgeber .ratgeber-award-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.75rem;
	color: #8a6a12;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.file-ratgeber .ratgeber-award-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: linear-gradient(145deg, #f0d56a 0%, #c9a227 55%, #a88412 100%);
	color: #203a1d;
	box-shadow: 0 6px 14px rgba(168, 132, 18, 0.35);
}

.file-ratgeber .ratgeber-award-badge i {
	font-size: 0.95rem;
	line-height: 1;
}

.file-ratgeber .ratgeber-award-card.is-inview .ratgeber-award-badge {
	animation: ratgeber-award-badge-pop 0.7s ease 0.2s 1 both;
}

.file-ratgeber .ratgeber-award-copy h2 {
	margin: 0 0 0.85rem;
	color: var(--rg-accent);
	font-size: clamp(1.35rem, 2.6vw, 1.85rem);
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

.file-ratgeber .ratgeber-award-copy p {
	margin: 0 0 0.75rem;
	color: #3f463c;
	font-size: 1rem;
	line-height: 1.65;
}

.file-ratgeber .ratgeber-award-lead {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--rg-accent-soft);
}

.file-ratgeber .ratgeber-award-cta {
	align-self: flex-start;
	margin-top: 1.15rem !important;
}

.file-ratgeber .ratgeber-award-media {
	position: relative;
	min-height: 100%;
	background: #1a3018;
}

.file-ratgeber .ratgeber-award-media-link {
	display: block;
	height: 100%;
	overflow: hidden;
}

.file-ratgeber .ratgeber-award-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 16rem;
	max-height: none !important;
	object-fit: cover;
	border-radius: 0 !important;
	box-shadow: none !important;
	transform: scale(1.06);
	transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.file-ratgeber .ratgeber-award-card.is-inview .ratgeber-award-media img {
	transform: scale(1);
}

.file-ratgeber .ratgeber-award-media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		115deg,
		transparent 35%,
		rgba(255, 236, 170, 0.28) 48%,
		transparent 62%
	);
	transform: translateX(-120%);
	opacity: 0;
}

.file-ratgeber .ratgeber-award-card.is-inview .ratgeber-award-media::after {
	animation: ratgeber-award-shine 1.35s ease 0.45s 1 both;
}

@keyframes ratgeber-award-badge-pop {
	0% {
		transform: scale(0.7);
		opacity: 0.4;
	}
	60% {
		transform: scale(1.12);
		opacity: 1;
	}
	100% {
		transform: scale(1);
	}
}

@keyframes ratgeber-award-shine {
	0% {
		transform: translateX(-120%);
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	100% {
		transform: translateX(120%);
		opacity: 0;
	}
}

@media (max-width: 991.98px) {
	.file-ratgeber .ratgeber-award-card {
		grid-template-columns: 1fr;
	}

	.file-ratgeber .ratgeber-award-media {
		order: -1;
		min-height: 13rem;
	}

	.file-ratgeber .ratgeber-award-media img {
		min-height: 13rem;
		max-height: 18rem;
	}

	.file-ratgeber .ratgeber-award-copy {
		padding: 1.35rem 1.2rem 1.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.file-ratgeber .ratgeber-award-card,
	.file-ratgeber .ratgeber-award-media img {
		opacity: 1;
		transform: none;
		transition: none;
		animation: none;
	}

	.file-ratgeber .ratgeber-award-card.is-inview .ratgeber-award-badge,
	.file-ratgeber .ratgeber-award-card.is-inview .ratgeber-award-media::after {
		animation: none;
	}

	.file-ratgeber .ratgeber-award-media::after {
		display: none;
	}
}

.ratgeber-cta {
	margin-top: 2rem;
	padding: 1.35rem 1.45rem;
	border: 1px solid var(--rg-border);
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(32, 58, 29, 0.07) 0%, rgba(121, 173, 75, 0.12) 100%);
}

.ratgeber-cta h2 {
	margin: 0 0 0.35rem;
	color: var(--rg-accent);
	font-size: 1.1rem;
	font-weight: 700;
}

.ratgeber-cta p {
	margin: 0 0 1rem;
	color: var(--rg-muted);
	line-height: 1.55;
}

@media (max-width: 991.98px) {
	body:has(#marquee_devumgebung),
	body:has(#marquee_wartungsmodus),
	body:has(#marquee_mollie_testmodus) {
		--inflow-top-offset: 30px;
	}

	.ratgeber-hero-stack {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: clamp(10.5rem, 34vw, 14.5rem);
		padding: calc(var(--mobile-fixed-header-total) - var(--inflow-top-offset)) 0 1rem;
	}

	.ratgeber-body.container {
		padding-top: 1rem !important;
	}

	.ratgeber-split-section {
		padding: 1rem;
	}

	.ratgeber-actions {
		flex-direction: column;
	}

	.ratgeber-actions .btn,
	.ratgeber-actions .button {
		width: 100%;
	}
}

@media (min-width: 992px) {
	.ratgeber-hero-stack {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 1.35rem 0 1rem;
	}

	.ratgeber-hero-head {
		width: 100%;
		max-width: 1200px;
		padding: 0 1.5rem;
	}
}

@media (max-width: 575.98px) {
	.file-ratgeber {
		--rg-chips-edge-pad: max(0.5rem, calc((100vw - min(100vw, 1200px)) / 2 + 5px));
	}
}

@media (prefers-reduced-motion: no-preference) {
	html:has(.file-ratgeber) {
		scroll-behavior: smooth;
	}
}
