.site-footer {
	padding-top: var(--wp--preset--spacing--40);
	padding-bottom: var(--wp--preset--spacing--40);
}

.site-footer a {
	color: #ffffff;
}

.site-footer .wp-block-columns {
	gap: var(--wp--preset--spacing--50);
}

.site-footer h4 {
	margin-bottom: var(--wp--preset--spacing--20);
}

.site-footer h4 a {
	text-decoration: none;
}

.site-footer h4 a:hover {
	text-decoration: underline;
}

/* Logo: soft white radiating glow + thin ring, sits on the dark green background. */
.site-footer__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 116px;
	height: 116px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 55%, rgba(255, 255, 255, 0) 75%);
	border: 1px solid rgba(255, 255, 255, 0.35);
	margin-bottom: var(--wp--preset--spacing--30);
	transition: border-color 0.3s ease, background 0.3s ease;
}

.site-footer__logo:hover {
	border-color: rgba(255, 255, 255, 0.6);
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.08) 55%, rgba(255, 255, 255, 0) 75%);
}

.site-footer__logo img {
	width: 84px;
	height: 84px;
	display: block;
}

.site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__links a {
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.site-footer__links a:hover {
	opacity: 1;
	text-decoration: underline;
}

.site-footer__social {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: var(--wp--preset--spacing--20);
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.site-footer__social:hover {
	opacity: 1;
	text-decoration: underline;
}

.site-footer__social svg {
	flex-shrink: 0;
}

.site-footer__contacts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer__contacts li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.site-footer__contact-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__contact-role {
	font-weight: 700;
	font-size: 0.85rem;
	opacity: 0.95;
}

.site-footer__contact-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.site-footer__contact-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: #ffffff;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

.site-footer__contact-link svg {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
}

.site-footer__contact-link:hover {
	opacity: 1;
	text-decoration: underline;
}

.site-footer__bottom {
	margin-top: var(--wp--preset--spacing--60) !important;
	padding-top: var(--wp--preset--spacing--30);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	align-items: center;
	gap: var(--wp--preset--spacing--20);
}

.site-footer__bottom p {
	margin: 0;
	opacity: 0.85;
}

.site-footer__bottom p a {
	text-decoration: underline;
}

.site-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: #ffffff;
	text-decoration: none;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.site-footer__credit svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.site-footer__credit:hover {
	opacity: 1;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.site-footer__logo {
		width: 96px;
		height: 96px;
	}

	.site-footer__logo img {
		width: 68px;
		height: 68px;
	}

	.site-footer__contact-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}
