@charset "UTF-8";

/* === "Aktuelles"-Link === */
.news-link-wrapper {
	text-align: center;
	margin: 1.5rem 0 1rem;
}
.news-link {
	display: inline-block;
	font-weight: bold;
	font-size: 1.15rem;
	letter-spacing: 0.03em;
	color: #333;
	text-decoration: none;
	padding: 0.4rem 1rem;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s, color 0.2s;
	cursor: pointer;
}
.news-link:hover {
	color: #000;
	border-bottom-color: #333;
}

/* === Lightbox Overlay === */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.65);
	align-items: flex-start;
	justify-content: center;
	padding: 40px 1.5rem 2rem;
	overflow-y: auto;
}
.lightbox.is-open {
	display: flex;
}

/* === Lightbox Inhalt (Milchglas) === */
.lightbox-content {
	position: relative;
	width: 70%;
	max-width: 720px;
	background: rgba(255, 255, 255, 0.80);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	padding: 2.2rem 2.4rem 2rem;
	color: #333;               /* wie body in style.css */
	font-family: Arial;        /* wie style.css */
	line-height: 1.5rem;       /* wie p in style.css */
	text-align: center;
}

/* Schließen-Kreuz */
.lightbox-close {
	position: absolute;
	top: 0.7rem;
	right: 1.1rem;
	font-size: 1.9rem;
	line-height: 1;
	color: #333;
	text-decoration: none;
	font-weight: 300;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	transition: color 0.2s;
}
.lightbox-close:hover {
	color: #000;
}

/* Text-Formatierung – übernommen aus style.css */
.lightbox-content h3 {
	margin: 0 0 1rem;
	font-size: 1.5rem;         /* wie h3 in style.css */
	color: #333;
	line-height: 1.4;
}
.lightbox-content p {
	margin: 0 0 1rem;
	font-size: 1rem;           /* wie p in style.css */
	line-height: 1.5rem;
}
.lightbox-content .contact {
	margin-top: 1.3rem;
	font-size: 1rem;
}

/* Mobile */
@media (max-width: 640px) {
	.lightbox-content {
		width: 92%;
		padding: 1.8rem 1.4rem 1.5rem;
	}
}
