/** Bereich Landingpage Claim **/
.claimContainer {
	position: relative;
}
.claimImgContainer {
	width: 100%;
	aspect-ratio: 2.4/1;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.claimTextContainer {
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -88px;
}
#claimTextContainer.hide {
	display: none;
}
.claimTextContainer > div {
	width:100%;
	text-align:center;
	color:#fff;
}
.claimTextContainer h1 {
	margin: 0;
	color: #fff;
	font-weight:bold;
	font-size: 7em;
}
.claimTextContainer p {
	font-size: 4em;
	line-height: 1.2em;
}
.claimTextContainer a {
	font-size: 2.5em;
	width: auto;
	line-height: 3em;
}
.claimTextContainer #clickStartHeaderVideo {
	margin: 1em 0;
	display: block;
	cursor: pointer;
}
.claimTextContainer #clickStartHeaderVideo i:hover {
	color: #fff;
}
.claimTextContainer i {
	font-size: 6em;
}
.claimStreamContainer {
	width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #08aad8, #00f7ae);
    top: 0;
	z-index: 10;
}
.claimStreamContainer.hide {
	display: none;
}
.claimStreamContainer.show {
	display: block;
}
#clip.hide {
	height: 0px;
	overflow: hidden;
}
.claimStreamContainer > div {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Seitenverhältnis (9 / 16 = 0.5625) */
  height: 0;
  overflow: hidden;
}
.claimStreamContainer > div > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** Bereich Landingpage Teaser **/
.landingpageTeaserContainer {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 3fr));
	gap: 30px;
	text-align: center;
	padding: 50px 0;
}
.landingpageTeaser {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landingpageTeaser svg {
	width: 48px;
	height: 48px;
	margin-bottom: 15px;
	stroke-width: 1.5;
	color: var(--kaatsch-icon-color);
}

.landingpageTeaserContainer h3 {
	margin-bottom: 15px;
	font-size: 1.6em;
	font-weight: 700;
}

.landingpageTeaserContainer p {
	margin-bottom: 15px;
	font-size: 1.5em;
	line-height: 1.2em;
	font-weight: 500;
}
.landingpageTeaserContainer i {
	font-size: 5em;

}

/** Bereich Landingpage Zertifikat Downloads **/
ul.zertifikatDownload li {
	border-bottom: 1px solid #ccc;
	padding-bottom: 8px;
	margin-bottom: 8px;
	font-size: 20px;
	color: #000;
}

ul.zertifikatDownload li a {
	color: #000;
	text-decoration: none;
}

ul.zertifikatDownload li a:hover {
	color: #06e0b5;
}
ul.zertifikatDownload i {
	margin-right: 10px;
}