/* ==========================================================================
   content-styles.css – CSS fuer DB-Content (Kategoriebeschreibungen, CMS-Seiten)
   Diese Klassen werden im Admin-CMS-Editor verwendet und muessen auf
   Kategorie- und Content-Seiten verfuegbar sein.

   FARBSCHEMA OPTIMIERT: 2026-03-09
   ─────────────────────────────────────────────────────────────────────────
   Konsolidierung:
     GRUEN  #759f26 / #7EA000 / #7ba000 / #4CAF50 / #2E8B57 / #10b981
            → --kb-green  +  --kb-green-hover
     BLAU   #0066cc / #0056b3 / #003d80 / #008bb5
            → --kb-blue   +  --kb-blue-hover  (About-Blau entfernt → green)
     GRAU   #333/#444/#555/#666/#777
            → --kb-text   +  --kb-text-muted
     BG     #f9f9f9/#F5F5F5/#f8f8f8/#eee
            → --kb-bg-light  +  --kb-bg-medium
     BORDER #D4D4D4/#e0e0e0/#ddd/#e8e8e8/#e5e7eb
            → --kb-border
   ========================================================================== */

/* --- CSS-Variablen (Master) --------------------------------------------- */
:root {
	/* Brand Gruen */
	--kb-green:       #759f26;
	--kb-green-hover: #5d8319;
	--kb-green-bg:    #f0f5e6;  /* helles Gruen fuer Flaechen (ersetzt #eaf4ff) */

	/* Akzent Blau (CTA, Links ausserhalb Brand-Kontext) */
	--kb-blue:        #0056b3;
	--kb-blue-hover:  #003d80;

	/* Status */
	--kb-error:       #cc0000;
	--kb-success:     #1c7700;

	/* Text  (4 Grau-Stufen) */
	--kb-text:        #333333;  /* Primaertext, Ueberschriften */
	--kb-text-muted:  #666666;  /* Sekundaertext, Absaetze */

	/* Hintergruende */
	--kb-bg-light:    #f5f5f5;  /* Sections, Container, Karten */
	--kb-bg-medium:   #dbdbdb;  /* Infoboxen, SingleField */
	--kb-white:       #ffffff;

	/* Border (1 einheitlicher Wert) */
	--kb-border:      #e0e0e0;

	/* Spezial */
	--kb-header-dark: #545454;  /* Categoryheader Hintergrund */
}

/* --- Content Section ---------------------------------------------------- */
.content section {
	background-color: var(--kb-bg-light);
	padding: 20px;
	box-sizing: border-box;
}

/* --- Jetztkaufen Button ------------------------------------------------- */
.jetztkaufen {
	background-color: var(--kb-green);
	border: none;
	color: white;
	padding: 0.1em 0.1em;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	transition-duration: 0.4s;
	border-radius: 0.8em / 0.8em;
}
.jetztkaufen a { text-decoration: none; color: white; }
.jetztkaufen a:hover, .jetztkaufen a:active { transition-duration: 0.4s; color: black; }
.jetztkaufen1 { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); }

/* --- Catbox / JK -------------------------------------------------------- */
.jk2 { min-height: 300px; margin: 15px; }
.jk4 { min-height: 300px; overflow: hidden; }
.catbox {
	border-radius: 0.8em / 0.8em;
	border: 1px solid var(--kb-border);
	padding: 0.1em 0.1em;
	background-color: var(--kb-white);
	box-sizing: border-box;
	transition: box-shadow 0.3s ease;
}
.catbox:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* --- SingleField -------------------------------------------------------- */
.singleField {
	float: left;
	width: 20%;
	margin: 1%;
	font-weight: 200;
	min-height: 60px;
	box-sizing: border-box;
	border-radius: 3px 8px 8px 8px;
	background-color: var(--kb-bg-medium);
	line-height: 30px;
	text-align: center;
	padding-top: 1%;
}

/* --- Infobox ------------------------------------------------------------ */
.infobox section { padding: 10px; }
.infobox2 section {
	padding: 20px;
	box-sizing: border-box;
	border-radius: 3px 8px 8px 8px;
	background-color: var(--kb-bg-medium);
}
.infobox a:link, .infobox a:visited, .infobox a:hover { text-decoration: none; }
.infobox2 a:link, .infobox2 a:visited, .infobox2 a:hover { text-decoration: none; }

/* --- Teaser ------------------------------------------------------------- */
.teaser {
	font-size: 1.3em;
	font-family: "Oswald", sans-serif;
	font-weight: 400;
}
.teaser::before { content: "> "; }
.teaser::after { content: " <"; }
.teaserh2 {
	font-size: 1.0em;
	font-family: "anton", sans-serif;
	font-weight: 300;
	vertical-align: middle;
}

/* --- Fronttext / Misc --------------------------------------------------- */
.fronttext { padding: 1.0rem; }
.infoDatenCheck { font-size: 0.8rem; padding: 0; margin: 0; }
.imagePreview { max-height: 500px; display: flex; }
.imgcenter { margin: auto; display: block; }
.custom0 { padding: 30px 0px; }

/* --- Custom-Box --------------------------------------------------------- */
.custom-box {
	width: 100%;
	background: var(--kb-white);
	border: 1px solid var(--kb-border);
	transition: 0.3s;
	padding-bottom: 30px;
	padding-top: 10px;
	padding-left: 10px;
	margin-bottom: 20px;
	overflow: auto;
	box-sizing: border-box;
}
.custom-box:hover { box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%); }
.custom-box h4 { padding: 15px 20px 10px 20px; margin-bottom: 0; font-weight: bold; }
.custom-box h3 { padding: 15px 20px 10px 20px; margin-bottom: 0; font-weight: bold; }
.custom-box p { padding: 0 20px; }
.custom-box a { padding: 0 20px; text-decoration: none; font-weight: bold; }
.custom-box ul li:before { color: var(--kb-green); margin-right: 8px; }
.custom-box ul { font-size: 1rem; color: var(--kb-text-muted); list-style-type: none; padding-left: 1.5rem; }

/* --- Anwendungsbereich -------------------------------------------------- */
.anwendungsbereich { margin-bottom: 30px; }
.anwendungsbereich h2 { color: var(--kb-text); border-bottom: 2px solid var(--kb-border); padding-bottom: 10px; margin-bottom: 20px; }
.anwendungsbereich .row { margin-bottom: 30px; }
.anwendungsbereich img { max-width: 100%; height: auto; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.anwendungsbereich h3 { color: var(--kb-text); margin-top: 15px; }
.anwendungsbereich p { color: var(--kb-text-muted); line-height: 1.6; }
.anwendungsbereich a { color: var(--kb-blue); text-decoration: none; }
.anwendungsbereich a:hover { text-decoration: underline; }

/* --- Tip-Box ------------------------------------------------------------ */
.tip-box { background-color: var(--kb-bg-light); border-left: 4px solid var(--kb-blue); padding: 15px; margin-top: 20px; }
.tip-box h3 { color: var(--kb-blue); margin-top: 0; }

/* --- Custom-Container --------------------------------------------------- */
.custom-container {
	background-color: var(--kb-bg-light);
	padding: 20px;
	border: 1px solid var(--kb-border);
	border-radius: 6px;
	margin: 40px auto;
	overflow: auto;
	box-sizing: border-box;
}
.custom-header { color: var(--kb-green); font-size: 2em; margin-bottom: 20px; }
.custom-lead { font-size: 1.2em; margin-bottom: 30px; }
.custom-section-header { font-size: 1.8em; margin-bottom: 15px; }
.custom-subheader { font-size: 1.5em; color: var(--kb-text); margin-bottom: 15px; }
.custom-paragraph { margin-bottom: 30px; }
.custom-list { list-style: none; padding-left: 0; margin-bottom: 30px; }
.custom-ordered-list { counter-reset: step; padding-left: 0; }
.custom-ordered-list li { counter-increment: step; margin-bottom: 10px; }
.custom-ordered-list li:before { content: counter(step) '. '; font-weight: bold; font-size: 1.2em; margin-right: 10px; }
.custom-button-container { margin-bottom: 30px; }
.custom-warning { padding: 10px; background-color: var(--kb-bg-light); border: 1px solid var(--kb-border); margin-bottom: 30px; }

/* --- Categoryheader / Boxheader ----------------------------------------- */
.categoryheader {
	font-size: 1.3em;
	padding: 15px;
	color: var(--kb-white);
	background-color: var(--kb-header-dark);
	border-left: 15px solid var(--kb-green);
	margin-top: 15px;
}
.categoryheader h1 { background-color: transparent; color: var(--kb-white); }
.boxheader {
	padding: 20px;
	background-color: var(--kb-green);
	border-radius: 5px;
	margin-bottom: 20px;
	text-align: center;
	box-sizing: border-box;
}
.boxheader h1 { background-color: transparent; color: var(--kb-white); }
.boxheader h2,
.boxheader .subheader-title { color: var(--kb-white); font-size: 1em; font-weight: 400; }
.header-title {
	font-size: 2em;
	margin: 0;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	color: var(--kb-white);
	line-height: 1.3;
	text-align: center;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}
.subheader-title {
	font-size: 0.85em;
	margin: 10px 0 0;
	font-weight: 400;
	color: var(--kb-white);
	text-align: center;
	line-height: 1.4;
}
.boxcontent {
	background-color: var(--kb-bg-light);
	border-radius: 5px;
	color: var(--kb-text);
	font-size: 1em;
	line-height: 1.6;
}

/* --- Key Benefits ------------------------------------------------------- */
.key-benefits { list-style-type: disc; padding-left: 20px; line-height: 1.6; margin-top: 15px; }
.key-benefits li { margin-bottom: 8px; }
.product-info { margin-top: 20px; margin-bottom: 20px; line-height: 1.6; }

/* --- CTA Button --------------------------------------------------------- */
.cta-button-container { text-align: center; margin: 20px 0; }
.cta-button {
	padding: 10px 20px;
	background-color: var(--kb-blue);
	color: var(--kb-white);
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}
.cta-button:hover { background-color: var(--kb-blue-hover); }

/* --- Custom-Icon-List --------------------------------------------------- */
.custom-icon-list { list-style: none; padding-left: 0; margin: 0; }
.custom-icon-list li {
	display: flex;
	align-items: center;
	padding: 8px 0;
	font-size: 1em;
	line-height: 1.5;
	color: var(--kb-text);
	border-bottom: 1px solid var(--kb-border);
}
.custom-icon-list li i {
	color: var(--kb-green);
	margin-right: 8px;
	font-size: 1.2em;
	width: auto;
	height: auto;
	background: none;
	transition: none;
	vertical-align: middle;
	margin-top: 0;
}

/* --- FAQ-Section -------------------------------------------------------- */
.faq-section {
	background-color: var(--kb-green-bg);
	padding: 20px;
	border-radius: 8px;
	margin: 40px auto;
	max-width: 1100px;
}
.faq-section h2 { font-size: 1.8em; font-weight: bold; color: var(--kb-text); margin-bottom: 20px; }
.faq-section h3 { font-size: 1.8em; color: var(--kb-green); margin-bottom: 15px; text-align: center; }
.faq-section h4 { font-size: 1.2em; color: var(--kb-green); margin-top: 15px; margin-bottom: 5px; }
.faq-section p { line-height: 1.6; color: var(--kb-text); }

/* --- FAQ-Accordion ------------------------------------------------------ */
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
	border-radius: 8px;
	border: 1px solid var(--kb-border);
	background-color: var(--kb-white);
	box-shadow: 0 2px 4px rgba(0,0,0,0.06);
	overflow: hidden;
}
.faq-toggle { display: none; }
.faq-question {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	padding: 12px 16px;
	font-weight: 600;
	font-size: 1em;
	color: var(--kb-text);
	margin: 0;
	position: relative;
}
.faq-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--kb-green);
	flex-shrink: 0;
	position: relative;
}
.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	background-color: var(--kb-green);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px;  height: 10px; }
.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 16px;
	transition: max-height 0.25s ease-out, padding-top 0.25s ease-out, padding-bottom 0.25s ease-out;
}
.faq-answer p { margin: 10px 0 14px 0; font-size: 0.95em; color: var(--kb-text); line-height: 1.5; }
.faq-toggle:checked ~ .faq-answer { max-height: 500px; padding-top: 6px; padding-bottom: 10px; }
.faq-toggle:checked + .faq-question .faq-icon::after { opacity: 0; }
.faq-item:hover .faq-question { background-color: var(--kb-bg-light); }
.faq-item:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.10); }

/* --- Klebebox ----------------------------------------------------------- */
.klebebox {
	background-color: var(--kb-bg-light);
	border: 1px solid var(--kb-green);
	border-radius: 8px;
	padding: 18px 20px;
	margin: 10px 0 20px 0;
	box-shadow: 0px 4px 8px rgba(0,0,0,0.06);
	max-width: 700px;
}
.klebebox-list { list-style: none; padding: 0; margin: 0; }
.klebebox-list li {
	font-size: 15px;
	line-height: 1.55;
	margin-bottom: 10px;
	padding-left: 28px;
	position: relative;
	color: var(--kb-text);
}
.klebebox-list li .icon {
	color: var(--kb-green);
	font-weight: bold;
	font-size: 16px;
	position: absolute;
	left: 0;
	top: 1px;
}

/* --- ddcustom / ddflex -------------------------------------------------- */
.ddcustom-container {
	display: flex;
	gap: 10px;
	background-color: var(--kb-bg-light);
	padding: 20px;
	border: 1px solid var(--kb-green);
	border-radius: 5px;
}
.ddflex-box {
	flex: 1;
	max-width: 25%;
	background-color: var(--kb-white);
	border: 1px solid var(--kb-border);
	border-radius: 5px;
	padding: 10px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.ddflex-box img { max-width: 100%; height: auto; object-fit: cover; border-radius: 5px; }

/* --- Product-Description-Container -------------------------------------- */
.product-description-container {
	font-family: Arial, sans-serif;
	color: var(--kb-text);
	background-color: var(--kb-bg-light);
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px;
	box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}
.product-description-container h2 { color: var(--kb-green); font-size: 1.8em; margin-bottom: 10px; }
.product-description-container h3 { color: var(--kb-green); font-size: 1.5em; margin-top: 20px; margin-bottom: 10px; }
.product-description-container p { line-height: 1.6; margin-bottom: 15px; }

/* --- Example-List ------------------------------------------------------- */
.example-list { list-style-type: none; padding-left: 0; margin: 0; }
.example-list li { display: flex; align-items: center; margin-bottom: 15px; }
.example-list li i { font-size: 1.2em; color: var(--kb-green); margin-right: 10px; }
.example-list li strong { color: var(--kb-green); }
.final-note { margin-top: 20px; font-weight: bold; text-align: center; color: var(--kb-text-muted); }

/* --- Ueber-uns Design  (Blau → Gruen, einheitlicher Brand) -------------- */
.content-about {
	max-width: 900px;
	margin: 20px auto;
	padding: 25px;
	background: var(--kb-white);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.content-about h1 { font-size: 2rem; color: var(--kb-green); margin-bottom: 0.5rem; }
.content-about h2 { font-size: 1.5rem; color: var(--kb-green); border-left: 4px solid var(--kb-green); padding-left: 8px; margin-top: 2rem; margin-bottom: 1rem; }
.content-about ul { list-style: none; padding-left: 0; }
.content-about ul li { position: relative; padding-left: 1.8rem; margin-bottom: 0.5rem; }
.content-about ul li:before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--kb-green); font-weight: bold; }
.content-about p { margin-bottom: 1rem; }
.content-about hr { border: none; border-top: 1px solid var(--kb-border); margin: 2rem 0; }
.content-about a { color: var(--kb-green); text-decoration: none; }
.content-about a:hover { text-decoration: underline; }
.content-about small { color: var(--kb-text-muted); font-size: 0.85rem; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 600px) {
	.klebebox { padding: 15px; }
	.klebebox-list li { font-size: 14px; }
}

@media (max-width: 768px) {
	.header-title { font-size: 1.3em; }
	.subheader-title { font-size: 0.95em; }
	.faq-section { padding: 0 10px; }
	.faq-section h2 { font-size: 1.5em; }
	.faq-section h3 { font-size: 1.5em; }
	.faq-section h4 { font-size: 1.1em; }
	.faq-question { padding: 12px 12px; font-size: 0.98em; }
	.faq-answer { padding: 0 12px; }
	.custom-box { padding: 0; margin-bottom: 10px; width: 100%; box-sizing: border-box; }
	.custom-icon-list { margin: 0; padding: 0; }
	.custom-icon-list li {
		display: flex;
		white-space: normal;
		gap: 5px;
		padding: 8px 0;
		align-items: flex-start;
		justify-content: flex-start;
		border-bottom: 1px solid var(--kb-border);
	}
	.custom-icon-list li i { margin-top: 4px; }
	.custom-icon-list li strong { font-weight: bold; }
	.custom-icon-list li span { text-align: left; }
	.example-list li { display: block; margin-bottom: 20px; }
	.example-list li i { font-size: 1em; margin-right: 5px; vertical-align: middle; }
	.product-description-container h2 { font-size: 1.6em; }
	.product-description-container h3 { font-size: 1.3em; }
	.ddcustom-container { flex-direction: column; }
	.ddflex-box { max-width: 100%; }
}

@media (min-width: 768px) {
	.custom-container { max-width: 1420px; margin: 40px auto; }
	.custom-box { padding: 20px; background-color: var(--kb-bg-light); border: 1px solid var(--kb-border); border-radius: 6px; margin-bottom: 20px; }
	.header-title { font-size: 2em; color: var(--kb-green); margin-bottom: 20px; }
	.custom-icon-list { margin: 15px 0; }
	.custom-icon-list li { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--kb-border); }
	.custom-icon-list li i { color: var(--kb-green); margin-right: 15px; font-size: 1.2em; }
	.teaser { font-size: 1.3em; margin-bottom: 20px; }
}

/* --- Preview / Zoom (Produktkarten in DB-Content) ----------------------- */
.preview {
	overflow: hidden;
	border-radius: 5px;
}
.preview img {
	width: 100%;
	height: auto;
	display: block;
}
.zoom {
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zoom:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- Contentbox --------------------------------------------------------- */
.contentbox {
	background-color: var(--kb-white);
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 5px;
}
/* Contentbox als Inline-Link (z.B. in Steuerinfo) – kein Box-Styling */
.taxandshippinginfo .contentbox,
.details .contentbox {
	background-color: transparent;
	padding: 0;
	margin-bottom: 0;
	border-radius: 0;
}

/* --- Kat-Slider (Kategorie-Slider-Bereiche) ----------------------------- */
.kat_slider1,
.kat_slider2 {
	margin: 20px 0;
	overflow: hidden;
}

/* --- Subcat-Listing Hover (Desktop nur Hover) --------------------------- */
.subcat_listing {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.subcat_listing:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.subcat_listing img {
	transition: transform 0.3s ease;
}
.subcat_listing:hover img {
	transform: scale(1.03);
}

/* --- Subcat-Listing Card (nur Mobile) ----------------------------------- */
@media (max-width: 768px) {
	.subcat_listing {
		background: var(--kb-white);
		border: 1px solid var(--kb-border);
		border-radius: 10px;
		padding: 15px;
		margin-bottom: 15px;
		text-align: center;
		box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	}
	.subcat_listing:hover {
		border-color: var(--kb-green);
		box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	}
	.subcat_listing img {
		border-radius: 8px;
		max-width: 100%;
		height: auto;
	}
	.subcat_listing .teaser {
		font-size: 1.1em;
		color: var(--kb-text);
	}
	.subcat_listing .text-center {
		color: var(--kb-text-muted);
		font-size: 0.9em;
		line-height: 1.5;
	}
}

/* --- Category-Banner / Intro / Description ------------------------------ */
.category-banner {
	width: 100%;
	margin-bottom: 10px;
}
.banner-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.category-intro {
	background-color: var(--kb-bg-light);
	padding: 15px 20px;
	border-radius: 8px;
	text-align: center;
	font-size: 1.1em;
	color: var(--kb-text);
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}
.category-description-container {
	background-color: var(--kb-white);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
	font-family: Arial, sans-serif;
	line-height: 1.6;
	max-width: 900px;
	margin: auto;
}
.category-description-container h2 {
	color: var(--kb-green);
	font-size: 1.8em;
	font-weight: bold;
	margin-bottom: 10px;
}
.category-description-container h3 {
	color: var(--kb-green);
	font-size: 1.3em;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 5px;
}
.category-description-container p {
	color: var(--kb-text);
	margin-bottom: 15px;
	font-size: 1em;
}
.contact-link {
	color: var(--kb-green);
	font-weight: bold;
	text-decoration: none;
}
.contact-link:hover {
	text-decoration: underline;
}

/* --- Kat-Content-Card (wiederverwendbare Content-Karten) ---------------- */
.kat-content {
	max-width: 1100px;
	margin: 30px auto;
	padding: 0 15px;
}
.kat-content h2 {
	color: var(--kb-green);
	font-size: 1.6em;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
}
.kat-content h3 {
	color: var(--kb-green);
	font-size: 1.25em;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
}
.kat-content p {
	color: var(--kb-text);
	line-height: 1.7;
	margin-bottom: 12px;
}
.kat-hero {
	text-align: center;
	margin-bottom: 25px;
}
.kat-hero img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.kat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 30px;
}
.kat-card {
	background: var(--kb-white);
	border: 1px solid var(--kb-border);
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: box-shadow 0.3s ease;
}
.kat-card:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.kat-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.kat-card ul li {
	padding: 6px 0 6px 28px;
	position: relative;
	line-height: 1.5;
	color: var(--kb-text);
	border-bottom: 1px solid var(--kb-bg-light);
}
.kat-card ul li:last-child {
	border-bottom: none;
}
.kat-card ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--kb-green);
	position: absolute;
	left: 0;
	top: 6px;
	font-size: 0.85em;
}
.kat-card ol {
	padding-left: 20px;
	margin: 0;
}
.kat-card ol li {
	padding: 5px 0;
	line-height: 1.5;
	color: var(--kb-text);
}
.kat-card--full {
	grid-column: 1 / -1;
}
.kat-card--highlight {
	border-left: 4px solid var(--kb-green);
}
/* Links in kat-content */
.kat-content a:not(.kat-btn) { color: var(--kb-green); text-decoration: none; }
.kat-content a:not(.kat-btn):hover { text-decoration: underline; }
.kat-card a:not(.kat-btn) { color: var(--kb-green); text-decoration: none; }
.kat-card a:not(.kat-btn):hover { text-decoration: underline; }
.kat-card h3 a { color: var(--kb-green); }
.kat-card h3 a:hover { color: var(--kb-green-hover); }

/* Hero-Bild in kat-card */
.kat-card > .kat-hero { margin-bottom: 0; }

/* Bild-only Karte: zentriert, volle Hoehe, kein Abschneiden */
.kat-card > .kat-hero:only-child {
	margin: -25px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kat-card > .kat-hero:only-child img {
	border-radius: 10px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* Grid mit gleich hohen Karten */
.kat-grid { align-items: stretch; }
.kat-card { display: flex; flex-direction: column; }

.kat-btn {
	display: inline-block;
	background-color: var(--kb-green);
	color: var(--kb-white);
	padding: 12px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1em;
	margin-top: 15px;
	transition: background-color 0.3s ease, transform 0.2s ease;
}
.kat-btn:hover {
	background-color: var(--kb-green-hover);
	transform: translateY(-2px);
	color: var(--kb-white);
	text-decoration: none;
}
@media (max-width: 768px) {
	.kat-grid {
		grid-template-columns: 1fr;
	}
	.kat-content h2 {
		font-size: 1.3em;
	}
	.kat-card > .kat-hero:only-child {
		margin: -25px -25px 0 -25px;
	}
	.kat-card > .kat-hero:only-child img {
		border-radius: 10px 10px 0 0;
	}
}

/* --- Category-Content --------------------------------------------------- */
.category-content p {
	font-size: 1.2em;
	font-family: OpenSans, sans-serif;
	line-height: 1.6;
	color: var(--kb-text);
	border: 1px solid var(--kb-green);
	padding: 20px;
	margin: 15px 0;
	border-radius: 4px;
	background-color: var(--kb-bg-light);
}
