/* ==========================================================================
   Valident Basic — Footer
   ========================================================================== */

.site-footer {
	background-color: #f8f8f8;
	border-top: 1px solid #e5e5e5;
	padding: 40px 0;
	font-size: 0.875rem;
	color: var(--vb-color-body);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Left column — left aligned */
.site-footer__column--left {
	text-align: left;
}

/* Right column — right aligned */
.site-footer__column--right {
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}

/* Widget base styles */
.site-footer .widget {
	margin-bottom: 16px;
}

.site-footer .widget:last-child {
	margin-bottom: 0;
}

.site-footer .widget-title {
	font-family: var(--vb-font-heading);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

/* Powered by Valident widget */
.powered-by-valident {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: flex-end;
}

.powered-by-valident__text {
	font-size: 0.8125rem;
	opacity: 0.7;
	white-space: nowrap;
}

.powered-by-valident svg {
	height: 24px;
	width: auto;
}

/* Responsive
   ========================================================================== */

@media (max-width: 768px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 0 16px;
	}

	.site-footer__column--right {
		text-align: left;
		align-items: flex-start;
	}

	.powered-by-valident {
		justify-content: flex-start;
	}
}
