.irm-container-c6be61e8 {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	padding: 2rem;
	border-radius: 12px;
	width: 100%;
	box-sizing: border-box;
}

.irm-map-col-c6be61e8 {
	flex: 1 1 60%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.irm-map-wrapper-c6be61e8 {
	position: relative;
	width: 100%;
	max-width: 800px;
}

.irm-map-img-c6be61e8 {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.irm-hotspot-c6be61e8 {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	border: 2px solid #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
	z-index: 10;
	padding: 0;
}

.irm-hotspot-c6be61e8:hover {
	transform: translate(-50%, -50%) scale(1.2);
}

.irm-hotspot-c6be61e8.active {
	transform: translate(-50%, -50%) scale(1.3);
}

.irm-hotspot-c6be61e8.active::after {
	content: '';
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	border-radius: 50%;
	border: 2px solid;
	animation: pulse-c6be61e8 1.5s infinite;
}

@keyframes pulse-c6be61e8 {
	0% { transform: scale(1); opacity: 1; }
	100% { transform: scale(2); opacity: 0; }
}

.irm-tooltip-c6be61e8 {
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%);
	background: #000;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s;
	pointer-events: none;
}

.irm-hotspot-c6be61e8:hover .irm-tooltip-c6be61e8 {
	opacity: 1;
	visibility: visible;
}

.irm-panel-col-c6be61e8 {
	flex: 1 1 40%;
	display: flex;
	align-items: center;
}

.irm-panel-c6be61e8 {
	width: 100%;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: opacity 0.4s ease;
}

.irm-panel-content-c6be61e8.fade-out {
	opacity: 0;
}
.irm-panel-content-c6be61e8.fade-in {
	opacity: 1;
	transition: opacity 0.4s ease;
}

.irm-label-c6be61e8 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #6b7280;
	margin-bottom: 0.5rem;
}

.irm-title-c6be61e8 {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.irm-desc-c6be61e8 {
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.irm-stats-c6be61e8 {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.irm-stat-box-c6be61e8 {
	flex: 1;
	background: rgba(0,0,0,0.03);
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
}

.irm-stat-val-c6be61e8 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.irm-stat-label-c6be61e8 {
	font-size: 0.75rem;
	color: #6b7280;
	text-transform: uppercase;
}

.irm-tags-c6be61e8 {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.irm-tag-c6be61e8 {
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	background: rgba(0,0,0,0.06);
	font-weight: 600;
}

.irm-btn-c6be61e8 {
	display: inline-block;
	width: 100%;
	padding: 0.75rem 1.5rem;
	background: #3b82f6;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.irm-btn-c6be61e8:hover {
	background: #2563eb;
}

@media (max-width: 768px) {
	.irm-container-c6be61e8 {
		flex-direction: column;
	}
	
	.irm-stats-c6be61e8 {
		flex-direction: column;
	}
}
