/* About page matched to the supplied OTMAZGIN source. */
.about-intro {
	margin: 0;
	max-width: none;
	padding: 130px 60px 40px;
	text-align: center;
}

.about-intro__inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
	max-width: 1125px;
	margin: 0 auto;
}

.about-intro h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(24px, 3vw, 46px);
	font-weight: 300;
	line-height: 1.14;
	letter-spacing: -.01em;
	white-space: nowrap;
}

.about-intro__body {
	display: flex;
	flex-direction: column;
	gap: 18px;
	color: #3f3b36;
	font-size: 17px;
	line-height: 1.85;
	text-wrap: pretty;
}

.about-intro__body p {
	margin: 0;
}

.about-intro__body p:not(:first-child) {
	color: var(--muted);
	font-size: 16px;
}

.about-intro__body strong {
	font-weight: 600;
}

.about-stats {
	padding: 40px 60px 20px;
}

.about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
}

.about-stat {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	padding: 44px 26px;
	background: #fff;
	text-align: center;
}

.about-stat strong {
	color: var(--rust);
	font-size: clamp(38px, 4vw, 56px);
	font-weight: 400;
	line-height: 1;
}

.about-stat span {
	color: #8a8580;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .14em;
}

.about-principal {
	padding: 60px;
}

.about-principal__panel {
	padding: 110px 60px;
	background: var(--paper);
}

.about-principal__inner {
	display: flex;
	gap: 56px;
	align-items: center;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
}

.about-principal__portrait {
	width: 230px;
	height: 230px;
	flex: none;
	overflow: hidden;
	border-radius: 50%;
	background: #fff;
}

.about-principal__portrait img {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.about-principal__copy {
	display: flex;
	flex-direction: column;
	gap: 22px;
	text-align: start;
}

.about-principal__copy h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(28px, 2.9vw, 40px);
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.about-principal__bio {
	display: flex;
	flex-direction: column;
	gap: 14px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.85;
	text-wrap: pretty;
}

.about-principal__bio p {
	margin: 0;
}

.about-awards {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 70px 60px 110px;
}

.about-awards > h2 {
	margin: 0 0 44px;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: -.01em;
	text-align: center;
}

.about-awards__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	width: 100%;
	background: var(--line);
}

.about-awards article {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
	padding: 44px 26px;
	background: #fff;
	text-align: center;
}

.about-awards article strong {
	color: var(--rust);
	font-size: clamp(20px, 2.1vw, 28px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: .1em;
}

.about-awards article p {
	margin: 0;
	color: var(--ink);
	font-size: 17px;
	line-height: 1.6;
	text-wrap: pretty;
}

.about-videos {
	padding: 20px 60px 36px;
}

.about-videos__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.about-videos a {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	background: #8a8580;
	transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .5s ease, background-color .3s ease;
}

.about-videos a:hover,
.about-videos a:focus-visible {
	background: var(--rust);
	transform: translateY(-6px);
	box-shadow: 0 18px 44px rgba(35, 32, 25, .13);
}

.about-videos a > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border: 1px solid rgba(255, 255, 255, .75);
	border-radius: 50%;
	color: #fff;
}

@media (max-width: 900px) {
	.about-intro h2 {
		white-space: normal;
	}

	.about-stats__grid,
	.about-awards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-principal__inner {
		flex-direction: column;
		text-align: center;
	}

	.about-principal__copy {
		align-items: center;
		text-align: center;
	}
}

@media (max-width: 782px) {
	.about-intro {
		padding: 80px 5vw 35px;
	}

	.about-stats,
	.about-principal,
	.about-awards,
	.about-videos {
		padding-right: 5vw;
		padding-left: 5vw;
	}

	.about-stats {
		padding-top: 25px;
	}

	.about-principal {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.about-principal__panel {
		padding: 70px 7vw;
	}

	.about-awards {
		padding-top: 55px;
		padding-bottom: 75px;
	}

	.about-videos__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 480px) {
	.about-awards__grid {
		grid-template-columns: 1fr;
	}

	.about-stat {
		padding: 34px 14px;
	}

	.about-stat span {
		font-size: 12px;
	}

	.about-principal__portrait {
		width: 190px;
		height: 190px;
	}
}