/* ============================================================
 * Mtech — custom 4-column footer (NAP / Categories / Resources / Social)
 * Reuses theme .site-footer dark chrome (#111), adds grid + NAP + social.
 * ============================================================ */

.mtech-footer.site-footer {
	padding: 3.5rem 0 2.75rem;
}

.mtech-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
}

@media (max-width: 992px) {
	.mtech-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
	.mtech-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.mtech-foot-title {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px;
	letter-spacing: .01em;
}

.mtech-footer .mtech-foot-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mtech-footer .mtech-foot-col li {
	margin-bottom: 9px;
}

.mtech-footer a {
	color: #c9ced6;
	text-decoration: none;
	transition: color .15s ease;
}

.mtech-footer a:hover {
	color: #fff;
}

/* NAP block */
.mtech-footer address {
	font-style: normal;
}

.mtech-foot-nap-row {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	margin-bottom: 13px;
	color: #c9ced6;
	line-height: 1.45;
	font-size: 14.5px;
}

.mtech-foot-nap-row svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin-top: 2px;
	color: #4aa3e0;
}

/* Social icons */
.mtech-foot-social {
	display: flex;
	gap: 12px;
}

.mtech-foot-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	transition: background .15s ease, transform .15s ease;
}

.mtech-foot-social a:hover {
	background: #135289;
	color: #fff;
}

.mtech-foot-social svg {
	width: 20px;
	height: 20px;
}
