.benchmark-ct-map {
	padding: 48px 20px 0;
	position: relative;
}

.benchmark-ct-map__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.benchmark-ct-map__title {
	margin: 0 0 32px;
	text-align: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.1;
	font-weight: 400;
	color: #2f3133;
}

.benchmark-ct-map__stage {
	position: relative;
	max-width: 1050px;
	margin: 0 auto;
	min-height: 650px;
}

.benchmark-ct-map__map-wrap {
	position: relative;
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
}

.benchmark-ct-map__map-image {
	display: block;
	width: 100%;
	height: auto;
}

.benchmark-ct-map__markers {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.benchmark-ct-map__marker {
	position: absolute;
	width: 36px;
	height: 48px;
	transform: translate(-50%, -100%);
	border: 0;
	padding: 0;
	background: transparent url("marker-dark-blue.png") center center / contain no-repeat;
	cursor: pointer;
	pointer-events: auto;
	z-index: 2;
	transition: transform 0.2s ease;
}

.benchmark-ct-map__marker:hover,
.benchmark-ct-map__marker:focus {
	transform: translate(-50%, -100%) scale(1.06);
	outline: none;
}

.benchmark-ct-map__marker.is-active {
	background-image: url("./marker-light-blue.png");
	z-index: 3;
}

.benchmark-ct-map__marker:hover {
	background-image: url("./marker-light-blue.png");
}

.benchmark-ct-map__card {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 560px;
	background: #ffffff;
	border-radius: 20px;
	padding: 18px 18px 16px;
	z-index: 4;
	border: 1px solid #CECECE;
	box-shadow: 0px 0px 150px 0px #00000040;
}

.benchmark-ct-map__card-top {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 18px;
	align-items: start;
}

.benchmark-ct-map__card-image-wrap {
	width: 100%;
	aspect-ratio: 1/1;
}

.benchmark-ct-map__card-image {
	display: block;
	width: auto;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
	background: #d9d9d9;
}

.benchmark-ct-map__card-image--placeholder {
	background: #d9d9d9;
}

.benchmark-ct-map__card-meta {
	min-width: 0;
}

.benchmark-ct-map__card-title {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 38px;
	font-weight: bold;
	color: #343A40;
}

.benchmark-ct-map__card-address {
	margin: 0;
	font-size: 18px;
	line-height: 27px;
	color: #292929;
}

.benchmark-ct-map__card-phone {
	display: inline-block;
	margin: 0 0 12px;
	font-size: 1rem;
	line-height: 1.2;
	color: #2a86c1;
	text-decoration: none;
}

.benchmark-ct-map__card-phone:hover,
.benchmark-ct-map__card-phone:focus {
	text-decoration: underline;
}

.benchmark-ct-map__card-button {
	display: block;
	margin-right: 30px;
	font-weight: normal;
}

.benchmark-ct-map__card-bullets {
	margin: 30px 12px 12px;
	padding-left: 20px;
	color: #292929;
	font-size: 18px;
	line-height: 28px;
}

.benchmark-ct-map__card-bullets li + li {
	margin-top: 8px;
}

.benchmark-ct-map .is-hidden {
	display: none !important;
}

@media (max-width: 1024px) {
	.benchmark-ct-map__stage {
		min-height: 0;
	}

	.benchmark-ct-map__card {
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
		width: 100%;
		max-width: 720px;
		margin: 24px auto 0;
	}
}

@media (max-width: 767px) {
	.benchmark-ct-map {
		padding: 36px 16px 48px;
	}

	.benchmark-ct-map__title {
		margin-bottom: 24px;
	}

	.benchmark-ct-map__marker {
		width: 28px;
		height: 38px;
	}

	.benchmark-ct-map__card {
		padding: 16px;
		border-radius: 14px;
	}

	.benchmark-ct-map__card-top {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.benchmark-ct-map__card-image-wrap,
	.benchmark-ct-map__card-image {
		width: 100%;
		height: auto;
		max-width: 100%;
		aspect-ratio: 1 / 1;
	}

	.benchmark-ct-map__card-title {
		font-size: 2rem;
	}

	.benchmark-ct-map__card-bullets {
		font-size: 0.92rem;
	}
}