.about-section {
	position: relative;
}

.about-hero-panel,
.bio-card,
.about-contact-card,
.about-contact-photo {
	border: 1px solid var(--tone-line);
	border-radius: 1.25rem;
	box-shadow: var(--tone-shadow-soft);
}

.about-hero-panel {
	padding: 1.25rem 1.4rem;
	background: var(--tone-panel);
}

.about-hero-panel > h1 {
	margin: 0 0 0.75rem;
	padding: 0;
	font-size: clamp(1.45rem, 1.15rem + 0.8vw, 2rem);
	line-height: 1.15;
	color: var(--color-red);
}

.bio-card {
	padding: 1.35rem;
	background: var(--tone-panel-soft);
}

.bio-card__kicker {
	margin: 0 0 0.45rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(0, 0, 103, 0.7);
}

.bio-card h2 {
	margin-bottom: 1rem;
	padding: 0;
	text-align: left;
	font-size: clamp(1.45rem, 1.15rem + 0.8vw, 2rem);
}

.bio-card__story::after {
	content: '';
	display: block;
	clear: both;
}

.bio-card__story p:last-child {
	margin-bottom: 0;
}

.bio-card__photo--left {
	float: left;
	margin: 0 1rem 0.85rem 0;
}

.bio-card__photo--right {
	float: right;
	margin: 0 0 0.85rem 1rem;
}

.about-contact-card,
.about-contact-photo {
	padding: 1.35rem;
	background: var(--tone-panel-soft);
}

.about-contact-card {
	display: grid;
	align-content: center;
}

.about-contact-card h3 {
	margin-bottom: 0.75rem;
	color: var(--color-blue);
}

.about-contact-card__copy {
	margin-bottom: 1rem;
}

.about-contact-card__links {
	margin-bottom: 0;
	font-size: 1.05rem;
}

.about-contact-photo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-contact-photo img {
	width: 100%;
}

@media (max-width: 767px) {
	.about-hero-panel,
	.bio-card,
	.about-contact-card,
	.about-contact-photo {
		padding: 1rem;
	}

	.bio-card h2 {
		text-align: center;
	}

	.bio-card__photo--left,
	.bio-card__photo--right {
		float: none;
		display: block;
		margin: 0 auto 1rem;
	}

.about-contact-card {
		text-align: center;
	}
}

