/* Base wrapper for true 100% width and prominent height */
.cta-bar-6b8975bf-wrapper {
	display: flex;
	flex-direction: column;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background: linear-gradient(90deg, #d34f00 0%, #eb6800 100%);
	color: #fff;
	padding: 38px 40px; /* Increased padding (breiter machen damit es auffällt) */
	box-sizing: border-box;
	font-family: inherit;
}

/* Horizontal flex layout */
.cta-bar-6b8975bf-main {
	display: flex;
	flex-wrap: nowrap; /* Force single line on desktop to stay elegant */
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1800px; /* Over full width */
	margin: 0 auto;
	gap: 40px;
}

/* Left side (Horizontal aligned info & action) */
.cta-bar-6b8975bf-left {
	display: flex;
	align-items: center;
	gap: 40px;
	flex: 1 1 auto;
}

.cta-bar-6b8975bf-info {
	display: flex;
	flex-direction: column;
}

.cta-bar-6b8975bf-heading {
	font-size: 22px; /* Perfect balance font size */
	font-weight: 800;
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.2;
}

.cta-bar-6b8975bf-subtitle {
	font-size: 14px; /* Sleek subtitle */
	margin: 6px 0 0 0;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.3;
}

/* Action Area: Button + Language */
.cta-bar-6b8975bf-action-area {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: nowrap;
}

.cta-bar-6b8975bf-button {
	display: inline-block;
	background-color: #fff;
	color: #000;
	padding: 11px 24px; /* Balanced premium button shape */
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s;
	white-space: nowrap;
}

.cta-bar-6b8975bf-button:hover {
	background-color: #f1f1f1;
}

/* Language styling next to button */
.cta-bar-6b8975bf-language {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(0,0,0,0.15);
	padding: 7px 13px;
	border-radius: 4px;
	border: 1px solid rgba(255,255,255,0.2);
}

.cta-bar-6b8975bf-lang-flags {
	font-size: 15px;
	line-height: 1;
}

.cta-bar-6b8975bf-lang-text {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
}

/* Right side (Contact methods) */
.cta-bar-6b8975bf-right {
	display: flex;
	flex: 0 0 auto;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
}

/* Individual contact method item */
.cta-bar-6b8975bf-method {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

/* Vertical divider line */
.cta-bar-6b8975bf-method:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -15px;
	top: 15%;
	height: 70%;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.3);
}

.cta-bar-6b8975bf-method-icon {
	font-size: 24px; /* Clean icons */
	line-height: 1;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cta-bar-6b8975bf-method-icon svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

.cta-bar-6b8975bf-method-content {
	display: flex;
	flex-direction: column;
}

.cta-bar-6b8975bf-method-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2px;
}

.cta-bar-6b8975bf-method-value {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
	.cta-bar-6b8975bf-main {
		flex-wrap: wrap;
	}
	.cta-bar-6b8975bf-right {
		width: 100%;
		justify-content: flex-start;
	}
}

@media (max-width: 992px) {
	.cta-bar-6b8975bf-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.cta-bar-6b8975bf-right {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.cta-bar-6b8975bf-method:not(:last-child)::after {
		display: none;
	}
}
