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

.adc-mn-cta__card {
	position: relative;
	display: flex;
	align-items: stretch;
	background-color: #1e1e1e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.6rem;
	padding: 4rem;
	min-height: 24rem;
}

/* Glow effect behind image */
.adc-mn-cta__glow {
	position: absolute;
	top: 50%;
	right: 10%;
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	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);
	transform: translateY(-50%);
	z-index: 0;
	pointer-events: none;
}

/* Text content */
.adc-mn-cta__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	min-width: 0;
	max-width: 65%;
}

.adc-mn-cta__button.adc-primary-btn {
	padding: 1.5rem 4rem;
}

.adc-mn-cta__title {
	margin-bottom: 1.6rem;
}

.adc-mn-cta__title p {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
}

.adc-mn-cta__title strong,
.adc-mn-cta__title b {
	color: #CCFF00;
	font-weight: inherit;
}

.adc-mn-cta__description {
	margin-bottom: 2.4rem;
}

.adc-mn-cta__description p {
	margin: 0 0 0.8rem 0;
	font-family: "Inter", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

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

/* Button */
.adc-mn-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 1.2rem 3.2rem;
	background-color: #CCFF00;
	color: #000000;
	font-family: "Inter", sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	border-radius: 3rem;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
}

.adc-mn-cta__button:hover {
	background-color: #b8e600;
	transform: translateY(-1px);
	color: #000000;
	text-decoration: none;
}

/* Person image */
.adc-mn-cta__image {
	position: absolute;
	right: 4rem;
	bottom: 0;
	z-index: 1;
	max-width: 32rem;
	display: flex;
	align-items: flex-end;
}

.adc-mn-cta__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: bottom;
	-webkit-mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
}

.adc-mn-cta__button {
	white-space: normal;
}

/* Tablet Responsive */
@media (max-width: 1023px) {
	.adc-mn-cta__card {
		flex-direction: column;
		padding: 2.4rem;
		min-height: auto;
	}

	.adc-mn-cta__content {
		max-width: 100%;
		text-align: center;
		align-items: center;
	}

	.adc-mn-cta__title p {
		font-size: 2rem;
	}

	.adc-mn-cta__description p {
		font-size: 1.3rem;
	}

	.adc-mn-cta__button {
		align-self: center;
	}

	.adc-mn-cta__glow,
	.adc-mn-cta__image {
		display: none;
	}

}
