/* --- BASIS-STYLING FÜR DEN WRAPPER --- */
div.elementor-widget-button.btn-bewerben {
	position: relative;
	display: flex;
	width: 250px;
	height: 156px;
	transform: rotate(-8deg);
	align-items: center;
	justify-content: center;
}

/* --- RESPONSIVE ANPASSUNG (WRAPPER) --- */
@media screen and (max-width: 769px) {
	div.elementor-widget-button.btn-bewerben {
		transform: rotate(-8deg) scale(0.8);
	}
}

/* --- STYLING FÜR DEN LINK --- */
div.elementor-widget-button.btn-bewerben a.elementor-button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	text-decoration: none;
	background: transparent !important;
	z-index: 2;
	
	/* Typografie */
	font-family: var(--e-global-typography-typo_h3-font-family), Sans-serif;
	font-size: var(--e-global-typography-typo_h3-font-size);
	font-weight: var(--e-global-typography-typo_h3-font-weight);
	line-height: var(--e-global-typography-typo_h3-line-height);
	color: #ffffff !important;
	text-align: center;
}

/* --- HOVER ZUSTAND --- */
div.elementor-widget-button.btn-bewerben a.elementor-button:hover,
div.elementor-widget-button.btn-bewerben a.elementor-button:hover span {
	color: #ffffff !important;
	text-decoration: underline !important;
	text-decoration-thickness: 2px !important;
}

/* --- KLICK- & FOKUS-ZUSTAND (Überschreibt Hover) --- */
div.elementor-widget-button.btn-bewerben a.elementor-button:active,
div.elementor-widget-button.btn-bewerben a.elementor-button:focus,
div.elementor-widget-button.btn-bewerben a.elementor-button:active span,
div.elementor-widget-button.btn-bewerben a.elementor-button:focus span,
div.elementor-widget-button.btn-bewerben:focus-within a.elementor-button span {
	background: #ffffff !important;
	color: #083163 !important;
	text-decoration: underline !important;
	text-decoration-thickness: 2px !important;
}

/* --- HINTERGRUND-GRAFIKEN --- */
div.elementor-widget-button.btn-bewerben::before {
	content: url("assets/cta-button-circle.svg");
	position: absolute;
	width: 100%;
	height: 100%;
	top: -15%;
	left: -10%;
	pointer-events: none;
	z-index: 3;
}

/* Hintergrund-Wechsel bei Fokus/Klick */
div.elementor-widget-button.btn-bewerben:has(a.elementor-button:focus)::before,
div.elementor-widget-button.btn-bewerben:has(a.elementor-button:active)::before,
div.elementor-widget-button.btn-bewerben:focus-within::before {
	content: url("assets/cta-button-hover.svg");
}

/* --- PFEIL-GRAFIK (Desktop) --- */
div.elementor-widget-button.btn-bewerben::after {
	content: url("assets/cta-pfeil.svg");
	position: absolute;
	left: 195px;
	top: 120%;
	width: 80px;
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 1;
}

div.elementor-widget-button.btn-bewerben:hover::after {
	left: 80%;
	top: 105%;
	transform: rotate(-19deg);
}

/* --- PFEIL-GRAFIK (Mobil) --- */
@media screen and (max-width: 769px) {
	div.elementor-widget-button.btn-bewerben::after {
		left: 115px;
		top: 120%;
		width: 40px;
	}

	div.elementor-widget-button.btn-bewerben:hover::after {
		left: 80%;
		top: 105%;
		transform: rotate(-19deg);
	}
}