/*
Theme Name: Child Theme
Theme URI: https://technoxprt.com
Description: Child theme of Newspaper. Use this for safe customizations (footer, CSS, template overrides) that survive parent-theme updates.
Author: Techno Xprt
Template: Newspaper
Version: 1.0.0
Text Domain: child-theme
*/

/* ==========================================================================
   Custom footer
   ========================================================================== */
.tx-footer {
	background: linear-gradient(90deg, #0a3d91 0%, #1257c9 100%);
	color: #fff;
	padding: 34px 0;
}
.tx-footer-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.tx-footer-nav .tx-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
}
.tx-footer-nav .tx-footer-menu a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
}
.tx-footer-nav .tx-footer-menu a:hover {
	text-decoration: underline;
}
.tx-footer-brand {
	text-align: right;
}
.tx-footer-logo img {
	max-height: 46px;
	width: auto;
}
.tx-footer-copy {
	margin-top: 8px;
	font-size: 14px;
}

/* Social icons */
.tx-footer-social {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}
.tx-footer-social li {
	margin: 0;
}
.tx-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.tx-footer-social a:hover {
	background: #fff;
	color: #0a3d91;
	transform: translateY(-2px);
}
.tx-footer-social svg {
	width: 17px;
	height: 17px;
	display: block;
}

@media (max-width: 767px) {
	.tx-footer-inner {
		flex-direction: column;
		text-align: center;
	}
	.tx-footer-brand {
		text-align: center;
	}
	.tx-footer-nav .tx-footer-menu {
		justify-content: center;
	}
	.tx-footer-social {
		justify-content: center;
	}
}
