/* footer.css – Fussbereich und die Nach-oben-Schaltfläche.

   Nachbau der Live-Seite. Gemessene Werte (2026-08-21, www.achilles-stiftung.de):
   oberes Band #393939, Innenabstand 20px oben / 11px unten, Inhalt 1100px mittig;
   Social-Icons 35px Kreis auf #dd9933, weisses Icon, 14px Abstand;
   Rechtliches-Zeile 12px, #a2a2a2, Zeilenhöhe 25px, Hover weiss;
   unteres Band #f6f6f6, 65px hoch, Text 14px/500 in #393939;
   Nach-oben-Schaltfläche 46px, #585858, fixiert rechts 25px / unten 65px. */

.site-footer {
	position: relative;
	z-index: 100;
}

.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
}

/* --- Oberes, dunkles Band -------------------------------------------------- */

.site-footer__top {
	padding: 20px 0 11px;
	background: var(--footer-dark);
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}

.social-links__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: var(--social-bg);
	color: #fff;
	text-decoration: none;
	transition: background-color 0.15s ease-out, color 0.15s ease-out;
}

/* Die Live-Seite setzt diese beiden Werte per data-Attribut am Icon-Halter. */
.social-links__link:hover,
.social-links__link:focus-visible {
	background: #fff;
	color: #000;
}

.footer-navigation__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-navigation__list > li {
	display: flex;
	align-items: center;
}

.footer-navigation__list a {
	display: block;
	color: var(--footer-link);
	font-family: var(--font-sans);
	font-size: 12px;
	line-height: 25px;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-navigation__list a:hover,
.footer-navigation__list a:focus-visible {
	color: #fff;
}

/* Die senkrechten Striche zwischen den Einträgen sind live Text im Widget.
   Hier erzeugt sie das CSS, damit die Trenner nicht im Menü gepflegt werden
   müssen und Screenreader sie nicht vorlesen. */
.footer-navigation__list > li + li::before {
	content: "|";
	margin: 0 13px;
	color: var(--footer-link);
	font-size: 12px;
	line-height: 25px;
}

/* --- Unteres, helles Band -------------------------------------------------- */

.site-footer__bottom {
	display: flex;
	align-items: center;
	min-height: 65px;
	background: var(--footer-light);
}

.site-footer__bottom .site-footer__inner {
	width: 100%;
}

.site-footer__copyright {
	margin: 0;
	color: var(--footer-dark);
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

/* --- Nach oben ------------------------------------------------------------- */

.back-to-top {
	position: fixed;
	right: 25px;
	bottom: 65px;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	background: var(--top-button);
	color: #fff;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, background-color 0.15s ease-out;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: var(--top-button-hover);
}

@media only screen and (max-width: 1000px) {

	.site-footer__inner {
		padding: 0 15px;
	}
}
