/* Digital Hub — footer, structure/classes copied from plati.market's real
   <footer> (4px blue bottom border confirmed in their CSS: border-bottom:4px
   solid var(--border-brand)). */

.dh-footer {
	background-color: var(--color-bg);
	border-top: 1px solid #e2e4e8;
	border-bottom: 4px solid var(--color-brand);
	font-family: var(--font-family);
}

.dh-footer-inner {
	max-width: var(--content-max-width);
	margin: 0 auto;
	padding: 2.5rem 20px 2rem;
}

.dh-footer-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e2e4e8;
	margin-bottom: 1.25rem;
}

.dh-footer-column {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	min-width: 140px;
}

.dh-footer-column-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.2rem;
}

.dh-footer-column a {
	font-size: 14px;
	color: var(--color-text-secondary);
}

.dh-footer-column a:hover {
	color: var(--color-brand);
}

.dh-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.dh-footer-logo {
	font-weight: 700;
	color: var(--color-text);
}

.dh-footer-copyright {
	font-size: 13px;
	color: var(--color-text-secondary);
}

@media (max-width: 709px) {
	.dh-footer-columns {
		gap: 1.5rem;
	}

	.dh-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
