/* =================================== Map ================================ */

.bb-map {
	position: relative;
	height: 380px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--bb-grey-bg);
}

.bb-map__frame {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Click-to-load placeholder — nothing reaches Google until this is pressed. */
.bb-map__load {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 100%;
	padding: 24px;
	text-align: center;
	background:
		repeating-linear-gradient(45deg, rgba(14, 33, 72, .03) 0 12px, transparent 12px 24px),
		var(--bb-grey-bg);
	transition: background-color .25s var(--bb-ease);
}

.bb-map__load:hover {
	background-color: #EAEDF2;
}

.bb-map__pin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--bb-saffron);
	color: #fff;
}

.bb-map__pin .bb-icon {
	width: 22px;
	height: 22px;
}

.bb-map__label {
	color: var(--bb-heading);
	font-size: 15px;
	font-weight: 600;
}

.bb-map__place {
	color: var(--bb-body);
	font-size: 13.5px;
}

.bb-map__dir {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #fff;
	color: var(--bb-navy);
	font-size: 13.5px;
	font-weight: 600;
	box-shadow: var(--bb-shadow);
	transition: background-color .2s var(--bb-ease), color .2s var(--bb-ease);
}

.bb-map__dir .bb-icon {
	width: 15px;
	height: 15px;
	color: var(--bb-saffron);
}

.bb-map__dir:hover {
	background: var(--bb-saffron);
	color: #fff;
}

.bb-map__dir:hover .bb-icon {
	color: #fff;
}

@media (max-width: 767px) {
	.bb-map {
		height: 300px;
	}
}
