/**
 * Marketing-Footer – Bottom-Bar mit Impressum zentriert.
 *
 * @package Vereinssuite
 */

.yop-vs-site-footer__bottom-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
}

.yop-vs-site-footer__bottom-copy {
	justify-self: start;
}

.yop-vs-site-footer__bottom-impressum {
	justify-self: center;
	color: rgba(255, 255, 255, 0.50);
	text-decoration: none;
	transition: color 180ms ease;
}

.yop-vs-site-footer__bottom-impressum:hover,
.yop-vs-site-footer__bottom-impressum:focus-visible {
	color: #ffffff;
	text-decoration: none;
}

.yop-vs-site-footer__bottom-tagline {
	justify-self: end;
	text-align: right;
}

@media (max-width: 767px) {
	.yop-vs-site-footer__bottom-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		text-align: center;
	}

	.yop-vs-site-footer__bottom-copy,
	.yop-vs-site-footer__bottom-tagline {
		text-align: center;
	}
}
