.sr-google-map {
	position: relative;
	isolation: isolate;
	min-height: 420px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-image);
	background:
		linear-gradient(135deg, rgb(234 249 246 / 90%), rgb(255 255 255 / 92%)),
		var(--color-surface);
	box-shadow: var(--shadow-card);
}

.sr-google-map__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(0.92) contrast(0.98);
}

.sr-google-map__overlay {
	position: absolute;
	z-index: 2;
	top: 18px;
	left: 18px;
	pointer-events: none;
}

.sr-google-map__pin,
.sr-google-map__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgb(18 59 63 / 10%);
	border-radius: var(--radius-pill);
	background: rgb(255 255 255 / 94%);
	box-shadow: 0 10px 26px rgb(18 59 63 / 12%);
	color: var(--color-brand-950);
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
	backdrop-filter: blur(10px);
}

.sr-google-map__pin {
	min-height: 42px;
	padding: 0 16px;
}

.sr-google-map__pin svg,
.sr-google-map__pin i {
	width: 18px;
	height: 18px;
	color: var(--color-brand-600);
}

.sr-google-map__link {
	position: absolute;
	z-index: 3;
	right: 18px;
	bottom: 18px;
	min-height: 44px;
	padding: 0 16px;
	text-decoration: none;
	transition:
		color 220ms ease,
		background-color 220ms ease,
		transform 220ms var(--ease-brand);
}

.sr-google-map__link:hover,
.sr-google-map__link:focus-visible {
	color: #fff;
	background: var(--color-brand-600);
	transform: translateY(-1px);
}

.sr-google-map__link svg,
.sr-google-map__link i {
	width: 15px;
	height: 15px;
}

.sr-google-map--hero {
	min-height: 520px;
}

.sr-google-map--visualizer,
.sr-google-map--about {
	min-height: 460px;
}

.sr-google-map--contact {
	min-height: 500px;
}

.sr-google-map--single-service {
	min-height: 360px;
}

@media (max-width: 767px) {
	.sr-google-map {
		min-height: 340px;
		border-radius: 18px;
	}

	.sr-google-map--hero,
	.sr-google-map--visualizer,
	.sr-google-map--about,
	.sr-google-map--contact {
		min-height: 360px;
	}

	.sr-google-map__overlay {
		top: 14px;
		left: 14px;
	}

	.sr-google-map__link {
		right: 14px;
		bottom: 14px;
		max-width: calc(100% - 28px);
	}
}

@media (max-width: 420px) {
	.sr-google-map__link {
		left: 14px;
		justify-content: center;
	}
}
