/* ═══════════════════════════════════════════════════════
   SAR Kontakt-Icon + Modal ([sar-contact-icon] im Header)
   ═══════════════════════════════════════════════════════ */

/* Header-Button: nur das Icon, Farbe erbt aus der Header-Komponente. */
.sar-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 6px;
	cursor: pointer;
	color: #1a3a5c;
	line-height: 0;
}

.sar-contact-icon:hover,
.sar-contact-icon:focus {
	background: none;
	color: #e87722;
}

/* ─── Modal ─── */

.sar-contact-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sar-contact-modal[hidden] {
	display: none;
}

.sar-contact-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.sar-contact-modal__content {
	position: relative;
	background: #fff;
	width: 90vw;
	max-width: 380px;
	padding: 28px 24px 24px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.sar-contact-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	color: #1a1a1a;
	cursor: pointer;
	padding: 0;
}

.sar-contact-modal__close:hover,
.sar-contact-modal__close:focus {
	background: #f2f2f2;
	color: #1a1a1a;
}

.sar-contact-modal__title {
	margin: 0 0 18px;
	font-size: 20px;
	color: #1a3a5c;
}

/* ─── Die drei Kontaktwege ─── */

.sar-contact-modal__option {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 10px;
	margin: 0 -10px;
	text-decoration: none;
	border-radius: 6px;
}

.sar-contact-modal__option:hover,
.sar-contact-modal__option:focus {
	background: #f2f5f8;
	text-decoration: none;
}

.sar-contact-modal__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	background: #1a3a5c;
	border-radius: 50%;
	color: #fff;
}

.sar-contact-modal__text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.sar-contact-modal__text strong {
	color: #1a3a5c;
	font-size: 16px;
	line-height: 1.3;
}

.sar-contact-modal__text span {
	color: #50575e;
	font-size: 13px;
	line-height: 1.3;
	overflow-wrap: anywhere;
}
