/* About / biography section. */

.about-section {
	background: var(--white);
}

.about-inner {
	grid-template-columns: minmax(280px, 1fr) minmax(0, 1.96fr);
	gap: 80px;
	align-items: start;

	/* Keep two columns on tablets — the shared shell collapses at 1280. */
	@media (max-width: 1279.98px) {
		grid-template-columns: minmax(240px, 1fr) minmax(0, 1.6fr);
		gap: 40px;
	}

	@media (max-width: 767.98px) {
		grid-template-columns: 1fr;
	}
}

.portrait-frame {
	position: relative;
	aspect-ratio: 405 / 625;
	overflow: hidden;
	border-bottom: 4px solid var(--gold-mid);
	background: var(--navy-mid);
}

.portrait-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portrait-placeholder {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--muted-on-navy);

	span {
		color: rgb(196 151 42 / 45%);
		font: 700 72px var(--display);
		letter-spacing: -0.04em;
	}

	small {
		margin-top: 16px;
		font-size: 11px;
		letter-spacing: 0.1em;
		text-transform: uppercase;
	}
}

.credential-strip {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 2px;
	padding: 16px 20px;
	background: var(--navy-nav);
	color: rgb(255 255 255 / 65%);
	font-size: 12px;
	line-height: 1.4;

	> span {
		display: grid;
		place-items: center;
		flex-shrink: 0;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: rgb(196 151 42 / 20%);
		color: var(--gold-mid);
	}

	strong {
		display: block;
		color: var(--gold-mid);
		font-weight: 600;
	}
}

.about-body {
	margin-bottom: 18px;
	color: var(--charcoal);
	font-size: 16px;
	line-height: 1.6;
}

.about-philosophy {
	margin: 52px 0 0;
	padding: 44px 36px 0;
	border-top: 1px solid rgb(196 151 42 / 45%);
	color: var(--navy-nav);
	font-family: var(--accent);
	font-size: 16px;
	line-height: 1.75;

	@media (max-width: 767.98px) {
		margin-top: 42px;
		padding: 38px 20px 0;
		font-size: 15px;
	}

	p {
		margin: 0 0 20px;

		&:last-child {
			margin-bottom: 0;
		}
	}
}

.about-philosophy-label {
	color: var(--gold);
	font: 600 11px/1.6 var(--body);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.career-timeline {
	margin-top: 40px;
	margin-left: 4px;
	padding-left: 32px;
	border-left: 2px solid rgb(196 151 42 / 30%);
}

.timeline-item {
	position: relative;
	padding: 0 0 28px;

	&::before {
		position: absolute;
		top: 7px;
		left: -37px;
		width: 8px;
		height: 8px;
		border: 2px solid var(--white);
		border-radius: 50%;
		background: var(--gold-mid);
		box-shadow: 0 0 0 2px var(--gold-mid);
		content: "";
	}

	h3 {
		margin: 0 0 4px;
		color: var(--bronze);
		font-family: var(--body);
		font-size: 14px;
		font-weight: 600;
		line-height: 1.6;
	}

	strong {
		display: block;
		color: var(--navy-nav);
		font-size: 15px;
		font-weight: 600;
		line-height: 1.6;
	}

	p {
		margin: 0;
		color: var(--slate);
		font-size: 13px;
		line-height: 1.5;
	}
}
