/* Org POI popup card — Issue #229 */
.pc-org-popup {
	position: relative;
	width: 280px;
	max-width: 90vw;
	background: #ffffff;
	border-radius: 12px;
	padding: 14px 16px 12px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
	font-family: inherit;
	color: #0f172a;
	font-size: 0.9rem;
	z-index: 100;
}
.pc-org-popup::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 14px;
	height: 14px;
	background: #ffffff;
	box-shadow: 4px 4px 8px -2px rgba(15, 23, 42, 0.18);
}
.pc-org-popup__close {
	position: absolute;
	top: 4px;
	right: 6px;
	width: 24px;
	height: 24px;
	border: 0;
	background: transparent;
	color: #64748b;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	border-radius: 50%;
}
.pc-org-popup__close:hover { background: #f1f5f9; color: #0f172a; }
.pc-org-popup__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
	padding-right: 22px;
}
.pc-org-popup__thumb {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
	flex: 0 0 auto;
	background: #e2e8f0;
}
.pc-org-popup__head-text { flex: 1; min-width: 0; }
.pc-org-popup__name {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	color: #0f172a;
	word-break: break-word;
}
.pc-org-popup__chips { margin-top: 3px; }
.pc-org-popup__type {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	color: #1d4ed8;
	background: #dbeafe;
	padding: 2px 8px;
	border-radius: 999px;
	text-transform: capitalize;
}
.pc-org-popup__addr {
	font-size: 0.82rem;
	color: #475569;
	line-height: 1.35;
	margin: 4px 0 6px;
}
.pc-org-popup__contact { margin: 4px 0 8px; }
.pc-org-popup__phone {
	font-size: 0.82rem;
	color: #1d4ed8;
	text-decoration: none;
}
.pc-org-popup__phone:hover { text-decoration: underline; }
.pc-org-popup__cta {
	display: block;
	margin-top: 8px;
	padding: 9px 14px;
	background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
	color: #ffffff !important;
	border-radius: 8px;
	text-align: center;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	transition: transform 0.1s, box-shadow 0.15s;
}
.pc-org-popup__cta:hover {
	box-shadow: 0 6px 14px rgba(37, 99, 235, 0.32);
	transform: translateY(-1px);
	text-decoration: none;
	color: #ffffff !important;
}
