/* ==========================================================================
   Intercoiffure Deutschland – Theme-Stylesheet
   Nachbau von intercoiffure.de ohne Impreza / WPBakery / Slider Revolution.
   Gliederung:
     1. Schriften
     2. Design-Tokens
     3. Reset & Basis
     4. Typografie
     5. Layout: Sections, Rows, Spalten
     6. Header
     7. Footer
     8. Komponenten
     9. Scroll- und Hover-Animationen
    10. WordPress-Standardklassen
    11. Responsive
   ========================================================================== */

/* ==========================================================================
   1. Schriften
   ========================================================================== */

@font-face {
	font-family: "RobotoCondensed-Regular-ok";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/RobotoCondensed-Regular-ok.woff2") format("woff2");
}

@font-face {
	font-family: "EncodeSansCondensed-SemiBold-ok";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/EncodeSansCondensed-SemiBold-ok.woff2") format("woff2");
}

@font-face {
	font-family: "Font Awesome Brands";
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url("../fonts/fa/fa-brands-400.woff2") format("woff2"),
		url("../fonts/fa/fa-brands-400.woff") format("woff");
}

@font-face {
	font-family: "Font Awesome Solid";
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url("../fonts/fa/fa-solid-900.woff2") format("woff2"),
		url("../fonts/fa/fa-solid-900.woff") format("woff");
}

/* ==========================================================================
   2. Design-Tokens – übernommen aus den Theme-Options der Originalseite
   ========================================================================== */

:root {
	/* Markenfarben */
	--ic-pink: #e82d8a;
	--ic-pink-alt: #e8308a;
	--ic-pink-light: #e95095;
	--ic-blue: #273583;
	--ic-blue-alt: #283583;
	--ic-cyan: #009fe3;

	/* Kachelfarben */
	--ic-tile-termine: #eb2fd8;
	--ic-tile-cyan: #009fe3;
	--ic-tile-oliv: #648033;
	--ic-tile-pink: #e8308a;
	--ic-tile-violett: #3610b3;
	--ic-tile-orange: #f1a123;
	--ic-tile-gruen: #4f8f5b;
	--ic-tile-blau: #273583;

	/* Flächen und Text */
	--ic-content-bg-alt: #f5f5f5;
	--ic-content-border: #e8e8e8;
	--ic-content-heading: #1a1a1a;
	--ic-content-text: #333333;
	--ic-content-link: var(--ic-pink);
	--ic-content-link-hover: var(--ic-blue);
	--ic-content-faded: #999999;
	--ic-content-overlay: rgba(0, 0, 0, 0.75);
	--ic-primary-faded: rgba(232, 45, 138, 0.15);

	/* Header */
	--ic-header-bg: #1a1a1a;
	--ic-header-text: #ffffff;
	--ic-header-text-hover: var(--ic-pink);
	--ic-header-height: 90px;
	--ic-header-sticky-height: 45px;

	/* Footer */
	--ic-footer-bg-alt: #ffffff;
	--ic-footer-text: #999999;
	--ic-footer-link: #cccccc;
	--ic-footer-link-hover: #333333;
	--ic-subfooter-bg: #999999;
	--ic-subfooter-text: #f5f5f5;
	--ic-subfooter-link-hover: #ffffff;

	/* Verläufe */
	--ic-grad-primary: linear-gradient(135deg, #e8308a, #283583);
	--ic-grad-secondary: linear-gradient(-135deg, #e82d8a, #273583);
	--ic-grad-overlay: linear-gradient(135deg, #e95095, rgba(233, 80, 149, 0.75));
	--ic-grad-text: linear-gradient(90deg, #e95095, purple);
	--ic-grad-form: linear-gradient(135deg, #e95095, #7049ba);

	/* Maße */
	--ic-canvas-width: 1240px;
	--ic-content-width: 2500px;
	--ic-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	--ic-box-shadow-up: 0 -5px 15px rgba(0, 0, 0, 0.15);

	/* Typografie */
	--ic-font-family: "RobotoCondensed-Regular-ok", "Roboto Condensed", "Arial Narrow", sans-serif;
	--ic-font-heading: "EncodeSansCondensed-SemiBold-ok", "Encode Sans Condensed", "Arial Narrow", sans-serif;
	--ic-font-size: 18px;
	--ic-line-height: 28px;
	--ic-font-weight: 400;
	--ic-bold-font-weight: 700;

	--ic-h1-size: 80px;
	--ic-h1-weight: 500;
	--ic-h1-ls: -0.02em;
	--ic-h1-mb: 1.2rem;
	--ic-h2-size: 38px;
	--ic-h2-color: var(--ic-cyan);
	--ic-h3-size: 30px;
	--ic-h3-color: #333333;
	--ic-h4-size: 24px;
	--ic-h4-color: var(--ic-cyan);
	--ic-h5-size: 20px;
	--ic-h5-color: var(--ic-pink-alt);
	--ic-h6-size: 18px;
	--ic-heading-lh: 1.4;
	--ic-heading-mb: 1.5rem;

	/* Formularfelder */
	--ic-input-height: 2.8rem;
	--ic-input-padding: 0.8rem;
	--ic-input-font-size: 1rem;
}

/* ==========================================================================
   3. Reset & Basis
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: var(--ic-font-size);
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ic-font-family);
	font-size: 1rem;
	font-weight: var(--ic-font-weight);
	line-height: calc(var(--ic-line-height) / var(--ic-font-size));
	color: var(--ic-content-text);
	background-color: #ffffff;
	background-image: url("../img/body-bg.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: middle;
}

a {
	color: var(--ic-content-link);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover,
a:focus-visible {
	color: var(--ic-content-link-hover);
}

:focus-visible {
	outline: 2px solid var(--ic-pink);
	outline-offset: 2px;
}

button {
	font: inherit;
	cursor: pointer;
}

hr {
	border: 0;
	border-top: 1px solid var(--ic-content-border);
	margin: 2rem 0;
}

blockquote {
	margin: 0 0 1.5rem;
	padding: 0 0 0 1.5rem;
	border-left: 3px solid var(--ic-pink);
	font-style: italic;
	color: var(--ic-content-text);
}

blockquote p:last-child {
	margin-bottom: 0;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}

th,
td {
	padding: 0.6rem 0.8rem;
	border: 1px solid var(--ic-content-border);
	text-align: left;
}

th {
	background: var(--ic-content-bg-alt);
	font-weight: var(--ic-bold-font-weight);
}

.ic-screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ic-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: 0.75rem 1.25rem;
	background: #ffffff;
	color: var(--ic-pink);
	font-weight: 700;
}

.ic-skip-link:focus {
	left: 0;
}

/* ==========================================================================
   4. Typografie
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--ic-font-heading);
	line-height: var(--ic-heading-lh);
	margin: 0 0 var(--ic-heading-mb);
	font-weight: 400;
}

h1 {
	font-size: var(--ic-h1-size);
	font-weight: var(--ic-h1-weight);
	letter-spacing: var(--ic-h1-ls);
	margin-bottom: var(--ic-h1-mb);
	background: var(--ic-grad-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

h1 > strong,
h2 > strong,
h3 > strong,
h4 > strong,
h5 > strong,
h6 > strong {
	font-weight: var(--ic-bold-font-weight);
}

h2 {
	font-size: var(--ic-h2-size);
	color: var(--ic-h2-color);
}

h3 {
	font-size: var(--ic-h3-size);
	color: var(--ic-h3-color);
}

h4 {
	font-size: var(--ic-h4-size);
	color: var(--ic-h4-color);
}

h5 {
	font-size: var(--ic-h5-size);
	color: var(--ic-h5-color);
}

h6 {
	font-size: var(--ic-h6-size);
}

p {
	margin: 0 0 1.5rem;
}

p:last-child {
	margin-bottom: 0;
}

ul,
ol {
	margin: 0 0 1.5rem;
	padding-left: 1.4rem;
}

/* Verlaufstext – im Original als .textverlauf bzw. .h1-color gesetzt */
.ic-gradient-text,
.ic-gradient-text h1,
.ic-gradient-text h2,
.ic-gradient-text h3 {
	background: var(--ic-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ic-heading-gradient {
	background: var(--ic-grad-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Auf farbigen Sections invertiert die Typografie */
.ic-section--primary h1,
.ic-section--primary h2,
.ic-section--primary h3,
.ic-section--primary h4,
.ic-section--primary h5,
.ic-section--primary h6 {
	color: #ffffff;
	background: none;
	-webkit-text-fill-color: currentColor;
}

.ic-section--primary {
	color: #ffffff;
}

.ic-section--primary a {
	color: #ffffff;
	text-decoration: underline;
}

/* ==========================================================================
   5. Layout: Sections, Rows, Spalten
   ========================================================================== */

.ic-site {
	position: relative;
	overflow: hidden;
}

.ic-main {
	display: block;
	position: relative;
}

.ic-section {
	position: relative;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.ic-section--auto {
	padding-top: 0;
	padding-bottom: 0;
}

.ic-section--small {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.ic-section--medium {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.ic-section--large {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

/* Im Original per Custom-CSS auf feste Höhe gesetzt: .height_huge { height:600px } */
.ic-section--huge {
	height: 600px;
	padding-top: 8rem;
	padding-bottom: 8rem;
	display: flex;
	align-items: center;
}

.ic-section--huge > .ic-section__inner {
	width: 100%;
}

.ic-section--primary {
	background: var(--ic-pink);
	background: var(--ic-grad-primary);
}

.ic-section--alt {
	background: var(--ic-content-bg-alt);
}

.ic-section--footer-top {
	background: var(--ic-subfooter-bg);
	color: var(--ic-subfooter-text);
}

.ic-section--footer-bottom {
	background: var(--ic-footer-bg-alt);
	color: var(--ic-footer-text);
}

.ic-section__inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	width: 100%;
	max-width: var(--ic-canvas-width);
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.ic-section--full > .ic-section__inner {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

/* Hintergrundbild einer Section */
.ic-section--with-img {
	overflow: hidden;
}

.ic-section__img {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.ic-section__img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.ic-section__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--ic-content-overlay);
}

/* Erste Section liegt unter dem fixierten Header */
.ic-main > .ic-section:first-of-type > .ic-section__inner {
	padding-top: var(--ic-header-height);
}

.ic-main > .ic-section--full:first-of-type > .ic-section__inner {
	padding-top: var(--ic-header-height);
}

/* Raster */
.ic-row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.5rem;
	align-items: flex-start;
}

.ic-row--valign-top {
	align-items: flex-start;
}

.ic-row--valign-middle {
	align-items: center;
}

.ic-row--valign-bottom {
	align-items: flex-end;
}

.ic-col {
	position: relative;
	width: 100%;
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.ic-col--12 { width: 100%; }
.ic-col--8  { width: 66.6666%; }
.ic-col--6  { width: 50%; }
.ic-col--4  { width: 33.3333%; }
.ic-col--3  { width: 25%; }
.ic-col--2  { width: 16.6666%; }
.ic-col--1-5 { width: 20%; }
.ic-col--2-5 { width: 40%; }
.ic-col--3-5 { width: 60%; }

/* ==========================================================================
   6. Header
   ========================================================================== */

.ic-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 111;
	width: 100%;
	background: var(--ic-header-bg);
	color: var(--ic-header-text);
	transition: transform 0.3s cubic-bezier(0.78, 0.13, 0.15, 0.86),
		background 0.3s ease, box-shadow 0.3s ease;
}

.ic-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 auto;
	max-width: var(--ic-content-width);
	height: var(--ic-header-height);
	padding: 0 1.5rem;
	transition: height 0.3s cubic-bezier(0.78, 0.13, 0.15, 0.86);
}

.ic-header.is-sticky .ic-header__inner {
	height: var(--ic-header-sticky-height);
}

.ic-header__cell {
	display: flex;
	align-items: center;
	flex: 1 1 0;
}

.ic-header__cell--left {
	justify-content: flex-start;
}

.ic-header__cell--center {
	justify-content: center;
}

.ic-header__cell--right {
	justify-content: flex-end;
}

/* Rundes Stern-Logo in der Headermitte */
.ic-header__logo {
	display: block;
	line-height: 0;
}

.ic-header__logo img {
	display: block;
	width: auto;
	height: calc(var(--ic-header-height) - 20px);
	max-height: 70px;
	border-radius: 50%;
	transition: height 0.3s cubic-bezier(0.78, 0.13, 0.15, 0.86);
}

.ic-header.is-sticky .ic-header__logo img {
	height: calc(var(--ic-header-sticky-height) - 8px);
}

/* Optionales Menü – im Original nicht belegt, hier vorbereitet */
.ic-header__nav ul {
	display: flex;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ic-header__nav a {
	color: inherit;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ic-header__nav a:hover {
	color: var(--ic-header-text-hover);
}

.ic-header__toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
}

.ic-header__toggle span,
.ic-header__toggle span::before,
.ic-header__toggle span::after {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.ic-header__toggle span {
	margin: 0 auto;
	position: relative;
}

.ic-header__toggle span::before,
.ic-header__toggle span::after {
	content: "";
	position: absolute;
	left: 0;
}

.ic-header__toggle span::before { top: -7px; }
.ic-header__toggle span::after  { top: 7px; }

.ic-header__toggle[aria-expanded="true"] span {
	background: transparent;
}

.ic-header__toggle[aria-expanded="true"] span::before {
	transform: translateY(7px) rotate(45deg);
}

.ic-header__toggle[aria-expanded="true"] span::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   7. Footer
   ========================================================================== */

.ic-footer {
	position: relative;
}

.ic-footer__logo img {
	max-width: 320px;
}

.ic-footer .ic-section--footer-top a {
	color: var(--ic-subfooter-text);
}

.ic-footer .ic-section--footer-top a:hover {
	color: var(--ic-subfooter-link-hover);
}

.ic-footer__contact p {
	margin-bottom: 0.25rem;
}

.ic-footer__legal a {
	margin-right: 1rem;
}

/* Partner-Logo-Laufband im Footer */
.ic-logostrip {
	position: relative;
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ic-logostrip__track {
	display: flex;
	align-items: center;
	gap: 3rem;
	width: max-content;
	animation: ic-marquee 45s linear infinite;
}

.ic-logostrip:hover .ic-logostrip__track {
	animation-play-state: paused;
}

.ic-logostrip__item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
}

.ic-logostrip__item img {
	max-height: 70px;
	width: auto;
	object-fit: contain;
}

@keyframes ic-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.ic-logostrip__track {
		animation: none;
	}
	.ic-logostrip {
		overflow-x: auto;
	}
}

/* ==========================================================================
   8. Komponenten
   ========================================================================== */

/* --- Abstandshalter ------------------------------------------------------ */

.ic-sep {
	display: block;
	clear: both;
}

.ic-sep--small  { height: 1.5rem; }
.ic-sep--medium { height: 3rem; }
.ic-sep--large  { height: 4.5rem; }
.ic-sep--huge   { height: 6rem; }
.ic-sep--custom { height: var(--ic-sep-height, 2rem); }

/* --- Buttons ------------------------------------------------------------- */

.ic-btn-wrap {
	margin-bottom: 1.5rem;
}

.ic-btn-wrap--center { text-align: center; }
.ic-btn-wrap--right  { text-align: right; }
.ic-btn-wrap--left,
.ic-btn-wrap--none   { text-align: left; }

.ic-btn {
	display: inline-block;
	font-family: var(--ic-font-family);
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.7em 1.4em;
	border: 1px solid var(--ic-content-border);
	border-radius: 0;
	background: transparent;
	color: var(--ic-pink) !important;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ic-btn:hover,
.ic-btn:focus-visible {
	background: var(--ic-pink-light);
	border-color: transparent;
	color: #ffffff !important;
}

/* Gefüllte Variante (us-btn-style_1 im Original) */
.ic-btn--solid {
	background: var(--ic-pink);
	border-color: var(--ic-pink);
	color: #ffffff !important;
}

.ic-btn--solid:hover,
.ic-btn--solid:focus-visible {
	background: var(--ic-blue);
	border-color: var(--ic-blue);
	color: #ffffff !important;
}

/* --- Bilder -------------------------------------------------------------- */

.ic-image {
	margin: 0 0 1.5rem;
	line-height: 0;
}

.ic-image--center { text-align: center; }
.ic-image--right  { text-align: right; }
.ic-image--left,
.ic-image--none   { text-align: left; }

.ic-image img {
	display: inline-block;
}

.ic-image--circle img {
	border-radius: 50%;
}

.ic-image figcaption {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	line-height: 1.4;
	color: var(--ic-content-faded);
}

/* --- Kachel-Banner (w-ibanner im Original) ------------------------------- */

.ic-banner {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 1.5rem;
	color: #ffffff;
	background: var(--ic-banner-bg, var(--ic-pink));
}

.ic-banner__h {
	position: relative;
	overflow: hidden;
}

/* Seitenverhältnisse */
.ic-banner--2x1 .ic-banner__h::before { content: ""; display: block; padding-bottom: 50%; }
.ic-banner--3x2 .ic-banner__h::before { content: ""; display: block; padding-bottom: 66.6666%; }
.ic-banner--1x1 .ic-banner__h::before { content: ""; display: block; padding-bottom: 100%; }
.ic-banner--4x3 .ic-banner__h::before { content: ""; display: block; padding-bottom: 75%; }

.ic-banner__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: inherit;
}

.ic-banner__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.5rem;
	z-index: 1;
}

.ic-banner__content-h {
	position: relative;
}

.ic-banner__title {
	margin: 0;
	font-family: var(--ic-font-heading);
	font-size: var(--ic-h2-size);
	line-height: 1.2;
	color: #ffffff !important;
	background: none;
	-webkit-text-fill-color: currentColor;
}

.ic-banner--center {
	text-align: center;
}

.ic-banner__desc {
	font-size: 0.95rem;
}

.ic-banner__link {
	position: absolute;
	inset: 0;
	z-index: 2;
	font-size: 0;
	color: transparent;
}

/* Animation „phorcys“ – Bild fährt hoch und blendet auf die Fläche zurück */
.ic-banner--phorcys .ic-banner__image {
	bottom: -10%;
	transform: translateY(0);
	transition-duration: 0.4s;
	transition-property: transform, opacity;
}

.ic-banner--phorcys .ic-banner__content {
	top: auto;
	padding-top: 20%;
}

.ic-banner--phorcys .ic-banner__content::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 0%, rgba(30, 30, 30, 0.8) 100%) repeat-x rgba(30, 30, 30, 0);
	transition: opacity 0.3s;
}

.ic-banner--phorcys .ic-banner__title {
	transition: color 0.3s;
}

.ic-banner--phorcys .ic-banner__desc {
	position: relative;
	opacity: 0;
	line-height: 0;
	margin-top: 0;
	transition-duration: 0.3s;
	transition-property: opacity, line-height, margin;
}

.ic-banner--phorcys:hover .ic-banner__image {
	opacity: 0.15;
	transform: translateY(-8%);
}

.ic-banner--phorcys:hover .ic-banner__content::before { opacity: 0; }
.ic-banner--phorcys:hover .ic-banner__title { color: inherit !important; }

.ic-banner--phorcys:hover .ic-banner__desc {
	opacity: 0.75;
	line-height: 1.5;
	margin-top: 15px;
}

/* Animation „caeros“ – langsamer Zoom, Titel fährt ein */
.ic-banner--caeros .ic-banner__image {
	background-color: inherit;
	transform: translateY(0);
	transform-origin: 50% 0;
	transition-duration: 0.3s;
	transition-timing-function: linear;
}

.ic-banner--caeros .ic-banner__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: inherit;
	opacity: 0.25;
	transition: opacity 0.4s;
}

.ic-banner--caeros .ic-banner__title {
	transform: translateY(30px);
	transition: transform 0.4s;
}

.ic-banner--caeros .ic-banner__desc {
	opacity: 0;
	transform: scale(0.7);
	transition-duration: 0.4s;
	transition-property: transform, opacity;
}

.ic-banner--caeros:hover .ic-banner__image {
	transform: scale(1.3);
	transition-duration: 7s;
}

.ic-banner--caeros:hover .ic-banner__image::after { opacity: 0.75; }
.ic-banner--caeros:hover .ic-banner__title { transform: translateY(0); }

.ic-banner--caeros:hover .ic-banner__desc {
	opacity: 0.75;
	transform: scale(1);
}

/* Animation „melete“ – Bild zoomt weg, Inhalt skaliert ein */
.ic-banner--melete .ic-banner__image {
	transition-duration: 0.5s;
	transition-property: transform, opacity;
}

.ic-banner--melete .ic-banner__content {
	top: 50%;
	bottom: auto;
	opacity: 0;
	transform: translateY(-50%) scale(0.2);
	transition-duration: 0.4s;
	transition-property: transform, opacity;
}

.ic-banner--melete:hover .ic-banner__image {
	opacity: 0.1;
	transform: scale(4);
}

.ic-banner--melete:hover .ic-banner__content {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

/* --- Flipbox ------------------------------------------------------------- */

.ic-flipbox {
	perspective: 1000px;
	margin-bottom: 1.5rem;
}

.ic-flipbox__h {
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
}

.ic-flipbox__hh {
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
	transform: rotateY(-90deg) translateX(-50%) rotateY(90deg);
}

.ic-flipbox.is-hover .ic-flipbox__hh {
	transform: rotateY(-90deg) translateX(-50%);
}

.ic-flipbox__front,
.ic-flipbox__back {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	height: var(--ic-flipbox-height, 420px);
	backface-visibility: hidden;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

.ic-flipbox__front {
	transform: rotateY(90deg) translateX(-50%) rotateY(-90deg);
}

.ic-flipbox__back {
	position: absolute;
	inset: 0;
	transform: translateX(50%) rotateY(90deg);
}

.ic-flipbox.is-hover .ic-flipbox__front { z-index: -1; }
.ic-flipbox.is-hover .ic-flipbox__back  { z-index: 1; }

/* --- Grid (Bild-/Beitragsraster) ----------------------------------------- */

.ic-grid {
	display: grid;
	gap: var(--ic-grid-gap, 0.25rem);
	grid-template-columns: repeat(var(--ic-grid-cols, 3), minmax(0, 1fr));
	margin-bottom: 1.5rem;
}

.ic-grid--cols-1 { --ic-grid-cols: 1; }
.ic-grid--cols-2 { --ic-grid-cols: 2; }
.ic-grid--cols-3 { --ic-grid-cols: 3; }
.ic-grid--cols-4 { --ic-grid-cols: 4; }
.ic-grid--cols-5 { --ic-grid-cols: 5; }
.ic-grid--cols-6 { --ic-grid-cols: 6; }

.ic-grid__item {
	position: relative;
	overflow: hidden;
}

.ic-grid__item-h {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
}

.ic-grid--1x1 .ic-grid__item-h::before { content: ""; display: block; padding-bottom: 100%; }
.ic-grid--4x3 .ic-grid__item-h::before { content: ""; display: block; padding-bottom: 75%; }
.ic-grid--3x2 .ic-grid__item-h::before { content: ""; display: block; padding-bottom: 66.6666%; }

.ic-grid__image {
	position: absolute;
	inset: 0;
}

.ic-grid__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.ic-grid__item:hover .ic-grid__image img {
	transform: scale(1.06);
}

.ic-grid__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1rem;
	color: #ffffff;
	font-weight: 700;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.ic-grid__anchor {
	position: absolute;
	inset: 0;
	z-index: 2;
}

/* --- Popup --------------------------------------------------------------- */

.ic-popup {
	margin-bottom: 1.5rem;
}

.ic-popup__overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ic-popup__wrap {
	position: fixed;
	inset: 0;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ic-popup.is-open .ic-popup__overlay,
.ic-popup.is-open .ic-popup__wrap {
	opacity: 1;
	visibility: visible;
}

.ic-popup__box {
	position: relative;
	max-width: 720px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	background: #ffffff;
	padding: 2rem;
	box-shadow: var(--ic-box-shadow);
}

.ic-popup__title {
	margin: 0 0 1rem;
	font-family: var(--ic-font-heading);
	font-size: var(--ic-h4-size);
	color: var(--ic-cyan);
}

.ic-popup__closer {
	position: absolute;
	top: -2.5rem;
	right: 0;
	width: 2rem;
	height: 2rem;
	border: 0;
	background: none;
	color: #ffffff;
	font-size: 1.75rem;
	line-height: 1;
}

/* --- Tabs ---------------------------------------------------------------- */

.ic-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid var(--ic-content-border);
}

.ic-tabs__tab {
	padding: 0.7em 1.2em;
	border: 0;
	background: var(--ic-content-bg-alt);
	color: var(--ic-content-text);
	font-family: var(--ic-font-heading);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: background 0.3s ease, color 0.3s ease;
}

.ic-tabs__tab[aria-selected="true"] {
	background: var(--ic-pink);
	color: #ffffff;
}

.ic-tabs__panel[hidden] {
	display: none;
}

/* --- Social-Icons -------------------------------------------------------- */

.ic-socials {
	margin-bottom: 1.5rem;
}

.ic-socials--right  { text-align: right; }
.ic-socials--center { text-align: center; }

.ic-socials__list {
	display: inline-flex;
	gap: 0.5rem;
}

.ic-socials__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.2em;
	height: 2.2em;
	background: var(--ic-social-bg, #333333);
	color: #ffffff !important;
	transition: opacity 0.3s ease;
}

.ic-socials__link:hover {
	opacity: 0.75;
}

.ic-socials__item--facebook .ic-socials__link { --ic-social-bg: #3b5998; }
.ic-socials__item--youtube  .ic-socials__link { --ic-social-bg: #e02f2f; }
.ic-socials__item--instagram .ic-socials__link { --ic-social-bg: #b23ea3; }
.ic-socials__item--linkedin .ic-socials__link { --ic-social-bg: #0073b0; }

.ic-socials__link svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* --- Hero-Slider (Ersatz für Slider Revolution) -------------------------- */

.ic-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: var(--ic-slider-height, 100vh);
	max-height: var(--ic-slider-max-height, 900px);
	background: #1a1a1a;
}

.ic-slider__slides {
	position: absolute;
	inset: 0;
}

.ic-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.ic-slider__slide.is-active {
	opacity: 1;
}

.ic-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.ic-slider__caption {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.5rem;
	pointer-events: none;
}

.ic-slider__title {
	margin: 0;
	font-family: var(--ic-font-heading);
	font-size: clamp(2rem, 6vw, 5rem);
	line-height: 1.1;
	letter-spacing: 0.02em;
	color: #ffffff;
	background: none;
	-webkit-text-fill-color: currentColor;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.ic-slider__subtitle {
	margin: 0.5rem 0 0;
	font-family: var(--ic-font-heading);
	font-size: clamp(1rem, 2.2vw, 1.75rem);
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.ic-slider__nav {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1.5rem;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.ic-slider__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	transition: background 0.3s ease, transform 0.3s ease;
}

.ic-slider__dot.is-active {
	background: #ffffff;
	transform: scale(1.3);
}

/* --- Lightbox ------------------------------------------------------------ */

.ic-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1100;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 3rem 1rem;
	background: rgba(0, 0, 0, 0.92);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ic-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.ic-lightbox__img {
	max-width: min(92vw, 1400px);
	max-height: 88vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.ic-lightbox__close,
.ic-lightbox__prev,
.ic-lightbox__next {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
	transition: background 0.3s ease;
}

.ic-lightbox__close:hover,
.ic-lightbox__prev:hover,
.ic-lightbox__next:hover {
	background: var(--ic-pink);
}

.ic-lightbox__close {
	top: 1rem;
	right: 1rem;
}

.ic-lightbox__prev { left: 1rem; }
.ic-lightbox__next { right: 1rem; }

/* --- Video --------------------------------------------------------------- */

.ic-video {
	position: relative;
	margin-bottom: 1.5rem;
}

.ic-video__frame {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000000;
}

.ic-video__frame iframe,
.ic-video__frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Klick-zum-Laden-Vorschau (DSGVO-freundlich) */
.ic-video__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background-size: cover;
	background-position: center;
	cursor: pointer;
}

.ic-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.ic-video__thumb:hover .ic-video__play {
	background: #e02f2f;
}

.ic-video__play::before {
	content: "";
	border-style: solid;
	border-width: 10px 0 10px 17px;
	border-color: transparent transparent transparent #ffffff;
}

/* --- Formulare ----------------------------------------------------------- */

input:not([type="submit"]),
select,
textarea {
	width: 100%;
	height: var(--ic-input-height);
	padding: 0 var(--ic-input-padding);
	font-family: inherit;
	font-size: var(--ic-input-font-size);
	color: var(--ic-content-text);
	background: var(--ic-content-bg-alt);
	border: 0;
	border-radius: 0;
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.08) inset;
}

textarea {
	height: auto;
	min-height: 8rem;
	padding: var(--ic-input-padding);
	line-height: 1.5;
}

input:not([type="submit"]):focus,
select:focus,
textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px var(--ic-pink);
}

input[type="submit"],
.ic-form button[type="submit"] {
	height: auto;
	padding: 0.7em 1.6em;
	border: 0;
	background: var(--ic-pink);
	color: #ffffff;
	font-family: var(--ic-font-family);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: background 0.3s ease;
}

input[type="submit"]:hover {
	background: var(--ic-blue);
}

/* Formularkasten mit Verlauf – im Original für die Ninja-Forms-Anmeldungen */
.ic-form {
	padding: 20px 10px;
	background: var(--ic-grad-form);
	color: #ffffff;
}

.ic-form__title {
	margin-bottom: 1rem;
	color: #ffffff;
	text-align: center;
	background: none;
	-webkit-text-fill-color: currentColor;
}

.ic-form__row {
	margin-bottom: 1rem;
}

.ic-form__label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
}

.ic-form__required {
	text-align: center;
	font-size: 0.85rem;
}

/* --- Beitrags-/Eventlisten ----------------------------------------------- */

.ic-cards {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.ic-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	box-shadow: var(--ic-box-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ic-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.ic-card__media {
	position: relative;
	overflow: hidden;
	padding-bottom: 62%;
}

.ic-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ic-card__body {
	padding: 1.25rem;
	flex: 1 1 auto;
}

.ic-card__title {
	margin: 0 0 0.5rem;
	font-size: var(--ic-h5-size);
	color: var(--ic-pink-alt);
}

.ic-card__meta {
	margin-bottom: 0.75rem;
	font-size: 0.85rem;
	color: var(--ic-content-faded);
}

/* Eventliste */
.ic-eventlist {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.ic-event {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--ic-content-border);
}

.ic-event__date {
	flex: 0 0 84px;
	text-align: center;
	padding: 0.5rem 0;
	background: var(--ic-grad-primary);
	color: #ffffff;
	line-height: 1.1;
}

.ic-event__day {
	display: block;
	font-family: var(--ic-font-heading);
	font-size: 1.75rem;
}

.ic-event__month {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.ic-event__title {
	margin: 0 0 0.35rem;
	font-size: var(--ic-h5-size);
}

/* Blätterfunktion */
.ic-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 2rem 0 0;
	justify-content: center;
}

.ic-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4em;
	height: 2.4em;
	padding: 0 0.6em;
	border: 1px solid var(--ic-content-border);
	color: var(--ic-content-text);
}

.ic-pagination .page-numbers.current,
.ic-pagination .page-numbers:hover {
	background: var(--ic-pink);
	border-color: var(--ic-pink);
	color: #ffffff;
}

/* --- Suchformular, Widgets, Kommentare ----------------------------------- */

.search-form {
	display: flex;
	gap: 0.5rem;
	max-width: 480px;
}

.search-form label {
	flex: 1 1 auto;
}

.ic-widget {
	margin-bottom: 2rem;
}

.ic-widget__title {
	margin-bottom: 0.75rem;
	color: var(--ic-pink-alt);
}

.ic-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ic-widget li {
	padding: 0.35rem 0;
	border-bottom: 1px solid var(--ic-content-border);
}

.ic-entry-footer {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--ic-content-border);
	font-size: 0.9rem;
	color: var(--ic-content-faded);
}

.comment-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.comment-list li {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--ic-content-border);
}

.comment-list .children {
	list-style: none;
	margin: 1rem 0 0;
	padding-left: 1.5rem;
	border-left: 2px solid var(--ic-content-border);
}

.comment-form p {
	margin-bottom: 1rem;
}

.comment-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
}

/* Fehlermeldungen im Kontaktformular */
.ic-form__errors {
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	background: rgba(0, 0, 0, 0.25);
	border-left: 3px solid #ffffff;
}

.ic-form__errors p {
	margin: 0 0 0.35rem;
}

.ic-form__errors p:last-child {
	margin-bottom: 0;
}

.ic-form label,
.ic-form p {
	color: #ffffff;
}

/* ==========================================================================
   9. Scroll- und Hover-Animationen
   ========================================================================== */

/*
 * Die Einblendungen greifen nur, wenn JavaScript aktiv ist. Die Klasse
 * ic-js setzt ein Inline-Skript im <head>; ohne sie bleiben alle Inhalte
 * sichtbar und unverschoben.
 */
.ic-js .ic-reveal {
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s ease;
	will-change: opacity, transform;
}

.ic-js .ic-reveal--fade  { transform: none; }
.ic-js .ic-reveal--left  { transform: translateX(-40px); }
.ic-js .ic-reveal--right { transform: translateX(40px); }
.ic-js .ic-reveal--up    { transform: translateY(40px); }

.ic-js .ic-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.ic-js .ic-reveal {
		opacity: 1;
		transform: none;
	}
}

/* Zurück-nach-oben */
.ic-toplink {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 100;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: var(--ic-pink);
	color: #ffffff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.ic-toplink.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ic-toplink:hover {
	background: var(--ic-blue);
}

/* ==========================================================================
   10. WordPress-Standardklassen
   ========================================================================== */

.alignleft {
	float: left;
	margin: 0 1.5rem 1rem 0;
}

.alignright {
	float: right;
	margin: 0 0 1rem 1.5rem;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignwide {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

.wp-caption {
	max-width: 100%;
	margin-bottom: 1.5rem;
}

.wp-caption-text,
.wp-element-caption {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: var(--ic-content-faded);
}

.sticky,
.gallery-caption,
.bypostauthor {
	display: block;
}

.ic-entry-content > * {
	margin-bottom: 1.5rem;
}

.ic-entry-content > *:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   11. Responsive
   ========================================================================== */

@media (max-width: 1240px) {
	:root {
		--ic-h1-size: 60px;
		--ic-h2-size: 34px;
	}
}

@media (max-width: 900px) {
	:root {
		--ic-header-height: 70px;
		--ic-h1-size: 46px;
		--ic-h2-size: 30px;
		--ic-h3-size: 26px;
	}

	.ic-col--8,
	.ic-col--6,
	.ic-col--4,
	.ic-col--3,
	.ic-col--2,
	.ic-col--1-5,
	.ic-col--2-5,
	.ic-col--3-5 {
		width: 50%;
	}

	.ic-col--12 {
		width: 100%;
	}

	/* Randspalten des 2-8-2-Rasters entfallen auf Tablets */
	.ic-col--2:empty {
		display: none;
	}

	.ic-section--medium { padding-top: 2.5rem; padding-bottom: 2.5rem; }
	.ic-section--large  { padding-top: 6vmax; padding-bottom: 6vmax; }

	.ic-section--huge {
		height: auto;
		min-height: 420px;
		padding-top: 9vmax;
		padding-bottom: 9vmax;
	}

	.ic-grid--cols-5,
	.ic-grid--cols-6 { --ic-grid-cols: 3; }

	.ic-header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--ic-header-bg);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.ic-header__nav.is-open {
		max-height: 80vh;
		overflow-y: auto;
	}

	.ic-header__nav ul {
		flex-direction: column;
		gap: 0;
		padding: 0.5rem 1.5rem 1rem;
	}

	.ic-header__nav li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.ic-header__nav a {
		display: block;
		padding: 0.85rem 0;
	}

	.ic-header__toggle {
		display: block;
	}
}

@media (max-width: 600px) {
	:root {
		--ic-line-height: 26px;
		--ic-h1-size: 30px;
		--ic-h2-size: 29px;
		--ic-h3-size: 24px;
		--ic-h4-size: 22px;
	}

	body {
		background-attachment: scroll;
	}

	.ic-section__inner {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.ic-row {
		margin-left: -1rem;
	}

	.ic-col {
		padding-left: 1rem;
	}

	.ic-col--8,
	.ic-col--6,
	.ic-col--4,
	.ic-col--3,
	.ic-col--1-5,
	.ic-col--2-5,
	.ic-col--3-5 {
		width: 100%;
	}

	.ic-col--2 {
		display: none;
	}

	.ic-section--small  { padding-top: 1.5rem; padding-bottom: 1.5rem; }
	.ic-section--medium { padding-top: 1.5rem; padding-bottom: 1.5rem; }

	.ic-section--huge {
		min-height: 320px;
	}

	.ic-grid--cols-3,
	.ic-grid--cols-4,
	.ic-grid--cols-5,
	.ic-grid--cols-6 { --ic-grid-cols: 2; }

	.ic-banner__content {
		padding: 1rem;
	}

	.ic-slider {
		height: 70vh;
	}

	.ic-event {
		flex-direction: column;
		gap: 0.75rem;
	}

	.ic-event__date {
		flex: 0 0 auto;
		align-self: flex-start;
		padding: 0.4rem 1rem;
	}

	.ic-footer__legal a {
		display: inline-block;
		margin-bottom: 0.5rem;
	}
}

/* Druckausgabe */
@media print {
	.ic-header,
	.ic-toplink,
	.ic-slider__nav,
	.ic-logostrip {
		display: none !important;
	}

	body {
		background: none;
		color: #000000;
	}
}
