/* Overrides for the updated home coaching block and the coaching page. */
.coaching__box {
	display: block;
	margin-bottom: 65px;
}

.coaching__desc {
	max-width: 890px;
}

.coaching__text {
	line-height: 1.8rem;
	margin-bottom: 40px;
}

.coaching__text span,
.mentor__bio span {
	font-family: "Jura";
	font-weight: 700;
}

.coaching__button {
	max-width: 325px;
	width: 100%;
}

.coaching__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 5px;
}

.coaching__card {
	-webkit-box-flex: initial;
	-ms-flex: initial;
	flex: initial;
	padding: 20px 40px;
}

.coaching-page-hero {
	padding: 90px 0 0;
}

.coaching-page-hero__title {
	margin-bottom: 45px;
}

.coaching-page-hero__text {
	font-size: 1rem;
	line-height: 1.4rem;
	margin-bottom: 70px;
	text-align: justify;
}

.coaching-page-hero__team {
	font-family: "Montserrat";
	font-weight: 700;
	font-size: 2.75rem;
	line-height: 100%;
	margin-bottom: 30px;
}

.mentor {
	--mentor-bg: #fff;
	--mentor-bg-overhang: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 700px;
	overflow: hidden;
	position: relative;
}

.mentor > .container {
	position: relative;
	z-index: 1;
}

.mentor--blue {
	--mentor-bg: #464df6;
	background: #fff;
}

.mentor--purple {
	--mentor-bg: #5512c4;
	background: #fff;
}

.mentor--blue::before,
.mentor--purple::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: none;
	width: 0;
}

.mentor--yellow {
	--mentor-bg: #ffd40c;
	background: #ffd40c;
}

.mentor--green {
	--mentor-bg: #35d995;
	background: #35d995;
}

.mentor__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 120px;
}

.mentor__profile {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 760px;
	flex: 0 0 760px;
	position: relative;
	z-index: 1;
}

.mentor--dark .mentor__profile::before {
	content: "";
	position: absolute;
	top: -220px;
	right: calc(-1 * var(--mentor-bg-overhang));
	bottom: -220px;
	left: -100vw;
	z-index: -1;
	background: #464df6;
}

.mentor--purple.mentor--dark .mentor__profile::before {
	background: #5512c4;
}

.mentor__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	margin-bottom: 40px;
}

.mentor__photo {
	display: block;
	width: 280px;
	height: 375px;
	object-fit: cover;
}

.mentor__title h2 {
	font-family: "Montserrat";
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 3.5rem;
	margin-bottom: 10px;
}

.mentor__title {
	min-width: 0;
}

.mentor__title p {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 100%;
}

.mentor--dark .mentor__title {
	color: #fff;
}

.mentor__facts {
	display: grid;
	grid-template-columns: repeat(2, 370px);
	gap: 10px;
}

.mentor__fact.suitp-card {
	display: block;
	min-height: 120px;
	padding: 24px 40px;
}

.mentor__fact h3 {
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.3rem;
	margin-bottom: 5px;
}

.mentor__fact p {
	color: #8e8e8e;
	font-size: .9rem;
	line-height: 1rem;
}

.mentor__bio {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 520px;
	flex: 0 0 520px;
	font-size: 1rem;
	line-height: 1.4rem;
	text-align: left;
}

@media(max-width: 1480px) {
	.mentor {
		--mentor-bg-overhang: 30px;
	}

	.mentor__inner {
		gap: 70px;
	}

	.mentor__profile {
		-ms-flex-preferred-size: 650px;
		flex-basis: 650px;
	}

	.mentor__facts {
		grid-template-columns: repeat(2, 320px);
	}

	.mentor__fact.suitp-card {
		padding: 20px 28px;
	}

	.mentor__bio {
		-ms-flex-preferred-size: 460px;
		flex-basis: 460px;
	}
}

@media(max-width: 1200px) {
	.mentor {
		--mentor-bg-overhang: 10px;
	}

	.mentor__inner {
		gap: 40px;
	}

	.mentor__profile {
		-ms-flex-preferred-size: 570px;
		flex-basis: 570px;
	}

	.mentor__head {
		gap: 30px;
	}

	.mentor__title h2 {
		font-size: 2.6rem;
		line-height: 2.6rem;
	}

	.mentor__title p {
		font-size: 1.3rem;
	}

	.mentor__facts {
		grid-template-columns: repeat(2, 280px);
	}

	.mentor__bio {
		-ms-flex-preferred-size: 400px;
		flex-basis: 400px;
		font-size: .9rem;
		line-height: 1.25rem;
	}
}

@media(max-width: 1080px) {
	.coaching__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mentor {
		background: #fff;
		min-height: auto;
		padding: 60px 0;
	}

	.mentor--blue {
		background: #464df6;
	}

	.mentor--purple {
		background: #5512c4;
	}

	.mentor--yellow {
		background: #ffd40c;
	}

	.mentor--green {
		background: #35d995;
	}

	.mentor__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 30px;
	}

	.mentor__profile,
	.mentor__bio {
		-webkit-box-flex: initial;
		-ms-flex: initial;
		flex: initial;
		width: 100%;
	}

	.mentor__bio {
		display: block;
		position: relative;
		z-index: 2;
	}

	.mentor__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.mentor--dark .mentor__bio {
		color: #fff;
	}
}

@media(max-width: 768px) {
	.coaching-page-hero {
		padding: 50px 0 0;
	}

	.coaching-page-hero__title {
		margin-bottom: 25px;
	}

	.coaching-page-hero__text {
		font-size: .8rem;
		line-height: 1rem;
		margin-bottom: 40px;
		text-align: left;
	}

	.coaching-page-hero__team {
		font-size: 2rem;
		margin-bottom: 20px;
	}

	.mentor__head {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.mentor__photo {
		width: 190px;
		height: 255px;
	}

	.mentor__title h2 {
		font-size: 2rem;
		line-height: 2rem;
	}

	.mentor__title p {
		font-size: 1rem;
	}

	.mentor__fact.suitp-card {
		min-height: 100px;
	}

	.mentor__fact h3 {
		font-size: .9rem;
		line-height: 1rem;
	}

	.mentor__fact p {
		font-size: .75rem;
		line-height: .9rem;
	}

	.mentor__bio {
		font-size: .8rem;
		line-height: 1rem;
	}
}

@media(max-width: 620px) {
	.coaching__cards {
		grid-template-columns: 1fr;
	}

	.coaching__card {
		padding: 20px;
	}

	.mentor {
		padding: 40px 0;
	}

	.mentor__inner {
		gap: 24px;
	}

	.mentor__head {
		gap: 22px;
		margin-bottom: 28px;
	}

	.mentor__facts {
		grid-template-columns: 1fr;
	}

	.mentor__photo {
		width: 150px;
		height: 201px;
	}

	.mentor__title h2 {
		font-size: 1.5rem;
		line-height: 1.7rem;
	}

	.mentor__title p {
		font-size: .9rem;
	}

	.mentor__fact.suitp-card {
		min-height: auto;
		padding: 18px 20px;
	}
}
