.rtb-map {
	background: var(--rtb-bg);
	padding: 1rem;
	min-height: 280px;
	height: 100%;
}

.rtb-map__frame {
	width: 100%;
	height: min(520px, 60vh);
	border-radius: var(--rtb-radius);
	background: linear-gradient(160deg, #d9e2ec, #f0f4f8);
	border: 1px solid var(--rtb-border);
	position: relative;
	overflow: hidden;
}

.rtb-map__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.rtb-map__stats {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	background: var(--rtb-white);
	border-radius: 999px;
	padding: 0.45rem 0.9rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--rtb-primary);
	box-shadow: var(--rtb-shadow);
}

.rtb-map__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 1rem;
	color: var(--rtb-muted);
	font-size: 0.95rem;
	text-align: center;
	z-index: 1;
}

@media (max-width: 900px) {
	.rtb-map__frame {
		height: min(320px, 45vh);
	}
}
