.about-coaches {
	padding-block: clamp(6rem, 12vw, 11rem);
	background: #f1f2f3;
	color: #111;
}

.about-coaches__header {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: var(--grid-gap);
	margin-bottom: clamp(4rem, 8vw, 7rem);
}

.about-coaches__eyebrow {
	grid-column: 1 / span 3;
	margin: 0;
	padding-top: 0.75rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.about-coaches__eyebrow::before {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	margin-right: 0.7rem;
	border-radius: 0.12rem;
	background: var(--color-accent, #d52b22);
	content: "";
}

.about-coaches__title {
	grid-column: 4 / -1;
	max-width: 13ch;
	margin: 0;
	font-size: clamp(3rem, 6vw, 7rem);
	font-weight: 700;
	line-height: 0.94;
	letter-spacing: -0.055em;
	text-wrap: balance;
}

.about-coaches__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: var(--grid-gap);
	row-gap: clamp(4rem, 7vw, 7rem);
}

.about-coaches__item {
	min-width: 0;
}

.about-coaches__media {
	position: relative;
	aspect-ratio: 3 / 4;
	margin: 0;
	overflow: hidden;
	border-radius: 1rem;
	background: #171717;
}

.about-coaches__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: none;
	
}

.about-coaches__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	background:
		linear-gradient(
			145deg,
			#1d1d1d 0%,
			#0d0d0d 100%
		);
}

.about-coaches__placeholder span {
	color: transparent;
	font-size: clamp(4rem, 7vw, 8rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.07em;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.65);
}

.about-coaches__content {
	display: grid;
	grid-template-columns: 2rem minmax(0, 1fr);
	gap: 0.75rem;
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(17, 17, 17, 0.28);
}

.about-coaches__number {
	padding-top: 0.25rem;
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1;
	color: rgba(17, 17, 17, 0.5);
}

.about-coaches__information {
	min-width: 0;
}

.about-coaches__name {
	margin: 0;
	font-size: clamp(1.3rem, 1.8vw, 1.75rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.about-coaches__role {
	margin: 0.5rem 0 0;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgb(255, 0, 0);
}

.about-coaches__description {
	max-width: 31rem;
	margin: 1.25rem 0 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(17, 17, 17, 0.76);
}



@media (max-width: 1023px) {
	.about-coaches__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 559px) {
	.about-coaches__header {
		display: block;
	}

	.about-coaches__title {
		margin-top: 2rem;
	}

	.about-coaches__grid {
		grid-template-columns: 1fr;
	}

	.about-coaches__content {
		grid-template-columns: 1.75rem minmax(0, 1fr);
	}
}

.about-coaches__title-word {
	display: inline-block;
	will-change: transform, opacity;
}

.about-coaches__media {
	will-change: clip-path;
}

@media (prefers-reduced-motion: reduce) {
	.about-coaches__eyebrow,
	.about-coaches__title-word,
	.about-coaches__media,
	.about-coaches__image,
	.about-coaches__placeholder,
	.about-coaches__number,
	.about-coaches__information > * {
		opacity: 1 !important;
		clip-path: none !important;
		transform: none !important;
	}
}

