/* City field intelligence refinements. */
.aps-section-local-insight {
	padding-top: clamp(22px, 3vw, 42px) !important;
}

.city-insight-lead {
	position: relative;
}

.city-insight-map {
	position: absolute;
	inset: 0 0 0 42%;
	overflow: hidden;
	opacity: .42;
	pointer-events: none;
	background:
		linear-gradient(125deg, transparent 0 18%, rgba(225, 20, 35, .1) 18.2% 18.5%, transparent 18.7% 39%, rgba(225, 20, 35, .08) 39.2% 39.5%, transparent 39.7% 63%, rgba(225, 20, 35, .1) 63.2% 63.5%, transparent 63.7%),
		repeating-linear-gradient(12deg, transparent 0 34px, rgba(247, 241, 238, .055) 35px, transparent 36px),
		repeating-linear-gradient(102deg, transparent 0 48px, rgba(225, 20, 35, .07) 49px, transparent 50px);
	mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 100%);
}

.city-insight-map::before,
.city-insight-map::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(225, 20, 35, .2);
	border-radius: 48% 52% 42% 58%;
	transform: rotate(-18deg);
}

.city-insight-map::before {
	inset: 12% 8% 18% 18%;
	box-shadow: 22px -14px 0 -1px rgba(225, 20, 35, .1), -18px 22px 0 -1px rgba(247, 241, 238, .06);
}

.city-insight-map::after {
	inset: 28% 24% 8% 2%;
	transform: rotate(22deg);
}

.city-insight-map-label {
	position: absolute;
	top: 18px;
	right: 22px;
	color: rgba(247, 241, 238, .28);
	font-family: var(--aps-mono);
	font-size: 9px;
	letter-spacing: .2em;
}

.city-insight-map-pin {
	position: absolute;
	top: 47%;
	right: 32%;
	width: 10px;
	height: 10px;
	border: 2px solid var(--aps-red);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	background: #150a0c;
	box-shadow: 0 0 0 6px rgba(225, 20, 35, .1), 0 0 24px rgba(225, 20, 35, .65);
}

.city-insight-map-ring {
	position: absolute;
	top: calc(47% - 26px);
	right: calc(32% - 26px);
	width: 56px;
	height: 56px;
	border: 1px solid rgba(225, 20, 35, .35);
	border-radius: 50%;
}

.city-insight-brief {
	position: relative;
	padding: 22px 24px 20px;
	border-left: 2px solid var(--aps-red);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.34), rgba(72, 12, 20, 0.18));
	box-shadow: inset 0 0 0 1px rgba(247, 241, 238, 0.05);
}

.city-insight-brief::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(225, 20, 35, 0.13), transparent 18%);
}

.city-insight-brief-label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--aps-red-soft);
	font-family: var(--aps-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.city-insight-brief-label svg {
	flex-shrink: 0;
}

.city-insight-signals {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
}

.city-insight-signals li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 9px;
	border: 1px solid rgba(247, 241, 238, 0.14);
	background: rgba(0, 0, 0, 0.15);
	color: #d8cbca;
	font-family: var(--aps-mono);
	font-size: 9px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.city-insight-signals li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--aps-red);
	box-shadow: 0 0 8px rgba(225, 20, 35, 0.75);
}

.city-insight-point {
	align-items: center;
	background: linear-gradient(135deg, rgba(247, 241, 238, 0.055), rgba(225, 20, 35, 0.04));
}

.city-insight-point h3 {
	margin: 0 0 5px;
	color: #f7f1ee;
	font-family: var(--aps-display);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: .035em;
	line-height: 1;
	text-transform: uppercase;
}

.city-insight-point p {
	margin: 0;
}

@media (max-width: 900px) {
	.city-insight-map {
		inset: 0;
		opacity: .2;
	}

	.city-insight-brief {
		padding: 18px 18px 16px;
	}

	.city-insight-signals {
		margin-top: 18px;
	}
}