/* ================================================================
   BR — Basement (Footer)
   ================================================================ */

.br-basement {
	background-color: var(--br-night);
	color: rgba(255, 255, 255, .7);
	padding: 55px 0 24px;
}

.br-basement__grid {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 2fr;
	gap: 32px;
}

.br-basement h3 {
	color: #fff;
	font-size: 17px;
	margin-bottom: 16px;
	font-weight: 600;
}

.br-basement a {
	color: rgba(255, 255, 255, .62);
	display: block;
	margin-bottom: 9px;
	font-size: var(--br-text-sm);
	transition: color var(--br-ease);
}

.br-basement a:hover {
	color: #fff;
}

.br-basement__phone {
	font-size: 18px !important;
	font-weight: 700;
	color: #fff !important;
	margin-bottom: 2px !important;
}

.br-basement__phone-label {
	font-size: var(--br-text-xs);
	color: rgba(255, 255, 255, .42);
	display: block;
	margin-bottom: 10px;
}

.br-basement__callback {
	color: var(--br-berry) !important;
	font-weight: 600;
	margin-top: 4px !important;
}

.br-basement__addr {
	font-size: 13px;
	color: rgba(255, 255, 255, .42);
	line-height: 1.6;
	margin-top: 12px;
}

.br-basement__addr-all {
	color: var(--br-pine) !important;
}

.br-basement__social {
	display: flex;
	gap: 8px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.br-basement__social-link {
	width: 38px;
	height: 38px;
	border-radius: var(--br-r-circle);
	background: rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	font-size: 0;
	transition: background var(--br-ease);
}

.br-basement__social-link:hover {
	background: var(--br-pine);
}

.br-basement__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 24px;
	margin-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	font-size: 13px;
}

.br-basement__bottom a {
	margin: 0;
	display: inline;
	font-size: 13px;
}

.br-basement__sep {
	margin-inline: 6px;
	opacity: .4;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.br-basement__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.br-basement__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.br-basement__grid {
		grid-template-columns: 1fr;
	}
}