/**
 * Single Trainer Page Styles
 */

.gw-trainer-single {
	background: #0f0f0f;
	color: #e5e5e5;
}

/* Hero */
.gw-trainer-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.gw-trainer-hero-image {
	position: absolute;
	inset: 0;
}

.gw-trainer-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.gw-trainer-hero-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		#0f0f0f 0%,
		rgba(15, 15, 15, 0.7) 40%,
		rgba(15, 15, 15, 0.2) 70%,
		rgba(15, 15, 15, 0.1) 100%
	);
}

.gw-trainer-hero-content {
	position: relative;
	z-index: 2;
	padding: 60px 40px;
	max-width: 900px;
}

.gw-trainer-hero-name {
	font-family: var(--gw-font-heading);
	font-weight: 700;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.1;
	margin: 16px 0;
}

.gw-trainer-certs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

/* Body */
.gw-trainer-body {
	padding: 60px 40px;
}

.gw-trainer-body-inner {
	max-width: 800px;
	margin: 0 auto;
}

.gw-trainer-bio {
	font-family: var(--gw-font-body);
	font-size: 1.05rem;
	line-height: 1.8;
	color: #b0b0b0;
	margin-bottom: 48px;
}

.gw-trainer-bio p {
	margin-bottom: 1.5em;
}

.gw-trainer-specialties {
	margin-bottom: 48px;
	padding: 28px;
	border-radius: 12px;
	border: 1px solid rgba(132, 117, 78, 0.2);
	background: #181818;
}

.gw-trainer-specialties h2 {
	font-family: var(--gw-font-heading);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #a8976a;
	margin: 0 0 12px;
}

.gw-trainer-specialties p {
	font-family: var(--gw-font-body);
	font-size: 0.9rem;
	line-height: 1.7;
	color: #b0b0b0;
	margin: 0;
}

.gw-trainer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}

.gw-trainer-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Responsive */
@media (max-width: 767px) {
	.gw-trainer-hero {
		min-height: 60vh;
	}

	.gw-trainer-hero-content {
		padding: 40px 24px;
	}

	.gw-trainer-body {
		padding: 40px 24px;
	}
}
