.dcb-container {
	position: relative;
	overflow: visible;
	display: flex;
	text-decoration: none;
	box-sizing: border-box;
}

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

.dcb-container a {
	text-decoration: none;
}

.dcb-image-wrap {
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	isolation: isolate;
	line-height: 0;
	max-width: 100%;
}

.dcb-image-wrap .dcb-image-el {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	min-height: 100%;
	display: block;
	transition: transform 0.4s ease;
	transform-origin: center center;
}

.dcb-bg-image {
	position: absolute;
	inset: 0;
	background-position: center;
	transition: transform 0.4s ease;
	z-index: 1;
}

.dcb-bg-video,
.dcb-media-video {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.dcb-media-video {
	border-radius: inherit;
}

.dcb-video-embed,
.dcb-video-file {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.dcb-video-youtube {
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100%;
	transform: translate(-50%, -50%) scale(1.6);
	opacity: 0;
	transition: opacity 0.45s ease;
	animation: dcb-video-yt-in 0.45s ease 2s forwards;
}

@keyframes dcb-video-yt-in {
	to {
		opacity: 1;
	}
}

.dcb-bg-video.dcb-video-ready .dcb-video-youtube,
.dcb-media-video.dcb-video-ready .dcb-video-youtube {
	opacity: 1;
	animation: none;
}

.dcb-video-file {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: none;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.dcb-bg-video.dcb-video-ready .dcb-video-file,
.dcb-media-video.dcb-video-ready .dcb-video-file {
	opacity: 1;
}

.dcb-video-cover {
	position: absolute;
	inset: 0;
	z-index: 4;
	background: #0a0a0a;
	opacity: 1;
	transition: opacity 0.45s ease, visibility 0.45s ease;
	pointer-events: none;
	animation: dcb-video-cover-hide 0.45s ease 2s forwards;
}

@keyframes dcb-video-cover-hide {
	to {
		opacity: 0;
		visibility: hidden;
	}
}

.dcb-bg-video.dcb-video-ready .dcb-video-cover,
.dcb-media-video.dcb-video-ready .dcb-video-cover {
	opacity: 0;
	visibility: hidden;
	animation: none;
}

.dcb-video-shield {
	position: absolute;
	inset: 0;
	z-index: 6;
	pointer-events: auto;
	cursor: default;
	background: transparent;
}

.dcb-video-file::-webkit-media-controls,
.dcb-video-file::-webkit-media-controls-enclosure,
.dcb-video-file::-webkit-media-controls-panel {
	display: none !important;
	-webkit-appearance: none;
}

.dcb-media-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.dcb-image-wrap .dcb-media-overlay {
	border-radius: inherit;
}

.dcb-container:hover .dcb-image-el,
.dcb-container:hover .dcb-bg-image {
	transform: scale(1.08);
}

.dcb-container:hover .dcb-video-youtube {
	transform: translate(-50%, -50%) scale(1.6);
}

.dcb-container:hover .dcb-video-file {
	transform: none;
}

.dcb-content-wrap {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	z-index: 3;
	position: relative;
	flex: 1;
}

.dcb-pill {
	display: inline-block;
}

.dcb-pill a {
	color: inherit;
	text-decoration: none;
}

.dcb-title-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.dcb-image-link {
	display: block;
	line-height: 0;
}

.dcb-title {
	display: block;
}

.dcb-title:not(.dcb-title--wipe) {
	transition: color 0.3s ease;
}

.dcb-title--wipe {
	transition: none;
}

.dcb-title--wipe.dcb-title--wipe-ready .dcb-title-line {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	max-width: 100%;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
	.dcb-title--wipe.dcb-title--wipe-ready .dcb-title-line {
		background-image: linear-gradient(
			to right,
			var(--dcb-title-hover-color, currentColor) 0%,
			var(--dcb-title-hover-color, currentColor) 50%,
			currentColor 50%,
			currentColor 100%
		);
		background-size: 200% 100%;
		background-position: 100% 0;
		background-repeat: no-repeat;
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		transition: background-position 450ms ease;
		transition-delay: calc(var(--dcb-line-index, 0) * 90ms);
	}

	.dcb-container:hover .dcb-title--wipe.dcb-title--wipe-ready .dcb-title-line {
		background-position: 0 0;
	}
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
	.dcb-title--wipe.dcb-title--wipe-ready .dcb-title-line {
		transition: color 450ms ease;
		transition-delay: calc(var(--dcb-line-index, 0) * 90ms);
	}

	.dcb-container:hover .dcb-title--wipe.dcb-title--wipe-ready .dcb-title-line {
		color: var(--dcb-title-hover-color, currentColor);
	}
}

.dcb-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dcb-button-icon {
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease, fill 0.3s ease;
}

.dcb-button-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.dcb-layout-text-only {
	flex-direction: column;
}

.dcb-layout-image-top {
	flex-direction: column;
}

.dcb-layout-image-top .dcb-image-wrap {
	flex: none;
	max-width: 100%;
}

.dcb-layout-image-left,
.dcb-layout-image-right {
	align-items: flex-start;
}

.dcb-layout-image-left {
	flex-direction: row;
}

.dcb-layout-image-right {
	flex-direction: row-reverse;
}

.dcb-layout-image-left .dcb-image-wrap,
.dcb-layout-image-right .dcb-image-wrap {
	align-self: flex-start;
}

.dcb-layout-image-left .dcb-content-wrap,
.dcb-layout-image-right .dcb-content-wrap {
	justify-content: flex-start;
	align-self: stretch;
}

.dcb-layout-bg-image.dcb-container {
	overflow: hidden;
}

.dcb-layout-bg-image .dcb-content-wrap {
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.dcb-layout-image-left,
	.dcb-layout-image-right {
		flex-direction: column;
		align-items: stretch;
	}

	.dcb-layout-image-left .dcb-image-wrap,
	.dcb-layout-image-right .dcb-image-wrap {
		align-self: stretch;
	}

	.dcb-layout-image-left .dcb-content-wrap,
	.dcb-layout-image-right .dcb-content-wrap {
		width: 100%;
	}
}

/* === Text Animationen (Titel & Beschreibung) === */
.dcb-anim .dcb-anim-text {
	display: inline;
	visibility: hidden;
}

.dcb-anim.dcb-anim-initialized .dcb-anim-text,
.dcb-anim.dcb-anim-initialized .dcb-anim-cursor {
	visibility: visible;
}

.dcb-anim-cursor {
	display: inline-block;
	visibility: hidden;
	margin-left: 2px;
	font-weight: 300;
	vertical-align: baseline;
	animation: dcb-anim-blink 1s step-end infinite;
}

@keyframes dcb-anim-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

/* Wipe (alles zusammen, links nach rechts) */
.dcb-anim--wipe .dcb-anim-text {
	display: inline-block;
	clip-path: inset(0 100% 0 0);
	vertical-align: top;
}

/* Wipe Zeile fuer Zeile */
.dcb-anim--wipe-lines .dcb-anim-text {
	display: inline;
}

.dcb-anim-word {
	display: inline-block;
	white-space: pre;
}

.dcb-anim-line {
	display: inline-block;
	clip-path: inset(0 100% 0 0);
	white-space: normal;
}

/* Reveal (links nach rechts) */
.dcb-anim--reveal .dcb-anim-text {
	display: inline-block;
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

/* Kinetic Typography */
.dcb-anim--kinetic .dcb-anim-char {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px) rotate(-10deg) scale(0.8);
	transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dcb-anim--kinetic .dcb-anim-char.dcb-anim-char--in {
	opacity: 1;
	transform: translateY(0) rotate(0deg) scale(1);
}

/* Fade In Up */
.dcb-anim--fade-up .dcb-anim-text {
	display: inline-block;
	opacity: 0;
	transform: translateY(30px);
}

/* Zoom In */
.dcb-anim--zoom-in .dcb-anim-text {
	display: inline-block;
	opacity: 0;
	transform: scale(0.5);
}

/* === Bild Shine-/Glanz-Effekt === */
.dcb-shine::after {
	content: '';
	position: absolute;
	top: 0;
	left: -150%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	transition: left 0.7s ease;
	pointer-events: none;
	z-index: 3;
}

.dcb-container:hover .dcb-shine::after,
.dcb-shine:hover::after,
.dcb-shine.dcb-shine-anim::after {
	left: 150%;
}

.dcb-shine.dcb-shine-anim .dcb-image-el,
.dcb-shine.dcb-shine-anim .dcb-bg-image {
	transform: scale(1.08);
}

/* =============================================================
   Basis-Optik (entspricht den frueheren PHP-Control-Defaults).
   Die Felder im Editor sind leer; sobald ein Wert gesetzt wird,
   ueberschreibt Elementor diese Basis automatisch.
   Muster: niedrig spezifische globale Basis + .dcb-layout-bg-image-
   Override fuer den Hintergrundbild-Sonderfall (keine :not()-
   Selektoren, damit User-Werte die Basis stets ueberschreiben).
   ============================================================= */

/* Box / Container */
.dcb-content-wrap {
	padding: 30px;
}

.dcb-container {
	border-radius: 24px;
}

.dcb-layout-image-top {
	overflow: hidden;
}

.dcb-layout-bg-image.dcb-container {
	min-height: 400px;
}

.dcb-layout-bg-image .dcb-content-wrap {
	color: #FFFFFF;
	min-height: 400px;
}

/* Bild / Video */
.dcb-image-wrap {
	height: 220px;
	min-height: 220px;
	border-radius: 20px;
}

.dcb-image-el {
	object-fit: cover;
}

.dcb-video-file {
	object-fit: cover;
}

.dcb-bg-image {
	background-size: cover;
	border-radius: 20px;
}

.dcb-layout-image-top .dcb-image-wrap {
	width: 100%;
	max-width: 100%;
}

.dcb-layout-image-left .dcb-image-wrap,
.dcb-layout-image-right .dcb-image-wrap {
	width: 40%;
	max-width: 40%;
	flex: 0 0 40%;
}

/* Overlay */
.dcb-media-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 100%);
}

/* Pill */
.dcb-pill {
	margin: 0 0 15px 0;
	padding: 5px 12px;
	color: #333333;
	background-color: #FFD6C4;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.dcb-layout-bg-image .dcb-pill {
	margin: 0 0 12px 0;
	padding: 0;
	color: #FFFFFF;
	background-color: transparent;
	border-radius: 0;
}

/* Title */
.dcb-title {
	margin: 0 0 10px 0;
	color: #1A1A1A;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3em;
}

.dcb-layout-bg-image .dcb-title {
	color: #FFFFFF;
	font-size: 32px;
	line-height: 1.2em;
}

.dcb-container {
	--dcb-title-hover-color: #FF7A45;
}

.dcb-layout-bg-image.dcb-container {
	--dcb-title-hover-color: #FFD6C4;
}

.dcb-container:hover .dcb-title:not(.dcb-title--wipe) {
	color: var(--dcb-title-hover-color);
}

/* Description */
.dcb-desc {
	margin: 0 0 15px 0;
	font-size: 14px;
	color: #555555;
}

.dcb-layout-bg-image .dcb-desc {
	color: #FFFFFF;
}

/* Meta */
.dcb-meta {
	margin: 0 0 20px 0;
	font-size: 12px;
	color: #888888;
}

.dcb-layout-bg-image .dcb-meta {
	color: #FFFFFF;
}

/* Button */
.dcb-button {
	padding: 15px 30px;
	color: #FFFFFF;
	background-color: #FF7A45;
	border-radius: 50px;
}

.dcb-layout-bg-image .dcb-button {
	margin-top: 20px;
}

/* Responsive Defaults (entsprechen tablet_default / mobile_default) */
@media (max-width: 1024px) {
	.dcb-image-wrap {
		height: 200px;
		min-height: 200px;
	}
}

@media (max-width: 767px) {
	.dcb-image-wrap {
		height: 180px;
		min-height: 180px;
	}

	.dcb-layout-image-left .dcb-image-wrap,
	.dcb-layout-image-right .dcb-image-wrap {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
	}
}
