.Hintergrund1, .Hintergrund2, .Hintergrund3, .Hintergrund4, .LinkfarbeWeiß {
	& a:hover { text-decoration-color: #fff; }
}
sub { line-height: 1; }
.error {
    color: red;
    margin-bottom: 1em;
    line-height: 1.2;
    font-size: 0.9em;
}
::selection { background: var(--color_1); color: #fff; }
.Hintergrund1 ::selection {
    background: #fff;
    color: var(--color_1);
}
.Hintergrund2 ::selection {
    background: #fff;
    color: var(--color_2);
}
.Hintergrund3 ::selection {
    background: #fff;
    color: var(--color_3);
}
/* Removes the default outline only in browsers that support :focus-visible */
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 1px solid var(--color_1); outline-offset: 2px; border-radius: 2px; }
script { display: none; }
/********************************************************************************** mod_article ****************************************************************/
.mod_article {
	position: relative; 
	outline: none; 
	& > * {
		width: calc( var(--content_width) + var(--content_margin) * 2 );
		max-width: 100%; 
		margin-left: auto;
		margin-right: auto;
		position: relative; 
		z-index: 2; 
		@media(max-width:1023px){ 
			margin-left: auto; 
			margin-right: auto; 
			&.ce_headline { display: inline-block; }
		}
	}
	&.full_width { padding: 0; 
		.ce_image.first img { width: 100%; } 
	}
	&.full_width > * { margin: 0; padding: 0; width: 100%; }
}

.abg1 .mod_article {
	border-bottom: var(--article_border-bottom); 
	&:nth-child(odd) { --article_bachground_color: #f8f8f8; }
	&:nth-child(even) { --article_bachground_color: #fff; }
	background-color: var(--article_bachground_color);
	&.ohneRahmen { border: 0; }
}
.abg2 .mod_article {
	border-bottom: var(--article_border-bottom); 
	&:nth-child(odd) { --article_bachground_color: #fff; }
	&:nth-child(even) { --article_bachground_color: #f8f8f8; }
	background-color: var(--article_bachground_color);
	&.ohneRahmen { border: 0; }
}
/********************************************************************************** Scroll Settings ****************************************************************/
[id] { scroll-margin-top: 2em; }
html { 
	scroll-behavior: smooth; 
	scrollbar-gutter: stable;
	scroll-padding: var(--header_height, 100px) 0 0; 
	@media(max-width:1023px){ 
		scroll-padding: var(--header_height_mobile, 50px) 0 0;
	}
}
/********************************************************************************** Spacing Settings ****************************************************************/
* { box-sizing: border-box; }
/* .rte after a heading have a margin-block-start */
.content-text > :is(h1,h2,h3,h4,h5,h6) + .rte,
.content-text > .rte > * + :is(h1,h2,h3,h4,h5,h6) { 
	margin-block-start: 1em;
	.Textabstand0 & { margin-block-start: 0; }
	.TextabstandS & { margin-block-start: .25em; }
	.TextabstandM & { margin-block-start: .5em; }
	.TextabstandL & { margin-block-start: 1.5em; }
	.TextabstandXL & { margin-block-start: 2em; }
}

.content-text > .rte > * + :is(p,ul,ol),
.layout_latest > .ce_text > * + :is(p,ul,ol) { 
	margin-block-start: .75em; 
	.Textabstand0 & { margin-block-start: 0; }
	.TextabstandS & { margin-block-start: .25em; }
	.TextabstandM & { margin-block-start: .5em; }
	.TextabstandL & { margin-block-start: 1.5em; }
	.TextabstandXL & { margin-block-start: 2em; }
}

.mod_article > .content-headline:first-child:last-child { margin-bottom: 0; margin-top: 0; }

.mod_article {
	@media(min-width:1024px){ 
		padding-top: var(--article_margin, 60px);
		padding-bottom: var(--article_margin, 60px); 
	}
	@media(max-width:1023px){ 
		padding-top: var(--article_margin, 20px);
		padding-bottom: var(--article_margin, 20px); 
	}
	& > * + * { margin-block-start: 2em; }
	& > * {
		padding-left: var(--content_margin); 
		padding-right: var(--content_margin); 
	}
}