/* ProClinic — footer. Loaded on every page. */


.pc-footer {
	padding: 90px 0 40px;
	background: var(--pc-bg);
	color: var(--pc-ink);
}

.pc-footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-bottom: 30px;
}

.pc-footer__menu {
	display: flex;
	gap: 40px;
}

.pc-footer__menu a {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pc-ink);
	transition: color 0.2s ease;
}

.pc-footer__menu a:hover {
	color: var(--pc-accent);
}

.pc-footer__menu .sub-menu {
	display: none;
}

.pc-footer__mid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 30px 0;
	border-top: 1px solid var(--pc-line);
	border-bottom: 1px solid var(--pc-line);
}

.pc-contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 22px 64px;
}

.pc-contact {
	display: flex;
	align-items: center;
	gap: 14px;
}

.pc-contact__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 50%;
	background: var(--pc-ink);
	color: #fff;
}

.pc-contact__body {
	display: grid;
	gap: 2px;
}

.pc-contact__label {
	font-size: 13px;
	font-weight: 700;
	color: var(--pc-ink);
}

.pc-contact__value {
	font-size: 14px;
	color: var(--pc-body);
}

.pc-socials {
	display: flex;
	gap: 12px;
	flex: none;
}

.pc-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--pc-ink);
	color: #fff;
	transition: background-color 0.2s ease;
}

.pc-socials a:hover {
	background: var(--pc-accent);
}

.pc-footer__bot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 28px;
	font-size: 13px;
	color: var(--pc-muted);
}

.pc-footer__privacy {
	color: var(--pc-body);
	text-decoration: underline;
}


/* ------------------------------ Responsive ------------------------------ */

@media (max-width: 1024px) {
	/* Dark, full width, no rounded corners. */
	.pc-footer {
		padding: 32px 0 22px;
		background: var(--pc-footer-dark);
		color: #fff;
		border-radius: 0;
	}

	.pc-footer__top {
		padding-bottom: 26px;
	}

	.pc-footer__nav {
		display: none;
	}

	.pc-logo--footer .pc-logo__mark {
		color: #fff;
	}

	.pc-logo--footer .pc-logo__tagline {
		color: rgba(255, 255, 255, 0.6);
	}

	.pc-footer__mid {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
		padding: 0 0 24px;
		border: 0;
	}

	.pc-contacts {
		flex-direction: column;
		gap: 21px;
	}

	.pc-contact__ico,
	.pc-socials a {
		background: #fff;
		color: var(--pc-ink);
	}

	.pc-contact__label {
		color: #fff;
	}

	.pc-contact__value {
		color: rgba(255, 255, 255, 0.75);
	}

	.pc-footer__bot {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding-top: 8px;
		color: rgba(255, 255, 255, 0.55);
	}

	.pc-footer__privacy {
		color: rgba(255, 255, 255, 0.75);
	}
}
