/* ─────────────────────────────────────────────────────────────────────────────
   SUVPedia — Site-wide premium footer (sp-trust section)
   Loaded on every page via functions.php.
   ───────────────────────────────────────────────────────────────────────────── */

/* Always hide GP's default widget footer — sp-trust replaces it sitewide */
#footer-widgets,
.footer-widgets,
.site-footer .footer-widgets {
	display: none !important;
}

/* Hide footer-bar nav if it somehow still has items */
.footer-bar .widget_nav_menu,
.footer-bar nav {
	display: none !important;
}

.sp-trust {
	background: linear-gradient(135deg, #090e1a 0%, #111827 100%);
	color: #f3f4f6;
	padding: 4.5rem 0;
	border-top: 4px solid #f08442;
	width: 100%;
}

.sp-trust .grid-container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 2rem;
}

.sp-trust__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 0.9fr;
	gap: 3rem 4rem;
	align-items: start;
}

.sp-trust__col {
	display: flex;
	flex-direction: column;
}

.sp-trust__title {
	font-size: 1.4rem;
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 800;
	text-transform: none;
	line-height: 1.3;
}

.sp-trust__text {
	color: #9ca3af;
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0 0 1.25rem;
}

.sp-trust__contact-email {
	font-size: 0.9rem;
	color: #e5e7eb;
	margin: 0;
}

.sp-trust__contact-email a {
	color: #f08442;
	font-weight: 700;
	text-decoration: none;
}

.sp-trust__contact-email a:hover {
	text-decoration: underline;
}

.sp-trust__heading {
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #f08442;
	margin: 0 0 1.25rem;
}

.sp-trust__cat-list,
.sp-trust__link-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sp-trust__cat-list li,
.sp-trust__link-list li {
	margin: 0 0 0.65rem;
}

.sp-trust__cat-list a,
.sp-trust__link-list a {
	color: #d1d5db;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.2s ease;
	display: inline-block;
}

.sp-trust__cat-list a:hover,
.sp-trust__link-list a:hover {
	color: #f08442;
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
	.sp-trust__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem 3rem;
	}

	.sp-trust__col--about {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.sp-trust {
		padding: 3rem 0;
	}

	.sp-trust__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.sp-trust__col--about {
		grid-column: auto;
	}
}
