.bn-site-footer {
	padding: 0;
	background: var(--bn-footer-bg, #1a1a2e);
	color: var(--bn-footer-text, #ccc);
	text-align: left;
}

.bn-footer-top {
	padding: 54px 0 38px;
}

.bn-footer-grid {
	display: grid;
	grid-template-columns: repeat(var(--bn-footer-columns, 3), minmax(0, 1fr));
	gap: 30px;
}

.bn-footer-column {
	min-width: 0;
}

.bn-footer-brand {
	margin: 0 0 14px;
	color: var(--bn-footer-title, #fff);
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
}

.bn-footer-logo {
	margin-bottom: 14px;
}

.bn-footer-logo img {
	display: block;
	width: auto;
	max-width: 220px;
	max-height: 72px;
	object-fit: contain;
}

.bn-footer-column p {
	margin: 0 0 16px;
	color: var(--bn-footer-text, #ccc);
	font-size: 15px;
	line-height: 1.7;
}

.bn-footer-title {
	margin: 0 0 16px;
	color: var(--bn-footer-title, #fff);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
}

.bn-footer-social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.bn-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.1);
	color: var(--bn-footer-title, #fff);
	font-weight: 700;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bn-footer-social svg {
	display: block;
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.bn-footer-social a:hover {
	background: #e8192c;
	transform: translateY(-2px);
}

.bn-footer-menu {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bn-footer-menu li {
	margin-bottom: 10px;
}

.bn-footer-menu a {
	color: var(--bn-footer-link, #ccc);
	font-size: 15px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.bn-footer-menu a:hover {
	color: var(--bn-footer-link-hover, #fff);
}

.bn-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--bn-footer-bottom-bg, #1a1a2e);
	padding: 16px 0;
}

.bn-footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.bn-footer-bottom p {
	margin: 0;
	color: var(--bn-footer-text, #ccc);
	font-size: 14px;
}

@media (max-width: 900px) {
	.bn-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.bn-footer-top {
		padding: 34px 0 28px;
	}

	.bn-footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		text-align: center;
	}

	.bn-footer-column {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.bn-footer-brand {
		font-size: 24px;
		text-align: center;
	}

	.bn-footer-logo {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.bn-footer-logo img {
		margin: 0 auto;
		max-width: 190px;
	}

	.bn-footer-column p {
		max-width: 32rem;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.bn-footer-title {
		margin-bottom: 12px;
		text-align: center;
	}

	.bn-footer-social {
		justify-content: center;
	}

	.bn-footer-menu {
		width: 100%;
		text-align: center;
	}

	.bn-footer-menu li {
		margin-bottom: 8px;
	}

	.bn-footer-menu a {
		display: inline-flex;
		justify-content: center;
		padding: 4px 0;
	}

	.bn-footer-bottom__inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		text-align: center;
	}

	.bn-footer-bottom p {
		line-height: 1.6;
	}
}
