.article_reader_map {
	box-sizing: border-box;
	clear: both;
	width: 100%;
	margin: 2.75rem 0 0;
	padding: clamp(1.15rem, 2.5vw, 2rem);
	border: 1px solid rgba(3, 102, 88, .15);
	border-top: 4px solid #22e5ca;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(0, 45, 38, .08);
	color: #212121;
}

.article_reader_map,
.article_reader_map * {
	box-sizing: border-box;
}

.article_reader_map_header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	margin-bottom: 1.15rem;
}

.article_reader_map_heading {
	flex: 1 1 500px;
	min-width: 0;
}

.article_reader_map_eyebrow {
	margin: 0 0 .2rem !important;
	color: #08796a !important;
	font-size: .74rem !important;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.article_reader_map_heading h2 {
	margin: 0;
	color: #036658;
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	line-height: 1.25;
}

.article_reader_map_heading > p:last-child {
	max-width: 720px;
	margin: .45rem 0 0;
	color: #64706e;
	font-size: .9rem;
}

.article_reader_map_stats {
	display: flex;
	flex: 0 0 auto;
	gap: .7rem;
}

.article_reader_map_stats > div {
	min-width: 92px;
	padding: .72rem .9rem;
	border: 1px solid rgba(3, 102, 88, .14);
	border-radius: 6px;
	background: #f5f7f6;
	text-align: center;
}

.article_reader_map_stats strong,
.article_reader_map_stats span {
	display: block;
}

.article_reader_map_stats strong {
	color: #036658;
	font-size: 1.35rem;
	line-height: 1;
}

.article_reader_map_stats span {
	margin-top: .3rem;
	color: #65716f;
	font-size: .72rem;
}

.article_reader_map_panel {
	position: relative;
	width: 100%;
	height: min(52vw, var(--reader-map-height, 380px));
	min-height: min(300px, var(--reader-map-height, 380px));
	overflow: hidden;
	border-radius: 6px;
	background: #f8faf9;
}

.article_reader_map_svg {
	display: block;
	width: 100%;
	height: 100%;
}

.article_reader_map_ocean {
	fill: #f8faf9;
}

.article_reader_map_country {
	fill: #edf2f1;
	stroke: #cbd8d5;
	stroke-width: .65;
	vector-effect: non-scaling-stroke;
	transition: fill .16s ease, stroke .16s ease, opacity .16s ease;
}

.article_reader_map_country.has_data {
	cursor: help;
}

.article_reader_map_country:hover,
.article_reader_map_country:focus {
	stroke: #034d43;
	stroke-width: 1.5;
	outline: none;
}

.article_reader_map_status {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: rgba(248, 250, 249, .9);
	color: #65716f;
	font-size: .9rem;
	text-align: center;
}

.article_reader_map.is_ready .article_reader_map_status {
	display: none;
}

.article_reader_map_legend {
	position: absolute;
	left: 18px;
	bottom: 15px;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 6px 8px;
	border-radius: 5px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 2px 10px rgba(0, 45, 38, .12);
	color: #53615f;
	font-size: .7rem;
}

.article_reader_map_legend i {
	display: block;
	width: 120px;
	height: 9px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--reader-map-light, #d5efea), var(--reader-map-dark, #036658));
}

.article_reader_map_empty,
.article_reader_map_note {
	margin: .75rem 0 0;
	color: #64706e;
	font-size: .8rem;
}

.article_reader_map_empty {
	padding: .65rem .8rem;
	border-left: 3px solid #22e5ca;
	background: #f5f7f6;
}

.article_reader_map_note {
	font-style: italic;
}

.article_reader_map_visually_hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 680px) {
	.article_reader_map {
		margin-top: 1.75rem;
		padding: 1rem;
	}

	.article_reader_map_header {
		display: block;
	}

	.article_reader_map_stats {
		margin-top: .85rem;
	}

	.article_reader_map_stats > div {
		flex: 1 1 0;
	}

	.article_reader_map_panel {
		height: 285px;
		min-height: 285px;
	}

	.article_reader_map_legend i {
		width: 82px;
	}
}
