/* Blog Carousel — AllyouneedisHarry */
/* Prefix: allyouneed-blog-carousel- */

.allyouneed-blog-carousel-title {
	font-size: 2.5rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
	font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
	background: linear-gradient(
	 to bottom,
	 #d7e5fa 0%,
	 #b3dbff 28%,
	 #3ea8fa 53%,
	 #b3dbff 76%,
	 #d7e5fa 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
body.desktop-large .allyouneed-blog-carousel-title {
	font-size: 2.5rem;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-title {
	font-size: 1.15rem;
	top: 5px;
}
body.smartphone-small-landscape .allyouneed-blog-carousel-title {
	font-size: 1.5rem;
	top: 10px;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-title {
	font-size: 1.55rem;
	top: 5px;
}
body.smartphone-portrait .allyouneed-blog-carousel-title,
body.smartphone-landscape .allyouneed-blog-carousel-title,
body.tablet-portrait .allyouneed-blog-carousel-title,
body.tablet-landscape .allyouneed-blog-carousel-title,
body.desktop .allyouneed-blog-carousel-title {
	font-size: 1.5rem;
}
body.tablet-small-portrait .allyouneed-blog-carousel-title,
body.tablet-small-landscape .allyouneed-blog-carousel-title {
	font-size: 1.8rem;
	top: 5px;
}
body.tablet-large-portrait .allyouneed-blog-carousel-title,
body.tablet-large-landscape .allyouneed-blog-carousel-title {
	font-size: 1.9rem;
	top: 5px;
}

.allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 300px;
	max-height: 300px;
	border-radius: 1.3em;
	border: 0px solid #205083;
	margin-top: 0px;
	margin-bottom: 5px;
	overflow: visible;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.desktop-large .allyouneed-blog-carousel-container {
	min-height: 300px;
	max-height: 300px;
	margin-top: 0px;
	margin-bottom: 5px;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 110px;
	max-height: 110px;
	margin-top: 20px;
}
body.smartphone-small-landscape .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 120px;
	max-height: 120px;
	margin-top: 55px;
}
body.smartphone-portrait .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	max-height: 150px;
	margin-top: 20px;
}
body.smartphone-landscape .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 140px;
	max-height: 140px;
	margin-top: 35px;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 135px;
	max-height: 135px;
	margin-top: 40px;
}
body.smartphone-large-landscape .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 140px;
	max-height: 140px;
	margin-top: 55px;
}
body.tablet-small-portrait .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 160px;
	max-height: 160px;
	margin-top: 60px;
}
body.tablet-small-landscape .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 140px;
	max-height: 140px;
	margin-top: 75px;
}
body.tablet-portrait .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 140px;
	max-height: 140px;
	margin-top: 50px;
}
body.tablet-landscape .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 140px;
	max-height: 140px;
	margin-top: 60px;
}
body.tablet-large-portrait .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 170px;
	max-height: 170px;
	margin-top: 50px;
}
body.tablet-large-landscape .allyouneed-blog-carousel-container {
	width: 100%;
	max-width: 100%;
	min-height: 140px;
	max-height: 140px;
	margin-top: 60px;
}

.allyouneed-blog-carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.allyouneed-blog-carousel-card {
	position: absolute;
	width: 500px;
	height: 200px;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	background: rgba(255,255,255,0.23);
	box-shadow: 0 8px 28px 0 rgba(33,64,130,0.15), 0 1.5px 8px 0 rgba(20,67,123,0.11);
	border: 1.5px solid rgba(62,168,250,0.12);
	border-radius: 11px;
	backdrop-filter: blur(7px) saturate(1.18);
	transition:
		box-shadow 0.33s cubic-bezier(.19,1,.22,1),
		transform 0.75s cubic-bezier(.19,1,.22,1),
		background 0.28s cubic-bezier(.19,1,.22,1),
		border-color 0.23s;
	z-index: 8;
}
body.desktop-large .allyouneed-blog-carousel-card {
	height: 200px;
}
body.desktop .allyouneed-blog-carousel-card {
	height: 200px;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-card {
	width: 170px;
	height: 120px;
	max-width: 170px;
	min-width: 170px;
	max-height: 120px;
	min-height: 120px;
}
body.smartphone-small-landscape .allyouneed-blog-carousel-card {
	width: 320px;
	height: 170px;
	max-width: 320px;
	min-width: 320px;
	max-height: 170px;
	min-height: 170px;
}
body.smartphone-portrait .allyouneed-blog-carousel-card {
	width: 230px;
	height: 130px;
	max-width: 230px;
	min-width: 230px;
	max-height: 130px;
	min-height: 130px;
}
body.smartphone-landscape .allyouneed-blog-carousel-card {
	width: 380px;
	height: 170px;
	max-width: 380px;
	min-width: 380px;
	max-height: 170px;
	min-height: 170px;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-card {
	width: 230px;
	height: 130px;
	max-width: 230px;
	min-width: 230px;
	max-height: 130px;
	min-height: 130px;
}
body.smartphone-large-landscape .allyouneed-blog-carousel-card {
	width: 380px;
	height: 170px;
	max-width: 380px;
	min-width: 380px;
	max-height: 170px;
	min-height: 170px;
}
body.tablet-small-portrait .allyouneed-blog-carousel-card {
	width: 400px;
	height: 180px;
	max-width: 400px;
	min-width: 400px;
	max-height: 180px;
	min-height: 180px;
}
body.tablet-small-landscape .allyouneed-blog-carousel-card {
	width: 500px;
	height: 200px;
	max-width: 500px;
	min-width: 500px;
	max-height: 200px;
	min-height: 200px;
}
body.tablet-portrait .allyouneed-blog-carousel-card {
	width: 400px;
	height: 180px;
	max-width: 400px;
	min-width: 400px;
	max-height: 180px;
	min-height: 180px;
}
body.tablet-landscape .allyouneed-blog-carousel-card {
	width: 500px;
	height: 200px;
	max-width: 500px;
	min-width: 500px;
	max-height: 200px;
	min-height: 200px;
}
body.tablet-large-portrait .allyouneed-blog-carousel-card {
	width: 450px;
	height: 180px;
	max-width: 400px;
	min-width: 400px;
	max-height: 180px;
	min-height: 180px;
}
body.tablet-large-landscape .allyouneed-blog-carousel-card {
	width: 500px;
	height: 200px;
	max-width: 500px;
	min-width: 500px;
	max-height: 200px;
	min-height: 200px;
}

.allyouneed-blog-carousel-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 9;
}

.allyouneed-blog-carousel-card.center {
	transform: scale(1.14) perspective(800px) rotateY(0deg);
	z-index: 12;
	box-shadow: 0 18px 48px 2px #3ea8fa44, 0 8px 20px 0 rgba(33,64,130,0.20);
	filter: brightness(1.11) drop-shadow(0 0 10px #3ea8fa33);
}
body.smartphone-small-portrait .allyouneed-blog-carousel-card.center,
body.smartphone-small-landscape .allyouneed-blog-carousel-card.center,
body.smartphone-portrait .allyouneed-blog-carousel-card.center,
body.smartphone-landscape .allyouneed-blog-carousel-card.center,
body.smartphone-large-portrait .allyouneed-blog-carousel-card.center,
body.smartphone-large-landscape .allyouneed-blog-carousel-card.center,
body.tablet-small-portrait .allyouneed-blog-carousel-card.center,
body.tablet-small-landscape .allyouneed-blog-carousel-card.center,
body.tablet-large-portrait .allyouneed-blog-carousel-card.center,
body.tablet-large-landscape .allyouneed-blog-carousel-card.center {
	transform: scale(1.07) perspective(420px) rotateY(0deg);
	z-index: 12;
}
body.tablet-portrait .allyouneed-blog-carousel-card.center,
body.tablet-landscape .allyouneed-blog-carousel-card.center {
	transform: scale(1.14) perspective(800px) rotateY(0deg);
}

@media (hover: hover) and (pointer: fine) {
	.allyouneed-blog-carousel-card.center:hover {
		box-shadow: 0 0 36px 16px #3ea8fa44, 0 20px 48px 0 rgba(30,64,130,0.15);
		filter: brightness(1.16) drop-shadow(0 2px 20px #3ea8fa99);
		transition: box-shadow 0.18s, filter 0.15s;
	}
}

.allyouneed-blog-carousel-card.center img {
	filter: none;
}

.allyouneed-blog-carousel-movie {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 15;
}
.allyouneed-blog-carousel-movie img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 15;
}

.allyouneed-blog-carousel-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20%;
	background: linear-gradient(0deg, rgba(20,67,123,0.95) 70%, rgba(20,67,123,0.3) 100%, transparent 100%);
	padding: 10px 18px 10px 18px;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
}
body.desktop-large .allyouneed-blog-carousel-overlay,
body.desktop .allyouneed-blog-carousel-overlay {
	height: 20%;
	padding: 10px 18px 10px 18px;
}
body.smartphone-landscape .allyouneed-blog-carousel-overlay {
	padding: 6px 16px 6px 16px;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-overlay {
	padding: 6px 16px 6px 16px;
}

.allyouneed-blog-carousel-card-title {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-align: left;
	text-shadow: 0 2px 10px rgba(20,67,123,0.28);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1 1 0;
	min-width: 0;
	margin-right: 0.8em;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-card-title {
	font-size: 0.58rem;
	margin-right: 0.6em;
}
body.smartphone-small-landscape .allyouneed-blog-carousel-card-title {
	font-size: 0.68rem;
	margin-right: 0.6em;
}
body.smartphone-portrait .allyouneed-blog-carousel-card-title {
	font-size: 0.68rem;
	margin-right: 0.6em;
}
body.smartphone-landscape .allyouneed-blog-carousel-card-title {
	font-size: 0.78rem;
	margin-right: 0.6em;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-card-title {
	font-size: 0.68rem;
	margin-right: 0.6em;
}
body.smartphone-large-landscape .allyouneed-blog-carousel-card-title {
	font-size: 0.78rem;
	margin-right: 0.6em;
}
body.tablet-small-portrait .allyouneed-blog-carousel-card-title {
	font-size: 0.88rem;
	margin-right: 0.6em;
}
body.tablet-small-landscape .allyouneed-blog-carousel-card-title {
	font-size: 0.95rem;
	margin-right: 0.6em;
}
body.tablet-portrait .allyouneed-blog-carousel-card-title {
	font-size: 0.88rem;
	margin-right: 0.6em;
}
body.tablet-landscape .allyouneed-blog-carousel-card-title {
	font-size: 0.88rem;
	margin-right: 0.6em;
}
body.tablet-large-portrait .allyouneed-blog-carousel-card-title {
	font-size: 0.88rem;
	margin-right: 0.6em;
}
body.tablet-large-landscape .allyouneed-blog-carousel-card-title {
	font-size: 0.88rem;
	margin-right: 0.6em;
}
body.desktop-large .allyouneed-blog-carousel-card-title,
body.desktop .allyouneed-blog-carousel-card-title,
body.desktop-small .allyouneed-blog-carousel-card-title {
	font-size: 1.1rem;
	font-weight: 700;
}

.allyouneed-blog-carousel-category {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 0.2em 0.3em;
	background: rgba(0,0,0,0.35);
	color: #fff;
	font-size: 0.98rem;
	font-weight: bold;
	z-index: 20;
	opacity: 1;
}
body.desktop-large .allyouneed-blog-carousel-category,
body.desktop .allyouneed-blog-carousel-category,
body.tablet-large-portrait .allyouneed-blog-carousel-category,
body.tablet-large-landscape .allyouneed-blog-carousel-category {
	padding: 0.2em 0.3em;
	font-size: 0.98rem;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-category {
	padding: 0.1em 0.1em;
	font-size: 0.78rem;
}
body.smartphone-portrait .allyouneed-blog-carousel-category {
	padding: 0.1em 0.1em;
	font-size: 0.78rem;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-category {
	padding: 0.1em 0.1em;
	font-size: 0.78rem;
}
body.smartphone-landscape .allyouneed-blog-carousel-category,
body.tablet-small-portrait .allyouneed-blog-carousel-category,
body.tablet-small-landscape .allyouneed-blog-carousel-category,
body.tablet-portrait .allyouneed-blog-carousel-category,
body.tablet-landscape .allyouneed-blog-carousel-category {
	padding: 0.15em 0.2em;
	font-size: 0.98rem;
}

.allyouneed-blog-carousel-link {
	background: #ffffff !important;
	color: #0a3d7a !important;
	border: 1px solid #0a3d7a !important;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 1px 5px rgba(0,0,0,0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-shrink: 0;
	white-space: nowrap;
	padding: 0.1em 0.7em;
}
body.desktop-large .allyouneed-blog-carousel-link,
body.desktop .allyouneed-blog-carousel-link,
body.desktop-small .allyouneed-blog-carousel-link,
body.tablet-large-portrait .allyouneed-blog-carousel-link,
body.tablet-large-landscape .allyouneed-blog-carousel-link {
	font-size: 0.8rem;
	padding: 0.12em 0.7em;
	border-radius: 6px;
}
body.smartphone-portrait .allyouneed-blog-carousel-link {
	font-size: 0.5rem;
	padding: 0.10em 0.1em;
	border-radius: 8px;
	min-width: 80px;
	min-height: 17px;
	margin-right: 2px;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-link {
	font-size: 0.5rem;
	padding: 0.10em 0.15em;
	border-radius: 8px;
	min-width: 70px;
	min-height: 15px;
	align-items: right;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-link {
	font-size: 0.5rem;
	padding: 0.10em 0.1em;
	border-radius: 8px;
	min-width: 80px;
	min-height: 17px;
	margin-right: 2px;
}
body.smartphone-landscape .allyouneed-blog-carousel-link,
body.tablet-small-portrait .allyouneed-blog-carousel-link,
body.tablet-small-landscape .allyouneed-blog-carousel-link,
body.tablet-portrait .allyouneed-blog-carousel-link,
body.tablet-landscape .allyouneed-blog-carousel-link {
	font-size: 0.75rem;
	padding: 0.20em 0.22em;
	border-radius: 8px;
	min-width: 150px;
	min-height: 22px;
}
.allyouneed-blog-carousel-link:hover,
.allyouneed-blog-carousel-link:focus {
	background: #ddeeff !important;
	color: #0a3d7a !important;
	outline: none;
}

.allyouneed-blog-carousel-card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-55px) scale(0.79) translateZ(-35px);
}
body.smartphone-small-landscape .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-90px) scale(0.79) translateZ(-35px);
}
body.smartphone-portrait .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-63px) scale(0.74) translateZ(-100px);
}
body.smartphone-landscape .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-152px) scale(0.74) translateZ(-100px);
}
body.smartphone-large-portrait .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-78px) scale(0.74) translateZ(-100px);
}
body.smartphone-large-landscape .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-152px) scale(0.74) translateZ(-100px);
}
body.tablet-small-portrait .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-155px) scale(0.74) translateZ(-100px);
}
body.tablet-small-landscape .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-235px) scale(0.74) translateZ(-100px);
}
body.tablet-portrait .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-155px) scale(0.74) translateZ(-100px);
}
body.tablet-landscape .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-230px) scale(0.74) translateZ(-100px);
}
body.tablet-large-portrait .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-275px) scale(0.74) translateZ(-100px);
}
body.tablet-large-landscape .allyouneed-blog-carousel-card.left-2 {
	transform: translateX(-325px) scale(0.74) translateZ(-100px);
}
body.desktop-large .allyouneed-blog-carousel-card.left-2 {
	/* War -360px — outer Card zu weit außen bei 1391px Viewport */
	transform: translateX(-300px) scale(0.8) translateZ(-300px);
}
body.desktop .allyouneed-blog-carousel-card.left-2 {
	/* War -310px — zu weit für ~900px Content-Breite, Card ragte links raus */
	transform: translateX(-230px) scale(0.8) translateZ(-300px);
}
body.desktop-small .allyouneed-blog-carousel-card.left-2 {
	/* 1280-1439px (z.B. 1366px, 1391px) — Basis-Fallback war -400px, viel zu weit */
	transform: translateX(-270px) scale(0.8) translateZ(-300px);
}
.allyouneed-blog-carousel-card.left-2 img {
	filter: grayscale(100%);
}

.allyouneed-blog-carousel-card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-32px) scale(0.89) translateZ(-35px);
}
body.smartphone-small-landscape .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-55px) scale(0.89) translateZ(-35px);
}
body.smartphone-portrait .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-35px) scale(0.89) translateZ(-35px);
}
body.smartphone-landscape .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-85px) scale(0.89) translateZ(-35px);
}
body.smartphone-large-portrait .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-42px) scale(0.89) translateZ(-35px);
}
body.smartphone-large-landscape .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-85px) scale(0.89) translateZ(-35px);
}
body.tablet-small-portrait .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-88px) scale(0.89) translateZ(-35px);
}
body.tablet-small-landscape .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-135px) scale(0.89) translateZ(-35px);
}
body.tablet-portrait .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-88px) scale(0.89) translateZ(-35px);
}
body.tablet-landscape .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-135px) scale(0.89) translateZ(-35px);
}
body.tablet-large-portrait .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-168px) scale(0.89) translateZ(-35px);
}
body.tablet-large-landscape .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-180px) scale(0.89) translateZ(-35px);
}
body.desktop-large .allyouneed-blog-carousel-card.left-1 {
	transform: translateX(-185px) scale(0.9) translateZ(-300px);
}
body.desktop .allyouneed-blog-carousel-card.left-1 {
	/* Proportional angepasst zu neuem left-2 */
	transform: translateX(-140px) scale(0.9) translateZ(-300px);
}
.allyouneed-blog-carousel-card.left-1 img {
	filter: grayscale(100%);
}

.allyouneed-blog-carousel-card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(32px) scale(0.89) translateZ(-35px);
}
body.smartphone-small-landscape .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(55px) scale(0.89) translateZ(-35px);
}
body.smartphone-portrait .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(35px) scale(0.89) translateZ(-35px);
}
body.smartphone-landscape .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(85px) scale(0.89) translateZ(-35px);
}
body.smartphone-large-portrait .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(42px) scale(0.89) translateZ(-35px);
}
body.smartphone-large-landscape .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(85px) scale(0.89) translateZ(-35px);
}
body.tablet-small-portrait .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(88px) scale(0.89) translateZ(-35px);
}
body.tablet-small-landscape .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(135px) scale(0.89) translateZ(-35px);
}
body.tablet-portrait .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(88px) scale(0.89) translateZ(-35px);
}
body.tablet-landscape .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(135px) scale(0.89) translateZ(-35px);
}
body.tablet-large-portrait .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(168px) scale(0.89) translateZ(-35px);
}
body.tablet-large-landscape .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(180px) scale(0.89) translateZ(-35px);
}
body.desktop-large .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(185px) scale(0.9) translateZ(-100px);
}
body.desktop .allyouneed-blog-carousel-card.right-1 {
	transform: translateX(140px) scale(0.9) translateZ(-100px);
}
.allyouneed-blog-carousel-card.right-1 img {
	filter: grayscale(100%);
}

.allyouneed-blog-carousel-card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(55px) scale(0.79) translateZ(-35px);
}
body.smartphone-small-landscape .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(90px) scale(0.79) translateZ(-35px);
}
body.smartphone-portrait .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(63px) scale(0.74) translateZ(-100px);
}
body.smartphone-landscape .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(152px) scale(0.74) translateZ(-100px);
}
body.smartphone-large-portrait .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(78px) scale(0.74) translateZ(-100px);
}
body.smartphone-large-landscape .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(152px) scale(0.74) translateZ(-100px);
}
body.tablet-small-portrait .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(155px) scale(0.74) translateZ(-100px);
}
body.tablet-small-landscape .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(235px) scale(0.74) translateZ(-100px);
}
body.tablet-portrait .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(155px) scale(0.74) translateZ(-100px);
}
body.tablet-landscape .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(230px) scale(0.74) translateZ(-100px);
}
body.tablet-large-portrait .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(275px) scale(0.74) translateZ(-100px);
}
body.tablet-large-landscape .allyouneed-blog-carousel-card.right-2 {
	transform: translateX(325px) scale(0.74) translateZ(-100px);
}
body.desktop-large .allyouneed-blog-carousel-card.right-2 {
	/* War +360px — gespiegelt zu left-2 */
	transform: translateX(300px) scale(0.8) translateZ(-300px);
}
body.desktop .allyouneed-blog-carousel-card.right-2 {
	/* War +310px — gespiegelte Korrektur zu left-2 */
	transform: translateX(230px) scale(0.8) translateZ(-300px);
}
body.desktop-small .allyouneed-blog-carousel-card.right-2 {
	/* 1280-1439px (z.B. 1366px, 1391px) — gespiegelt zu left-2 desktop-small */
	transform: translateX(270px) scale(0.8) translateZ(-300px);
}
.allyouneed-blog-carousel-card.right-2 img {
	filter: grayscale(100%);
}

.allyouneed-blog-carousel-card.hidden {
	opacity: 0;
	pointer-events: none;
}

.allyouneed-blog-carousel-card:focus-visible,
.allyouneed-blog-carousel-dot:focus-visible {
	outline: 2.5px solid #3ea8fa;
	outline-offset: 2px;
	z-index: 99;
}

.allyouneed-blog-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: -30px;
	z-index: 2;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-dots {
	margin-top: 35px;
	gap: 5px;
}
body.smartphone-small-landscape .allyouneed-blog-carousel-dots {
	margin-top: 55px;
	gap: 6px;
}
body.smartphone-portrait .allyouneed-blog-carousel-dots {
	margin-top: 22px;
	gap: 5px;
}
body.smartphone-landscape .allyouneed-blog-carousel-dots {
	margin-top: 38px;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-dots {
	margin-top: 25px;
	gap: 5px;
}
body.smartphone-large-landscape .allyouneed-blog-carousel-dots {
	margin-top: 38px;
}
body.tablet-small-portrait .allyouneed-blog-carousel-dots {
	margin-top: 45px;
}
body.tablet-small-landscape .allyouneed-blog-carousel-dots {
	margin-top: 60px;
}
body.tablet-portrait .allyouneed-blog-carousel-dots {
	margin-top: 40px;
}
body.tablet-landscape .allyouneed-blog-carousel-dots {
	margin-top: 70px;
}
body.tablet-large-portrait .allyouneed-blog-carousel-dots {
	margin-top: 40px;
}
body.tablet-large-landscape .allyouneed-blog-carousel-dots {
	margin-top: 70px;
}

.allyouneed-blog-carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8,42,123,0.2);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 0.1px solid rgba(255,255,0,0.4);
}
body.smartphone-small-portrait .allyouneed-blog-carousel-dot {
	width: 6px;
	height: 6px;
}
body.smartphone-small-landscape .allyouneed-blog-carousel-dot {
	width: 7px;
	height: 7px;
}
body.smartphone-portrait .allyouneed-blog-carousel-dot {
	width: 6px;
	height: 6px;
}
body.smartphone-landscape .allyouneed-blog-carousel-dot {
	width: 8px;
	height: 8px;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-dot {
	width: 6px;
	height: 6px;
}
body.smartphone-large-landscape .allyouneed-blog-carousel-dot {
	width: 8px;
	height: 8px;
}
.allyouneed-blog-carousel-dot.active {
	background: rgb(8,42,123);
	transform: scale(1.2);
}

.allyouneed-blog-carousel-arrow {
	top: 285px;
	transform: translateY(-50%);
	background: linear-gradient(145deg, #205083 60%, #3ea8fa 100%);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.28s cubic-bezier(.19,1,.22,1);
	font-size: 1.5rem;
	border: 1px solid #ffff00;
	outline: none;
	padding-bottom: 4px;
	box-shadow: 0 4px 16px 0 rgba(30,80,130,0.11), 0 1.5px 8px 0 rgba(30,64,130,0.13);
	overflow: hidden;
	position: absolute;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-arrow {
	width: 30px;
	height: 30px;
	top: 165px;
	font-size: 0.92rem;
}
body.smartphone-small-landscape .allyouneed-blog-carousel-arrow {
	width: 30px;
	height: 30px;
	top: 250px;
	font-size: 0.92rem;
}
body.smartphone-portrait .allyouneed-blog-carousel-arrow {
	width: 30px;
	height: 30px;
	top: 200px;
	font-size: 0.92rem;
}
body.smartphone-landscape .allyouneed-blog-carousel-arrow {
	width: 40px;
	height: 40px;
	top: 220px;
	font-size: 0.92rem;
}
body.smartphone-large-portrait .allyouneed-blog-carousel-arrow {
	width: 30px;
	height: 30px;
	top: 210px;
	font-size: 0.92rem;
}
body.smartphone-large-landscape .allyouneed-blog-carousel-arrow {
	width: 40px;
	height: 40px;
	top: 240px;
	font-size: 0.92rem;
}
body.tablet-small-portrait .allyouneed-blog-carousel-arrow {
	width: 45px;
	height: 45px;
	top: 275px;
	font-size: 0.92rem;
}
body.tablet-small-landscape .allyouneed-blog-carousel-arrow {
	width: 45px;
	height: 45px;
	top: 275px;
	font-size: 0.92rem;
}
body.tablet-portrait .allyouneed-blog-carousel-arrow {
	width: 35px;
	height: 35px;
	top: 245px;
	font-size: 0.92rem;
}
body.tablet-landscape .allyouneed-blog-carousel-arrow {
	width: 45px;
	height: 45px;
	top: 275px;
	font-size: 0.92rem;
}
body.tablet-large-portrait .allyouneed-blog-carousel-arrow {
	width: 45px;
	height: 45px;
	top: 275px;
	font-size: 0.92rem;
}
body.tablet-large-landscape .allyouneed-blog-carousel-arrow {
	width: 45px;
	height: 45px;
	top: 275px;
	font-size: 0.92rem;
}

.allyouneed-blog-carousel-arrow svg {
	display: block;
	width: 1.3em;
	height: 1.3em;
	stroke: #fff;
	filter: drop-shadow(0 1px 6px #3ea8fa66);
	transition: stroke 0.18s, filter 0.25s;
}
.allyouneed-blog-carousel-arrow:after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(62,168,250,0.16);
	opacity: 0;
	transition: opacity 0.23s;
	z-index: 0;
}
.allyouneed-blog-carousel-arrow:hover,
.allyouneed-blog-carousel-arrow:focus-visible {
	background: linear-gradient(140deg, #3ea8fa 60%, #205083 100%);
	box-shadow: 0 7px 20px 0 rgba(62,168,250,0.16);
	transform: translateY(-50%) scale(1.12);
}
.allyouneed-blog-carousel-arrow:hover svg,
.allyouneed-blog-carousel-arrow:focus-visible svg {
	stroke: #ffeebb;
	filter: drop-shadow(0 2px 14px #3ea8fa99);
}
.allyouneed-blog-carousel-arrow:hover:after,
.allyouneed-blog-carousel-arrow:focus-visible:after {
	opacity: 1;
}
.allyouneed-blog-carousel-arrow.left {
	left: 20px;
	padding-right: 3px;
}
.allyouneed-blog-carousel-arrow.right {
	right: 20px;
	padding-left: 3px;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-arrow.left {
	left: 5px;
}
body.smartphone-small-portrait .allyouneed-blog-carousel-arrow.right {
	right: 5px;
}
body.smartphone-portrait .allyouneed-blog-carousel-arrow.left {
	left: 10px;
}
body.smartphone-portrait .allyouneed-blog-carousel-arrow.right {
	right: 10px;
}

@keyframes popInScale {
	0%   { transform: scale(0.96) translateZ(0); opacity: 0.7; }
	40%  { transform: scale(1.14) translateZ(0); opacity: 1; }
	80%  { transform: scale(0.97) translateZ(0); opacity: 1; }
	100% { transform: scale(1.1) translateZ(0); opacity: 1; }
}
@keyframes popIn {
	0% {
		transform: scale(0.9);
		box-shadow: 0 10px 30px rgba(30,64,130,0.05);
		opacity: 0.7;
	}
	60% {
		transform: scale(1.13);
		box-shadow: 0 30px 40px rgba(30,120,255,0.15);
		opacity: 1;
	}
	100% {
		transform: scale(1.1);
		box-shadow: 0 20px 40px rgba(20,67,123,0.15);
		opacity: 1;
	}
}
.allyouneed-blog-carousel-card.center.pop-in {
	animation: popIn 0.55s cubic-bezier(.17,.67,.83,.67) both;
	z-index: 30 !important;
}

.allyouneed-blog-carousel-progress {
	position: absolute;
	bottom: 0;
	left: 5%;
	width: 0%;
	max-width: 90%;
	height: 4px;
	background: linear-gradient(90deg, #3ea8fa 70%, #205083 100%);
	border-radius: 2px;
	opacity: 0;
	z-index: 22;
	transition: width 5.5s linear, opacity 0.2s;
	pointer-events: none;
}
body.smartphone-portrait .allyouneed-blog-carousel-progress {
	bottom: 0;
	left: 10%;
	width: 0%;
	max-width: 80%;
	height: 3px !important;
	border-radius: 2px;
}
