/* MaHe Info-Box – Styles */

.mahe-infobox {
	--mahe-green: #2E7D32;
	--mahe-green-bright: #43A047;
	--mahe-green-tint: #E8F5E9;
	--mahe-ink: #1A1A1A;
	--mahe-muted: #6B7A6C;
	--mahe-rule: #D7E6D8;

	background-color: transparent !important;
	color: var(--mahe-ink) !important;
	font-family: 'Merriweather', Georgia, serif !important;
	font-size: 15px !important;
	line-height: 1.65 !important;
	max-width: 320px;
}

.mahe-infobox p,
.mahe-infobox a,
.mahe-infobox span {
	font-family: 'Merriweather', Georgia, serif !important;
}

/* Kopfzeile */
.mahe-infobox__title {
	display: flex !important;
	align-items: center;
	gap: 8px;
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	margin: 0 !important;
}
.mahe-infobox__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--mahe-green-bright);
	box-shadow: 0 0 0 0 rgba(67, 160, 71, .55);
	animation: mahe-infobox-pulse 2.2s infinite;
	flex-shrink: 0;
	display: inline-block;
}
@keyframes mahe-infobox-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(67, 160, 71, .55); }
	70%  { box-shadow: 0 0 0 6px rgba(67, 160, 71, 0); }
	100% { box-shadow: 0 0 0 0 rgba(67, 160, 71, 0); }
}
.mahe-infobox__tagline {
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	margin: 4px 0 10px !important;
}
.mahe-infobox__desc {
	color: var(--mahe-muted) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	margin: 0 0 18px !important;
}

/* Abschnitte */
.mahe-infobox__section {
	border-top: 1px solid var(--mahe-rule);
	padding-top: 14px;
	margin-top: 14px;
}
.mahe-infobox__section-title {
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	margin: 0 0 8px !important;
}
.mahe-infobox__address {
	color: var(--mahe-muted) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	margin: 0 !important;
}
.mahe-infobox__intro {
	margin: 0 0 10px !important;
}

/* Kontaktzeilen */
.mahe-infobox__row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
}
.mahe-infobox__row:last-child { margin-bottom: 0; }
.mahe-infobox__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--mahe-green-tint);
	flex-shrink: 0;
}
.mahe-infobox__icon svg { width: 15px; height: 15px; }

.mahe-infobox__link {
	color: var(--mahe-green) !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	border-bottom: 1px solid transparent;
	transition: color .25s, border-color .25s;
}
.mahe-infobox__link:hover {
	color: var(--mahe-green-bright) !important;
	border-color: var(--mahe-green-bright);
}

/* WhatsApp-Kanal CTA */
.mahe-infobox__cta {
	display: inline-flex !important;
	align-items: center;
	gap: 7px;
	background: var(--mahe-green);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	padding: 8px 16px;
	border-radius: 999px;
	transition: background .25s, transform .15s;
}
.mahe-infobox__cta:hover {
	background: var(--mahe-green-bright);
	transform: translateY(-1px);
}
.mahe-infobox__cta svg { width: 14px; height: 14px; fill: #fff; }
