﻿
#newpage-button-80 {
	display: none;
}
#cms_root {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
}
#cont-4072 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
	--section-padding-top: 50px;
	--section-padding-bottom: 50px;
}
#cont-4096 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
	--section-padding-top: 50px;
	--section-padding-bottom: 50px;
}
#cont-4119 {
	--section-padding-top: 50px;
	--section-padding-bottom: 50px;
}
#cont-4142 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
	--section-padding-top: 50px;
	--section-padding-bottom: 50px;
}
.design-showcase.Grid-Style {
	container-type: inline-size;
	margin-inline: 1rem;
}
.design-showcase p {
	color: var(--special-co);
	line-height: 1.5;
	letter-spacing: 1px;
}
.design-showcase .Grid {
	background: var(--grid-bg, var(--bgcolor2));
	padding: var(--grid-padding, 2rem 1rem);
	border-radius: var(--grid-border-radius, 1rem);
	border: var(--grid-border, none);
	display: grid;
	gap: var(--grid-gap, 0.5rem);
	grid-template-areas: "Kategorie-Badge" "Video" "Header" "Text" "tags" "Knopf-container";
	box-shadow: var(--grid-shadow, none);
}
.bhv-text {
	margin-inline: 0 !important;
}
.highlighted {
	color: var(--hicolor);
}
.design-showcase .Grid .Kategorie-Badge {
	grid-area: Kategorie-Badge;
}
.design-showcase .Kategorie-Badge > div {
	background: var(--badge-bg, var(--hicolor));
	display: inline-block;
	color: var(--badge-color, var(--bgcolor));
	padding: var(--badge-padding, .5rem 1rem);
	border-radius: var(--badge-border-radius, 5rem);
	font-size: var(--badge-font-size, 0.7rem);
	font-weight: var(--badge-font-weight, 600);
	border: var(--badge-border, none);
}
.design-showcase .Grid .Video {
	grid-area: Video;
	position: relative;

}
.design-showcase .Grid .Video .bhv-video {
		margin: 0;

}
.design-showcase .Video video {
	border-radius: var(--video-border-radius, 1rem);
	box-shadow: var(--video-shadow, none);
	border: var(--video-border, none);
	width: auto !important;
	position: relative;
	z-index: 0;
	width: 100% !important;
}
.design-showcase .Video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}
.design-showcase .Video::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-40%, -50%);
	width: 0;
	height: 0;
	border-left: 30px solid rgba(255, 255, 255, 0.9);
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	pointer-events: none;
	z-index: 2;
	transition: opacity 0.3s ease;
}
.design-showcase .Grid:hover .Video::before,
.design-showcase .Grid:focus-within .Video::before,
.design-showcase .Grid:hover .Video::after,
.design-showcase .Grid:focus-within .Video::after {
	opacity: 0;
}
.design-showcase .Grid .Header {
	grid-area: Header;
}
.design-showcase .Header h2 {
	font-size: var(--header-font-size, 3rem);
	margin-block: 0;
	line-height: var(--header-line-height, 1.2);
}
.design-showcase .Grid .Text {
	grid-area: Text;
}
.design-showcase .Grid .tags {
	grid-area: tags;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: var(--tags-gap, 0.5rem);
}
.design-showcase .tags .tag {
	background: var(--tag-bg, var(--bgcolor));
	padding: var(--tag-padding, 0.5rem 1rem);
	border-radius: var(--tag-border-radius, 0.5rem);
	margin: 0 !important;
	border: var(--tag-border, 1px solid var(--locolor));
	font-size: var(--tag-font-size, 0.9rem);
}
.design-showcase .Grid .Knopf-container {
	grid-area: Knopf-container;
	color: var(--hicolor);
	font-size: 1.2rem;
	font-weight: bold;
}
.design-showcase .Grid.style1 {
	--comment: 'Modern & Soft - Sanfte Rundungen, subtile Schatten';
	--grid-bg: var(--bgcolor2);
	--grid-padding: 2.5rem 2rem;
	--grid-border-radius: 1.5rem;
	--grid-border: none;
	--grid-gap: 1rem 2rem;
	--grid-shadow: 0 4px 20px rgba(0,0,0,0.08);
	--badge-bg: var(--hicolor);
	--badge-color: var(--bgcolor);
	--badge-padding: 0.6rem 1.2rem;
	--badge-border-radius: 5rem;
	--badge-font-size: 0.75rem;
	--badge-font-weight: 600;
	--badge-border: none;
	--video-border-radius: 1.2rem;
	--video-shadow: 0 8px 24px rgba(0,0,0,0.12);
	--video-border: none;
	--header-font-size: 3rem;
	--header-line-height: 1.2;
	--tag-bg: var(--locolor);
	--tag-padding: 0.6rem 1.2rem;
	--tag-border-radius: 0.8rem;
	--tag-border: 1px solid var(--locolor);
	--tag-font-size: 0.9rem;
	--tags-gap: 0.6rem;
}
.design-showcase .Grid.style2 {
	--comment: 'Sharp & Minimalist - Kantige Formen, klare Linien';
	--grid-bg: var(--bgcolor2);
	--grid-padding: 2rem 1.5rem;
	--grid-border-radius: 0px;
	--grid-border: 2px solid var(--locolor);
	--grid-gap: 0.8rem;
	--grid-shadow: none;
	--badge-bg: var(--hicolor);
	--badge-color: var(--bgcolor);
	--badge-padding: 0.5rem 1rem;
	--badge-border-radius: 0px;
	--badge-font-size: 0.7rem;
	--badge-font-weight: 700;
	--badge-border: 2px solid transparent;
	--video-border-radius: 0px;
	--video-shadow: none;
	--video-border: 2px solid var(--locolor);
	--header-font-size: 3rem;
	--header-line-height: 1.1;
	--tag-bg: transparent;
	--tag-padding: 0.5rem 1rem;
	--tag-border-radius: 0px;
	--tag-border: 2px solid var(--locolor);
	--tag-font-size: 0.85rem;
	--tags-gap: 0.5rem;
}
.design-showcase .Grid.style3 {
	--comment: 'Ultra Rounded - Stark abgerundete, spielerische Elemente';
	--grid-bg: var(--bgcolor2);
	--grid-padding: 3rem 2rem;
	--grid-border-radius: 2.5rem;
	--grid-border: none;
	--grid-gap: 1.2rem;
	--grid-shadow: 0 6px 30px rgba(0,0,0,0.1);
	--badge-bg: var(--hicolor);
	--badge-color: var(--bgcolor);
	--badge-padding: 0.7rem 1.5rem;
	--badge-border-radius: 9999px;
	--badge-font-size: 0.75rem;
	--badge-font-weight: 700;
	--badge-border: 3px solid transparent;
	--video-border-radius: 2rem;
	--video-shadow: 0 10px 40px rgba(0,0,0,0.15);
	--video-border: none;
	--header-font-size: 3.2rem;
	--header-line-height: 1.3;
	--tag-bg: var(--locolor);
	--tag-padding: 0.7rem 1.5rem;
	--tag-border-radius: 9999px;
	--tag-border: none;
	--tag-font-size: 0.9rem;
	--tags-gap: 0.8rem;
}
.design-showcase .Grid.style4 {
	--comment: 'Compact & Professional - Enge Abstände, professionelles Design';
	--grid-bg: var(--bgcolor2);
	--grid-padding: 1.5rem 1.25rem;
	--grid-border-radius: 0.5rem;
	--grid-border: 1px solid var(--locolor);
	--grid-gap: 0.5rem 2rem;
	--grid-shadow: 0 2px 8px rgba(0,0,0,0.05);
	--badge-bg: var(--hicolor);
	--badge-color: var(--bgcolor);
	--badge-padding: 0.4rem 0.9rem;
	--badge-border-radius: 0.4rem;
	--badge-font-size: 0.65rem;
	--badge-font-weight: 600;
	--badge-border: none;
	--video-border-radius: 0.5rem;
	--video-shadow: 0 4px 12px rgba(0,0,0,0.08);
	--video-border: 1px solid var(--locolor);
	--header-font-size: 2.5rem;
	--header-line-height: 1.2;
	--tag-bg: var(--locolor);
	--tag-padding: 0.4rem 0.8rem;
	--tag-border-radius: 0.3rem;
	--tag-border: 1px solid var(--locolor);
	--tag-font-size: 0.8rem;
	--tags-gap: 0.4rem;
}
.design-showcase .Grid.style5 {
	--comment: 'Bold & Striking - Kräftige Rahmen, starke Akzente';
	--grid-bg: var(--bgcolor2);
	--grid-padding: 2rem 1.5rem;
	--grid-border-radius: 0.8rem;
	--grid-border: 4px solid var(--hicolor);
	--grid-gap: 1rem 2rem;
	--grid-shadow: 8px 8px 0 rgba(0,0,0,0.1);
	--badge-bg: var(--hicolor);
	--badge-color: var(--bgcolor);
	--badge-padding: 0.6rem 1.2rem;
	--badge-border-radius: 0.5rem;
	--badge-font-size: 0.75rem;
	--badge-font-weight: 800;
	--badge-border: 3px solid var(--bgcolor);
	--video-border-radius: 0.8rem;
	--video-shadow: none;
	--video-border: 4px solid var(--hicolor);
	--header-font-size: 3.5rem;
	--header-line-height: 1.1;
	--tag-bg: transparent;
	--tag-padding: 0.6rem 1.2rem;
	--tag-border-radius: 0.5rem;
	--tag-border: 3px solid var(--hicolor);
	--tag-font-size: 0.9rem;
	--tags-gap: 0.6rem;
}
#cont-4210 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
	--section-padding-top: 50px;
	--section-padding-bottom: 50px;
}
#cont-4235 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
	--section-padding-top: 50px;
	--section-padding-bottom: 50px;
}
#col-4213 {
	container-type: inline-size;
	margin-inline: 1rem;
}
#col-4213 .Grid {
	background: var(--grid-bg, transparent);
	padding: var(--grid-padding, 3rem 2rem);
	display: grid;
	gap: var(--grid-gap, 1.5rem);
	grid-template-areas: "section-badge" "Header" "Text" "btn1-cont" "btn2-cont";
	text-align: var(--grid-text-align, center);
	max-width: var(--grid-max-width, 800px);
	margin-inline: var(--grid-margin-inline, auto);
	border-radius: var(--grid-border-radius, 0);
}
#col-4213 .Grid .section-badge {
	grid-area: section-badge;
}
#col-4213 .section-badge > div {
	background: var(--section-badge-bg, transparent);
	display: inline-block;
	color: var(--section-badge-color, var(--hicolor, #FFE600));
	padding: var(--section-badge-padding, 0);
	font-size: var(--section-badge-font-size, 0.9rem);
	font-weight: var(--section-badge-font-weight, 600);
	letter-spacing: var(--section-badge-letter-spacing, 0.1em);
	text-transform: var(--section-badge-text-transform, uppercase);
	border-radius: var(--section-badge-border-radius, 0);
}
#col-4213 .Grid .Header {
	grid-area: Header;
}
#col-4213 .Header h2 {
	font-size: var(--header-font-size, 3.5rem);
	margin-block: 0;
	line-height: var(--header-line-height, 1.1);
	font-weight: var(--header-font-weight, 700);
}
#col-4213 .Grid .Text {
	grid-area: Text;
}
#col-4213 .Text p {
	font-size: var(--text-font-size, 1.1rem);
	line-height: var(--text-line-height, 1.6);
	color: var(--text-color, #A0A0A0);
	margin: 0;
}
#col-4213 .Grid .btn1-cont {
	grid-area: btn1-cont;
	display: flex;
	justify-content: var(--btn1-justify, end);
	gap: var(--btn-gap, 1rem);
	flex-wrap: wrap;
	align-items: center;
}
#col-4213 .Grid .btn2-cont {
	grid-area: btn2-cont;
	display: flex;
	justify-content: var(--btn2-justify, start);
	gap: var(--btn-gap, 1rem);
	flex-wrap: wrap;
	align-items: center;
}
#col-4213 .btn1-cont .bhv-text , #col-4213 .btn2-cont .bhv-text {
	margin: 0 !important;
}
#col-4213 .btn1-cont .bhv-text a , #col-4213 .btn2-cont .bhv-text a , #col-4213 .btn1-cont button , #col-4213 .btn2-cont button {
	padding: var(--btn-padding, 1rem 2rem);
	font-size: var(--btn-font-size, 1rem);
	font-weight: var(--btn-font-weight, 600);
	border-radius: var(--btn-border-radius, 0.5rem);
	border: var(--btn-border, 2px solid currentColor);
	background: var(--btn-bg, transparent);
	color: var(--btn-color, #fff) !important;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
}
#col-4213 .btn1-cont .bhv-text a {
	background: var(--btn1-bg, var(--hicolor, #FFE600));
	color: var(--btn1-color, var(--bgcolor, #000)) !important;
	border: var(--btn1-border, 2px solid var(--hicolor, #FFE600));
}
#col-4213 .btn2-cont .bhv-text a {
	background: var(--btn2-bg, transparent);
	color: var(--btn2-color, #fff) !important;
	border: var(--btn2-border, 2px solid currentColor);
}
#col-4213 .btn1-cont .bhv-text a:hover {
	transform: var(--btn-hover-transform, translateY(-2px));
	background: var(--btn1-hover-bg, transparent);
	color: var(--btn1-hover-color, var(--hicolor, #FFE600)) !important;
}
#col-4213 .btn2-cont .bhv-text a:hover {
	transform: var(--btn-hover-transform, translateY(-2px));
	background: var(--btn2-hover-bg, rgba(255,255,255,0.1));
}
#col-4213 .btn1-cont .bhv-text .fa , #col-4213 .btn2-cont .bhv-text .fa {
	margin-left: 0.5rem;
}
#col-4213 .Grid.style1 {
	--comment: 'Default Style - Erste Button highlighted, zweite transparent mit Border';
	--grid-bg: transparent;
	--grid-padding: 4rem 2rem;
	--grid-gap: 1.5rem;
	--grid-border-radius: 0;
	--section-badge-bg: transparent;
	--section-badge-color: var(--hicolor, #FFE600);
	--section-badge-padding: 0;
	--section-badge-font-size: 0.9rem;
	--section-badge-font-weight: 600;
	--section-badge-letter-spacing: 0.1em;
	--section-badge-text-transform: uppercase;
	--section-badge-border-radius: 0;
	--header-font-size: 3.5rem;
	--header-line-height: 1.1;
	--header-font-weight: 700;
	--text-font-size: 1.1rem;
	--text-line-height: 1.6;
	--text-color: #A0A0A0;
	--btn-padding: 1rem 2rem;
	--btn-font-size: 1rem;
	--btn-font-weight: 600;
	--btn-border-radius: 0.5rem;
	--btn1-bg: var(--hicolor, #FFE600);
	--btn1-color: var(--bgcolor, #000);
	--btn1-border: 2px solid var(--hicolor, #FFE600);
	--btn1-hover-bg: transparent;
	--btn1-hover-color: var(--hicolor, #FFE600);
	--btn2-bg: transparent;
	--btn2-color: #fff;
	--btn2-border: 2px solid currentColor;
	--btn2-hover-bg: rgba(255,255,255,0.1);
	--btn-gap: 1rem;
	--btn-hover-transform: translateY(-2px);
}
#col-4213 .Grid.style2 {
	--comment: 'Card Style - Grid mit Background, beide Buttons mit Hintergrund';
	--grid-bg: var(--bgcolor2, rgba(255,255,255,0.05));
	--grid-padding: 3rem 2.5rem;
	--grid-gap: 1.5rem;
	--grid-border-radius: 1.5rem;
	--section-badge-bg: var(--hicolor, #FFE600);
	--section-badge-color: var(--bgcolor, #000);
	--section-badge-padding: 0.5rem 1.2rem;
	--section-badge-font-size: 0.8rem;
	--section-badge-font-weight: 700;
	--section-badge-letter-spacing: 0.12em;
	--section-badge-text-transform: uppercase;
	--section-badge-border-radius: 9999px;
	--header-font-size: 3.2rem;
	--header-line-height: 1.15;
	--header-font-weight: 700;
	--text-font-size: 1.05rem;
	--text-line-height: 1.65;
	--text-color: #B0B0B0;
	--btn-padding: 1rem 2rem;
	--btn-font-size: 1rem;
	--btn-font-weight: 600;
	--btn-border-radius: 0.6rem;
	--btn1-bg: var(--hicolor, #FFE600);
	--btn1-color: var(--bgcolor, #000);
	--btn1-border: 2px solid var(--hicolor, #FFE600);
	--btn1-hover-bg: transparent;
	--btn1-hover-color: var(--hicolor, #FFE600);
	--btn2-bg: rgba(255,255,255,0.1);
	--btn2-color: #fff;
	--btn2-border: 2px solid rgba(255,255,255,0.3);
	--btn2-hover-bg: rgba(255,255,255,0.2);
	--btn-gap: 1rem;
	--btn-hover-transform: translateY(-2px);
}
#col-4213 .Grid.style3 {
	--comment: 'Minimal Style - Buttons nur Text ohne Border und Background';
	--grid-bg: transparent;
	--grid-padding: 3rem 2rem;
	--grid-gap: 1.2rem;
	--grid-border-radius: 0;
	--section-badge-bg: transparent;
	--section-badge-color: var(--hicolor, #FFE600);
	--section-badge-padding: 0;
	--section-badge-font-size: 0.85rem;
	--section-badge-font-weight: 600;
	--section-badge-letter-spacing: 0.1em;
	--section-badge-text-transform: uppercase;
	--section-badge-border-radius: 0;
	--header-font-size: 3rem;
	--header-line-height: 1.2;
	--header-font-weight: 700;
	--text-font-size: 1.05rem;
	--text-line-height: 1.7;
	--text-color: #999;
	--btn-padding: 0.5rem 0;
	--btn-font-size: 1rem;
	--btn-font-weight: 600;
	--btn-border-radius: 0;
	--btn1-bg: transparent;
	--btn1-color: var(--hicolor, #FFE600);
	--btn1-border: none;
	--btn1-hover-bg: transparent;
	--btn1-hover-color: #fff;
	--btn2-bg: transparent;
	--btn2-color: #fff;
	--btn2-border: none;
	--btn2-hover-bg: transparent;
	--btn-gap: 2rem;
	--btn-hover-transform: translateX(5px);
}
#col-4213 .Grid.style3 .btn1-cont .bhv-text a , #col-4213 .Grid.style3 .btn2-cont .bhv-text a {
	text-decoration: underline;
	text-underline-offset: 4px;
}
#col-4213 .Grid.style3 .btn1-cont .bhv-text a:hover , #col-4213 .Grid.style3 .btn2-cont .bhv-text a:hover {
	text-decoration: none;
}
#col-4238 {
	container-type: inline-size;
	margin-inline: 1rem;
}
#col-4238 .Grid {
	background: var(--grid-bg, transparent);
	padding: var(--grid-padding, 3rem 2rem);
	display: grid;
	gap: var(--grid-gap, 1.5rem);
	grid-template-areas: "section-badge" "Header" "Text" "btn1-cont" "btn2-cont";
	text-align: var(--grid-text-align, center);
	max-width: var(--grid-max-width, 800px);
	margin-inline: var(--grid-margin-inline, auto);
	border-radius: var(--grid-border-radius, 0);
}
#col-4238 .Grid .section-badge {
	grid-area: section-badge;
}
#col-4238 .section-badge > div {
	background: var(--section-badge-bg, transparent);
	display: inline-block;
	color: var(--section-badge-color, var(--hicolor, #FFE600));
	padding: var(--section-badge-padding, 0);
	font-size: var(--section-badge-font-size, 0.9rem);
	font-weight: var(--section-badge-font-weight, 600);
	letter-spacing: var(--section-badge-letter-spacing, 0.1em);
	text-transform: var(--section-badge-text-transform, uppercase);
	border-radius: var(--section-badge-border-radius, 0);
}
#col-4238 .Grid .Header {
	grid-area: Header;
}
#col-4238 .Header h2 {
	font-size: var(--header-font-size, 3.5rem);
	margin-block: 0;
	line-height: var(--header-line-height, 1.1);
	font-weight: var(--header-font-weight, 700);
}
#col-4238 .Grid .Text {
	grid-area: Text;
}
#col-4238 .Text p {
	font-size: var(--text-font-size, 1.1rem);
	line-height: var(--text-line-height, 1.6);
	color: var(--text-color, #A0A0A0);
	margin: 0;
}
#col-4238 .Grid .btn1-cont {
	grid-area: btn1-cont;
	display: flex;
	justify-content: var(--btn1-justify, end);
	gap: var(--btn-gap, 1rem);
	flex-wrap: wrap;
	align-items: center;
}
#col-4238 .Grid .btn2-cont {
	grid-area: btn2-cont;
	display: flex;
	justify-content: var(--btn2-justify, start);
	gap: var(--btn-gap, 1rem);
	flex-wrap: wrap;
	align-items: center;
}
#col-4238 .btn1-cont .bhv-text , #col-4238 .btn2-cont .bhv-text {
	margin: 0 !important;
}
#col-4238 .btn1-cont .bhv-text a , #col-4238 .btn2-cont .bhv-text a , #col-4238 .btn1-cont button , #col-4238 .btn2-cont button {
	padding: var(--btn-padding, 1rem 2rem);
	font-size: var(--btn-font-size, 1rem);
	font-weight: var(--btn-font-weight, 600);
	border-radius: var(--btn-border-radius, 0.5rem);
	border: var(--btn-border, 2px solid currentColor);
	background: var(--btn-bg, transparent);
	color: var(--btn-color, #fff) !important;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
}
#col-4238 .btn1-cont .bhv-text a {
	background: var(--btn1-bg, var(--hicolor, #FFE600));
	color: var(--btn1-color, var(--bgcolor, #000)) !important;
	border: var(--btn1-border, 2px solid var(--hicolor, #FFE600));
}
#col-4238 .btn2-cont .bhv-text a {
	background: var(--btn2-bg, transparent);
	color: var(--btn2-color, #fff) !important;
	border: var(--btn2-border, 2px solid currentColor);
}
#col-4238 .btn1-cont .bhv-text a:hover {
	transform: var(--btn-hover-transform, translateY(-2px));
	background: var(--btn1-hover-bg, transparent);
	color: var(--btn1-hover-color, var(--hicolor, #FFE600)) !important;
}
#col-4238 .btn2-cont .bhv-text a:hover {
	transform: var(--btn-hover-transform, translateY(-2px));
	background: var(--btn2-hover-bg, rgba(255,255,255,0.1));
}
#col-4238 .btn1-cont .bhv-text .fa , #col-4238 .btn2-cont .bhv-text .fa {
	margin-left: 0.5rem;
}
#col-4238 .Grid.style1 {
	--comment: 'Default Style - Erste Button highlighted, zweite transparent mit Border';
	--grid-bg: transparent;
	--grid-padding: 4rem 2rem;
	--grid-gap: 1.5rem;
	--grid-border-radius: 0;
	--section-badge-bg: transparent;
	--section-badge-color: var(--hicolor, #FFE600);
	--section-badge-padding: 0;
	--section-badge-font-size: 0.9rem;
	--section-badge-font-weight: 600;
	--section-badge-letter-spacing: 0.1em;
	--section-badge-text-transform: uppercase;
	--section-badge-border-radius: 0;
	--header-font-size: 3.5rem;
	--header-line-height: 1.1;
	--header-font-weight: 700;
	--text-font-size: 1.1rem;
	--text-line-height: 1.6;
	--text-color: #A0A0A0;
	--btn-padding: 1rem 2rem;
	--btn-font-size: 1rem;
	--btn-font-weight: 600;
	--btn-border-radius: 0.5rem;
	--btn1-bg: var(--hicolor, #FFE600);
	--btn1-color: var(--bgcolor, #000);
	--btn1-border: 2px solid var(--hicolor, #FFE600);
	--btn1-hover-bg: transparent;
	--btn1-hover-color: var(--hicolor, #FFE600);
	--btn2-bg: transparent;
	--btn2-color: #fff;
	--btn2-border: 2px solid currentColor;
	--btn2-hover-bg: rgba(255,255,255,0.1);
	--btn-gap: 1rem;
	--btn-hover-transform: translateY(-2px);
}
#col-4238 .Grid.style2 {
	--comment: 'Card Style - Grid mit Background, beide Buttons mit Hintergrund';
	--grid-bg: var(--bgcolor2, rgba(255,255,255,0.05));
	--grid-padding: 3rem 2.5rem;
	--grid-gap: 1.5rem;
	--grid-border-radius: 1.5rem;
	--section-badge-bg: var(--hicolor, #FFE600);
	--section-badge-color: var(--bgcolor, #000);
	--section-badge-padding: 0.5rem 1.2rem;
	--section-badge-font-size: 0.8rem;
	--section-badge-font-weight: 700;
	--section-badge-letter-spacing: 0.12em;
	--section-badge-text-transform: uppercase;
	--section-badge-border-radius: 9999px;
	--header-font-size: 3.2rem;
	--header-line-height: 1.15;
	--header-font-weight: 700;
	--text-font-size: 1.05rem;
	--text-line-height: 1.65;
	--text-color: #B0B0B0;
	--btn-padding: 1rem 2rem;
	--btn-font-size: 1rem;
	--btn-font-weight: 600;
	--btn-border-radius: 0.6rem;
	--btn1-bg: var(--hicolor, #FFE600);
	--btn1-color: var(--bgcolor, #000);
	--btn1-border: 2px solid var(--hicolor, #FFE600);
	--btn1-hover-bg: transparent;
	--btn1-hover-color: var(--hicolor, #FFE600);
	--btn2-bg: rgba(255,255,255,0.1);
	--btn2-color: #fff;
	--btn2-border: 2px solid rgba(255,255,255,0.3);
	--btn2-hover-bg: rgba(255,255,255,0.2);
	--btn-gap: 1rem;
	--btn-hover-transform: translateY(-2px);
}
#col-4238 .Grid.style3 {
	--comment: 'Minimal Style - Buttons nur Text ohne Border und Background';
	--grid-bg: transparent;
	--grid-padding: 3rem 2rem;
	--grid-gap: 1.2rem;
	--grid-border-radius: 0;
	--section-badge-bg: transparent;
	--section-badge-color: var(--hicolor, #FFE600);
	--section-badge-padding: 0;
	--section-badge-font-size: 0.85rem;
	--section-badge-font-weight: 600;
	--section-badge-letter-spacing: 0.1em;
	--section-badge-text-transform: uppercase;
	--section-badge-border-radius: 0;
	--header-font-size: 3rem;
	--header-line-height: 1.2;
	--header-font-weight: 700;
	--text-font-size: 1.05rem;
	--text-line-height: 1.7;
	--text-color: #999;
	--btn-padding: 0.5rem 0;
	--btn-font-size: 1rem;
	--btn-font-weight: 600;
	--btn-border-radius: 0;
	--btn1-bg: transparent;
	--btn1-color: var(--hicolor, #FFE600);
	--btn1-border: none;
	--btn1-hover-bg: transparent;
	--btn1-hover-color: #fff;
	--btn2-bg: transparent;
	--btn2-color: #fff;
	--btn2-border: none;
	--btn2-hover-bg: transparent;
	--btn-gap: 2rem;
	--btn-hover-transform: translateX(5px);
}
#col-4238 .Grid.style3 .btn1-cont .bhv-text a , #col-4238 .Grid.style3 .btn2-cont .bhv-text a {
	text-decoration: underline;
	text-underline-offset: 4px;
}
#col-4238 .Grid.style3 .btn1-cont .bhv-text a:hover , #col-4238 .Grid.style3 .btn2-cont .bhv-text a:hover {
	text-decoration: none;
}
#cont-4253 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
	--section-padding-top: 50px;
	--section-padding-bottom: 50px;
}
@container (max-width: 799px) {
	.design-showcase .Grid.arrangment1 {
		--comment: 'Schmal:alles einspaltig, Video 100%';
		grid-template-columns: 1fr;
		grid-template-areas: "Kategorie-Badge" "Header" "Video" "Text" "tags" "Knopf-container";
	}
	.design-showcase .Grid.arrangment2 {
		--comment: 'Schmal:Badge und Header oben, dann Video, Text, Tags, Buttons';
		grid-template-columns: 1fr;
		grid-template-areas: "Kategorie-Badge" "Header" "Text" "Video" "tags" "Knopf-container";
	}
	.design-showcase .Grid.arrangment2 .tags {
		justify-content: center;
		margin-block: 2rem;
	}
	.design-showcase .Grid.arrangment2 .tag {
		font-size: 1rem;
		padding: 1rem;
		width: calc(50% - 40px);
		text-align: center;
	}
	.design-showcase .Grid.arrangment2 .tag .highlighted {
		font-size: 1.4rem;
	}
	.design-showcase .Grid.arrangment3 {
		--comment: 'Schmal:Video zuerst, dann Badge, Header, Text, Tags, Buttons';
		grid-template-columns: 1fr;
		grid-template-areas: "Video" "Kategorie-Badge" "Header" "Text" "tags" "Knopf-container";
	}
	.design-showcase .Grid.arrangment4 {
		--comment: 'Schmal:Badge, Header, Text, Video, Tags, Buttons';
		grid-template-columns: 1fr;
		grid-template-areas: "Kategorie-Badge" "Header" "Text" "Video" "tags" "Knopf-container";
	}
	.design-showcase .Grid.arrangment5 {
		--comment: 'Schmal:Badge, Video, Tags, Header, Text, Buttons';
		grid-template-columns: 1fr;
		grid-template-areas: "Kategorie-Badge" "Video" "tags" "Header" "Text" "Knopf-container";
	}
	.design-showcase .Grid.arrangment6 {
		--comment: 'Schmal:Header, Badge, Text, Tags, Video, Buttons';
		grid-template-columns: 1fr;
		grid-template-areas: "Header" "Kategorie-Badge" "Text" "tags" "Video" "Knopf-container";
	}
	.design-showcase .Grid.style1, .design-showcase .Grid.style2, .design-showcase .Grid.style3, .design-showcase .Grid.style4, .design-showcase .Grid.style5 {
		--grid-padding: 1.5rem 1rem;
		--grid-gap: 0.8rem;
		--badge-font-size: 0.65rem;
		--badge-padding: 0.5rem 1rem;
		--header-font-size: 2rem;
		--tag-font-size: 0.75rem;
		--tag-padding: 0.5rem 0.9rem;
		--tags-gap: 0.5rem;
	}
	.design-showcase .Grid.style3 {
		--grid-padding: 2rem 1rem;
		--header-font-size: 2.2rem;
	}
	.design-showcase .Grid.style4 {
		--grid-padding: 1.25rem 1rem;
		--header-font-size: 1.8rem;
	}
	.design-showcase .Grid.style5 {
		--grid-padding: 1.5rem 1rem;
		--header-font-size: 2.2rem;
	}
}

@container (min-width: 800px) {
	.design-showcase .Grid.arrangment1 {
		--comment: '2 Spalten;Video links 50%, Inhalt rechts vertikal (wie Bild 1)';
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "Video Kategorie-Badge" "Video Header" "Video Text" "Video tags" "Video Knopf-container";
		align-items: start;
	}
	.design-showcase .Grid.arrangment2 {
		--comment: '2 Spalten;Badge und Header zentriert über Video, dann 2-spaltig Content (wie Bild 2)';
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-template-areas: "Kategorie-Badge Kategorie-Badge" "Header Header" "Text Text" "Video Video" "tags tags" "Knopf-container Knopf-container";
		align-items: center;
		text-align: center;
	}
	.design-showcase .Grid.arrangment2 .Text {
		max-width: 810px;
		margin-inline: auto;
	}
	.design-showcase .Grid.arrangment2 .tags {
		justify-content: center;
		margin-block: 2rem;
	}
	.design-showcase .Grid.arrangment2 .tag {
		font-size: 1rem;
		padding: 1rem;
		width: calc(25% - 44px);
		max-width: 220px;
		text-align: center;
	}
	.design-showcase .Grid.arrangment2 .tag .highlighted {
		font-size: 1.4rem;
	}
	.design-showcase .Grid.arrangment3 {
		--comment: '2 Spalten;Header und Text links, Video rechts (wie Bild 3)';
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		grid-template-areas: "Kategorie-Badge Video" "Header Video" "Text Video" "tags Video" "Knopf-container Video";
		align-items: start;
	}
	.design-showcase .Grid.arrangment4 {
		--comment: 'Magazin-Layout:Badge und Header über beide Spalten;Video links, Text und Tags rechts, Buttons unten (wie Bild 4)';
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto 1fr auto auto;
		grid-template-areas: "Kategorie-Badge Kategorie-Badge" "Header Header" "Video Text" "Video tags" "Knopf-container Knopf-container";
		align-items: start;
	}
	.design-showcase .Grid.arrangment5 {
		--comment: 'Hero-Video oben 100%;darunter Badge und Header links, Tags rechts;Text zuletzt über beide Spalten;Buttons zentriert unten';
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto auto auto;
		grid-template-areas: "Video Video" "Kategorie-Badge tags" "Header tags" "Text Text" "Knopf-container Knopf-container";
		align-items: start;
	}
	.design-showcase .Grid.arrangment6 {
		--comment: 'Badge und Header über beide Spalten;Text links 60%, Video rechts 40%;Tags unter Video;Buttons über beide Spalten unten';
		grid-template-columns: 3fr 2fr;
		grid-template-rows: auto auto 1fr auto auto;
		grid-template-areas: "Kategorie-Badge Kategorie-Badge" "Header Header" "Text Video" "Text tags" "Knopf-container Knopf-container";
		align-items: start;
	}
	#col-4213 .Grid.arrangment1 {
		--comment: 'Centered - Everything centered, buttons meet in middle';
		grid-template-columns: auto auto;
		grid-template-areas: "section-badge section-badge" "Header Header" "Text Text" "btn1-cont btn2-cont";
		text-align: center;
		max-width: 800px;
		margin-inline: auto;
		justify-items: center;
		justify-content: center;
	}
	#col-4213 .Grid.arrangment1 .btn1-cont {
		justify-content: end;
	}
	#col-4213 .Grid.arrangment1 .btn2-cont {
		justify-content: start;
	}
	#col-4213 .Grid.arrangment2 {
		--comment: 'Left Aligned - Everything left, buttons side by side on left';
		grid-template-columns: auto auto 1fr;
		grid-template-areas: "section-badge section-badge section-badge" "Header Header Header" "Text Text Text" "btn1-cont btn2-cont .";
		text-align: left;
		max-width: 800px;
		margin-inline: 0;
		justify-items: start;
	}
	#col-4213 .Grid.arrangment2 .btn1-cont {
		justify-content: start;
	}
	#col-4213 .Grid.arrangment2 .btn2-cont {
		justify-content: start;
	}
	#col-4213 .Grid.arrangment3 {
		--comment: 'Centered Minimal - Centered, no badge, no second button';
		grid-template-columns: auto;
		grid-template-areas: "Header" "Text" "btn1-cont";
		text-align: center;
		max-width: 700px;
		margin-inline: auto;
		justify-items: center;
	}
	#col-4213 .Grid.arrangment3 .section-badge {
		display: none;
	}
	#col-4213 .Grid.arrangment3 .btn2-cont {
		display: none;
	}
	#col-4213 .Grid.arrangment3 .btn1-cont {
		justify-content: center;
	}
	#col-4238 .Grid.arrangment1 {
		--comment: 'Centered - Everything centered, buttons meet in middle';
		grid-template-columns: auto auto;
		grid-template-areas: "section-badge section-badge" "Header Header" "Text Text" "btn1-cont btn2-cont";
		text-align: center;
		max-width: 800px;
		margin-inline: auto;
		justify-items: center;
		justify-content: center;
	}
	#col-4238 .Grid.arrangment1 .btn1-cont {
		justify-content: end;
	}
	#col-4238 .Grid.arrangment1 .btn2-cont {
		justify-content: start;
	}
	#col-4238 .Grid.arrangment2 {
		--comment: 'Left Aligned - Everything left, buttons side by side on left';
		grid-template-columns: auto auto 1fr;
		grid-template-areas: "section-badge section-badge section-badge" "Header Header Header" "Text Text Text" "btn1-cont btn2-cont .";
		text-align: left;
		max-width: 800px;
		margin-inline: 0;
		justify-items: start;
	}
	#col-4238 .Grid.arrangment2 .btn1-cont {
		justify-content: start;
	}
	#col-4238 .Grid.arrangment2 .btn2-cont {
		justify-content: start;
	}
	#col-4238 .Grid.arrangment3 {
		--comment: 'Centered Minimal - Centered, no badge, no second button';
		grid-template-columns: auto;
		grid-template-areas: "Header" "Text" "btn1-cont";
		text-align: center;
		max-width: 700px;
		margin-inline: auto;
		justify-items: center;
	}
	#col-4238 .Grid.arrangment3 .section-badge {
		display: none;
	}
	#col-4238 .Grid.arrangment3 .btn2-cont {
		display: none;
	}
	#col-4238 .Grid.arrangment3 .btn1-cont {
		justify-content: center;
	}
}

@container (max-width: 500px) {
	#col-4213 .Grid.arrangment1 , #col-4213 .Grid.arrangment2 , #col-4213 .Grid.arrangment3 {
		grid-template-columns: 1fr;
		grid-template-areas: "section-badge" "Header" "Text" "btn1-cont" "btn2-cont";
		text-align: center;
		max-width: 100%;
		margin-inline: auto;
		--grid-padding: 2rem 1rem;
		--grid-gap: 1rem;
		--section-badge-font-size: 0.75rem;
		--header-font-size: 1.8rem;
		--text-font-size: 0.95rem;
		--btn-padding: 0.85rem 1.5rem;
		--btn-font-size: 0.9rem;
	}
	#col-4213 .Grid.arrangment1 .btn1-cont , #col-4213 .Grid.arrangment1 .btn2-cont , #col-4213 .Grid.arrangment2 .btn1-cont , #col-4213 .Grid.arrangment2 .btn2-cont {
		justify-content: center;
		margin-left: 0;
	}
	#col-4213 .Grid.arrangment3 {
		grid-template-areas: "Header" "Text" "btn1-cont";
	}
	#col-4213 .Grid.arrangment3 .section-badge {
		display: none;
	}
	#col-4213 .Grid.arrangment3 .btn2-cont {
		display: none;
	}
	#col-4213 .Grid.style2.arrangment1 , #col-4213 .Grid.style2.arrangment2 , #col-4213 .Grid.style2.arrangment3 {
		--grid-padding: 2rem 1.5rem;
		--header-font-size: 1.8rem;
	}
	#col-4213 .Grid.style3.arrangment1 , #col-4213 .Grid.style3.arrangment2 , #col-4213 .Grid.style3.arrangment3 {
		--btn-padding: 0.5rem 0;
	}
	#col-4238 .Grid.arrangment1 , #col-4238 .Grid.arrangment2 , #col-4238 .Grid.arrangment3 {
		grid-template-columns: 1fr;
		grid-template-areas: "section-badge" "Header" "Text" "btn1-cont" "btn2-cont";
		text-align: center;
		max-width: 100%;
		margin-inline: auto;
		--grid-padding: 2rem 1rem;
		--grid-gap: 1rem;
		--section-badge-font-size: 0.75rem;
		--header-font-size: 1.8rem;
		--text-font-size: 0.95rem;
		--btn-padding: 0.85rem 1.5rem;
		--btn-font-size: 0.9rem;
	}
	#col-4238 .Grid.arrangment1 .btn1-cont , #col-4238 .Grid.arrangment1 .btn2-cont , #col-4238 .Grid.arrangment2 .btn1-cont , #col-4238 .Grid.arrangment2 .btn2-cont {
		justify-content: center;
		margin-left: 0;
	}
	#col-4238 .Grid.arrangment3 {
		grid-template-areas: "Header" "Text" "btn1-cont";
	}
	#col-4238 .Grid.arrangment3 .section-badge {
		display: none;
	}
	#col-4238 .Grid.arrangment3 .btn2-cont {
		display: none;
	}
	#col-4238 .Grid.style2.arrangment1 , #col-4238 .Grid.style2.arrangment2 , #col-4238 .Grid.style2.arrangment3 {
		--grid-padding: 2rem 1.5rem;
		--header-font-size: 1.8rem;
	}
	#col-4238 .Grid.style3.arrangment1 , #col-4238 .Grid.style3.arrangment2 , #col-4238 .Grid.style3.arrangment3 {
		--btn-padding: 0.5rem 0;
	}
}

@container (min-width: 501px) and (max-width: 799px) {
	#col-4213 .Grid.arrangment1 , #col-4213 .Grid.arrangment2 , #col-4213 .Grid.arrangment3 {
		grid-template-columns: auto auto;
		grid-template-areas: "section-badge section-badge" "Header Header" "Text Text" "btn1-cont btn2-cont";
		text-align: center;
		max-width: 100%;
		margin-inline: auto;
		justify-content: center;
		--grid-padding: 3rem 1.5rem;
		--section-badge-font-size: 0.85rem;
		--header-font-size: 2.6rem;
		--text-font-size: 1.05rem;
	}
	#col-4213 .Grid.arrangment1 .btn1-cont {
		justify-content: end;
	}
	#col-4213 .Grid.arrangment1 .btn2-cont {
		justify-content: start;
	}
	#col-4213 .Grid.arrangment2 .btn1-cont {
		justify-content: end;
	}
	#col-4213 .Grid.arrangment2 .btn2-cont {
		justify-content: start;
		margin-left: 0;
	}
	#col-4213 .Grid.arrangment3 {
		grid-template-columns: 1fr;
		grid-template-areas: "Header" "Text" "btn1-cont";
	}
	#col-4213 .Grid.arrangment3 .section-badge {
		display: none;
	}
	#col-4213 .Grid.arrangment3 .btn2-cont {
		display: none;
	}
	#col-4213 .Grid.arrangment3 .btn1-cont {
		justify-content: center;
	}
	#col-4238 .Grid.arrangment1 , #col-4238 .Grid.arrangment2 , #col-4238 .Grid.arrangment3 {
		grid-template-columns: auto auto;
		grid-template-areas: "section-badge section-badge" "Header Header" "Text Text" "btn1-cont btn2-cont";
		text-align: center;
		max-width: 100%;
		margin-inline: auto;
		justify-content: center;
		--grid-padding: 3rem 1.5rem;
		--section-badge-font-size: 0.85rem;
		--header-font-size: 2.6rem;
		--text-font-size: 1.05rem;
	}
	#col-4238 .Grid.arrangment1 .btn1-cont {
		justify-content: end;
	}
	#col-4238 .Grid.arrangment1 .btn2-cont {
		justify-content: start;
	}
	#col-4238 .Grid.arrangment2 .btn1-cont {
		justify-content: end;
	}
	#col-4238 .Grid.arrangment2 .btn2-cont {
		justify-content: start;
		margin-left: 0;
	}
	#col-4238 .Grid.arrangment3 {
		grid-template-columns: 1fr;
		grid-template-areas: "Header" "Text" "btn1-cont";
	}
	#col-4238 .Grid.arrangment3 .section-badge {
		display: none;
	}
	#col-4238 .Grid.arrangment3 .btn2-cont {
		display: none;
	}
	#col-4238 .Grid.arrangment3 .btn1-cont {
		justify-content: center;
	}
}
