/* Mentoring About Widget Styles */
.adc-mn-about {
	position: relative;
	width: 100%;
}

.adc-mn-about__wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 9.8rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

strong {
	font-weight: inherit;
}

/* Left Content */
.adc-mn-about__left {
	z-index: 1;
}

.adc-mn-about__video-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 450 / 575;
	border-radius: 1.2rem;
	margin: 1px;
}

.adc-mn-about__video-wrapper::after {
	position: absolute;
	top: 10%;
	left: 20%;
	content: "";
	border-radius: 50%;
	z-index: -1;
	width: 15%;
	height: 25%;
	background: #CCFF00;
	box-shadow: 
		0px 0px 12px rgba(204, 255, 0, 0.9),
		0px 0px 40px rgba(204, 255, 0, 0.6),
		0px 0px 100px rgba(204, 255, 0, 0.3),
		0px 0px 260px rgba(204, 255, 0, 1);
}

.adc-mn-about__video-container {
	width: 100%;
	height: 100%;
	background: #000;
	position: relative;
	border-radius: 22px;
	overflow: hidden;
}

.adc-mn-about__video-container wistia-player,
.adc-mn-about__video-container iframe,
.adc-mn-about__video-container video {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

/* Badges */
.adc-mn-about__badges {
	display: flex;
	gap: 1.5rem;
	margin-top: 4rem;
	align-items: center;
	flex-wrap: wrap;
}

.adc-mn-about__badges img {
	width: auto;
	height: auto;
	display: block;
}

/* Right Content */
.adc-mn-about__right {
	flex: 1.2;
	min-width: 30rem;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.adc-mn-about__logo {
	margin-bottom: 2rem;
}

.adc-mn-about__logo img {
	max-width: 18rem;
	height: auto;
	display: block;
}

.adc-mn-about__title {
	margin-bottom: 2rem;
}

.adc-mn-about__title p {
	margin: 0;
}

.adc-mn-about__content {
	margin-bottom: 2.5rem;
}

.adc-mn-about__content p {
	margin: 0 0 1.2rem 0;
	line-height: 1.5;
}

.adc-mn-about__content p:last-child {
	margin-bottom: 0;
}

/* Milestones */
.adc-mn-about__milestones {
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.adc-mn-about__milestone {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

.adc-mn-about__milestone strong {
	font-weight: 800;
}

.adc-mn-about__milestone-title {
	font-family: "Inter", sans-serif;
	font-size: 4.8rem;
	line-height: 1;
}

.adc-mn-about__milestone-title p {
	margin-bottom: 0;
}

.adc-mn-about__milestone-subtitle {
	font-family: "Inter", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.3;
}

.adc-mn-about__separator {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: auto;
	height: 100%;
}

.adc-mn-about__separator img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
	.adc-mn-about__wrapper {
		gap: 3rem;
	}

	.adc-mn-about__left {
		max-width: 45%;
	}

	.adc-mn-about__badges {
		margin-top: 2.5rem;
	}

	.adc-mn-about__badges img {
		max-height: 40px !important;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.adc-mn-about {
		padding: 3.2rem 0;
	}

	.adc-mn-about__wrapper {
		flex-direction: column;
		align-items: center;
		gap: 4.8rem;
	}

	.adc-mn-about__left {
		max-width: 40rem;
		width: 100%;
		order: -1;
	}

	.adc-mn-about__video-wrapper {
		max-width: 100%;
	}

	.adc-mn-about__right {
		min-width: auto;
		width: 100%;
		text-align: center;
	}

	.adc-mn-about__logo {
		display: flex;
		justify-content: center;
	}

	.adc-mn-about__milestones {
		justify-content: center;
	}

	.adc-mn-about__milestone {
		text-align: center;
	}

	.adc-mn-about__badges {
		justify-content: center;
	}
}
