/* Base wrapper */
.mtp-32361-wrapper {
	font-family: 'Poppins', sans-serif;
	width: 100%;
	box-sizing: border-box;
	padding: 3rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

/* 1. Intro */
.mtp-32361-intro {
	max-width: 800px;
	margin-bottom: 3rem;
}
.mtp-32361-intro-title {
	font-size: 2rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
	line-height: 1.2;
}
.mtp-32361-intro-text {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

/* 2. Cards Grid */
.mtp-32361-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.mtp-32361-card {
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	border: 1px solid #eaeaea;
	display: flex;
	flex-direction: column;
}

.mtp-32361-card-header {
	padding: 1.5rem;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.mtp-32361-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: #ffffff;
	border: 2px solid rgba(255,255,255,0.2);
}
.mtp-32361-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mtp-32361-partner-name {
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 0.2rem 0;
	color: #ffffff;
}
.mtp-32361-partner-title {
	font-size: 0.85rem;
	font-weight: 400;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mtp-32361-card-body {
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.mtp-32361-badge {
	align-self: flex-start;
	padding: 0.2rem 0.6rem;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	color: #ffffff;
	margin-bottom: 1rem;
}
.mtp-32361-subheading {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.8rem 0;
	line-height: 1.4;
}
.mtp-32361-card-desc {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 1.5rem;
}

.mtp-32361-details-list {
	margin-bottom: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #f0f0f0;
}
.mtp-32361-detail-item {
	font-size: 0.85rem;
	color: #444;
	margin-bottom: 0.6rem;
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}
.mtp-32361-detail-icon {
	color: #284554;
	font-weight: bold;
}

.mtp-32361-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: auto;
}
.mtp-32361-tag {
	font-size: 0.7rem;
	color: #666;
	border: 1px solid #ddd;
	padding: 0.2rem 0.5rem;
	border-radius: 3px;
	background: #fafafa;
}

/* 3. Journey Wrap */
.mtp-32361-journey-wrap {
	border-radius: 8px;
	padding: 2.5rem;
	color: #ffffff;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.mtp-32361-journey-intro {
	max-width: 250px;
}
.mtp-32361-journey-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
	color: #ffffff;
}
.mtp-32361-journey-desc {
	font-size: 0.85rem;
	opacity: 0.8;
	line-height: 1.5;
}

.mtp-32361-journey-steps {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	gap: 1rem;
}

.mtp-32361-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.mtp-32361-step-header {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.mtp-32361-step-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #ffffff;
	border: 2px solid;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}

.mtp-32361-step-titles {
	display: flex;
	flex-direction: column;
}
.mtp-32361-step-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: #ffffff;
}
.mtp-32361-step-person {
	font-size: 0.75rem;
	opacity: 0.7;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mtp-32361-step-desc {
	font-size: 0.8rem;
	line-height: 1.5;
	opacity: 0.85;
}

.mtp-32361-step-connector {
	display: none;
}

/* 4. Footer Note */
.mtp-32361-footer-note {
	background: #f8f9fa;
	border: 1px solid #eaeaea;
	border-radius: 6px;
	padding: 1.5rem;
	text-align: center;
}
.mtp-32361-footer-text {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
	font-style: italic;
}

/* Responsive */
@media (min-width: 1025px) {
	.mtp-32361-journey-wrap {
		flex-direction: row;
		align-items: center;
	}
	.mtp-32361-journey-steps {
		flex: 1;
	}
}

@media (max-width: 1024px) {
	.mtp-32361-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mtp-32361-journey-steps {
		flex-wrap: wrap;
		gap: 1.5rem;
	}
	.mtp-32361-step {
		min-width: 180px;
	}
}

@media (max-width: 768px) {
	.mtp-32361-intro-title {
		font-size: 1.8rem;
	}
	.mtp-32361-cards-grid {
		grid-template-columns: 1fr;
	}
	.mtp-32361-journey-wrap {
		padding: 2rem;
	}
	.mtp-32361-journey-steps {
		flex-direction: column;
	}
	.mtp-32361-step {
		width: 100%;
		border-left: 2px solid rgba(255,255,255,0.2);
		padding-left: 1.5rem;
		margin-left: 16px;
		padding-bottom: 1.5rem;
	}
	.mtp-32361-step:last-child {
		border-left-color: transparent;
		padding-bottom: 0;
	}
	.mtp-32361-step-dot {
		position: absolute;
		left: -33px;
		top: 0;
	}
}