/*
 * Vitalink Mesotech Skin — Auto footer styles
 * Colours come from the shared :root variables in brand.css
 * (--vlk-footer-top, --vlk-footer-bottom, etc.).
 */

.vlk-footer {
	font-family: var(--vlk-font);
	line-height: 1.9;
	margin-top: 40px;
}

.vlk-footer-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Upper band */
.vlk-footer-top {
	background-color: var(--vlk-footer-top);
	color: var(--vlk-footer-text);
	padding: 40px 0 32px;
	text-align: center;
}
.vlk-footer-brand {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--vlk-footer-link);
	margin-bottom: 16px;
}
.vlk-footer-contact {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}
.vlk-footer-contact li {
	margin: 4px 0;
	font-size: .98rem;
}
.vlk-footer-contact a {
	color: var(--vlk-footer-link);
	text-decoration: none;
}
.vlk-footer-contact a:hover {
	text-decoration: underline;
}

/* Social icons */
.vlk-footer-socials {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 10px;
}
.vlk-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--vlk-footer-top);
	background: #fff;
	transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.vlk-social:hover {
	transform: translateY(-2px);
	background: var(--vlk-teal);
	color: #fff;
}

/* Lower band */
.vlk-footer-bottom {
	background-color: var(--vlk-footer-bottom);
	color: var(--vlk-footer-text);
	padding: 18px 0;
	text-align: center;
}
.vlk-copyright {
	margin: 0;
	font-size: .9rem;
	opacity: .9;
}

@media (max-width: 600px) {
	.vlk-footer-top { padding: 30px 0 24px; }
	.vlk-footer-brand { font-size: 1.3rem; }
}
