.twm-wrapper_c573fad3 {
	background-color: #0a0a0a;
	padding: 80px 20px;
	color: #fff;
	font-family: sans-serif;
	width: 100%;
	box-sizing: border-box;
}

.twm-header_c573fad3 {
	text-align: center;
	margin-bottom: 60px;
}

.twm-header_c573fad3 h2 {
	color: #fff;
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 15px;
}

.twm-header_c573fad3 p {
	color: #888;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.twm-row_c573fad3 {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	gap: 40px;
}

.twm-col-left_c573fad3 {
	width: calc(40% - 20px);
	display: flex;
	flex-direction: column;
}

.twm-col-right_c573fad3 {
	width: calc(60% - 20px);
}

.twm-cards-wrapper_c573fad3 {
	position: relative;
	min-height: 280px;
	width: 100%;
}

.twm-card_c573fad3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #141414;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 35px;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	pointer-events: none;
}

.twm-card_c573fad3.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
	pointer-events: auto;
}

.twm-card-top_c573fad3 {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.twm-avatar-wrap_c573fad3 {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	flex-shrink: 0;
}

.twm-avatar_c573fad3 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.twm-meta_c573fad3 {
	display: flex;
	flex-direction: column;
}

.twm-name_c573fad3 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

.twm-role_c573fad3 {
	color: #888;
	font-size: 14px;
}

.twm-quote_c573fad3 {
	color: #bbb;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 25px;
	font-style: italic;
}

.twm-company_c573fad3 {
	color: #fff;
	font-weight: 700;
	font-size: 16px;
}

.twm-nav_c573fad3 {
	display: flex;
	gap: 12px;
	margin-top: 25px;
}

.twm-nav_c573fad3 button {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.twm-nav_c573fad3 button:hover {
	border-color: #1ec8c8;
	color: #1ec8c8;
}

.twm-map-wrapper_c573fad3 {
	position: relative;
	width: 100%;
}

.twm-map-img_c573fad3 {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.6;
}

.twm-label-container_c573fad3 {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.4s ease, top 0.4s ease, left 0.4s ease;
	pointer-events: none;
	z-index: 10;
}

.twm-label-container_c573fad3.is-visible {
	opacity: 1;
}

.twm-dot_c573fad3 {
	width: 12px;
	height: 12px;
	background-color: #1ec8c8;
	border-radius: 50%;
	position: relative;
}

.twm-dot_c573fad3::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #1ec8c8;
	border-radius: 50%;
	animation: twm-pulse_c573fad3 2s infinite;
}

@keyframes twm-pulse_c573fad3 {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(3.5);
		opacity: 0;
	}
}

.twm-label-text_c573fad3 {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-shadow: 0 2px 6px rgba(0,0,0,0.8);
	white-space: nowrap;
}

@media (max-width: 860px) {
	.twm-row_c573fad3 {
		flex-direction: column-reverse;
	}
	.twm-col-left_c573fad3, .twm-col-right_c573fad3 {
		width: 100%;
	}
	.twm-col-right_c573fad3 {
		margin-bottom: 20px;
	}
}