.staff-feed {
	margin: 0 0 1.5rem;
	display: flex;
	flex-wrap: wrap;
}

@media (min-width:816px) {
	.staff-feed {
		margin: 0 -0.5rem 3rem;
	}
}

.staff-feed .staff-member {
	position: relative;
	width: calc(33.33% - 1rem);
}

@media (max-width:816px) {
	.staff-feed .staff-member {
		width: 100%;
	}
}

.post-thumbnail.staff-thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	overflow: hidden;
}


/* detail view */

.staff-detail {
	position: relative;
	padding: 3rem 0;
}

.staff-detail .container {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 3rem;
}

.staff-detail img {
	width: 240px;
	display: block;
	order: 2;
}

.staff-detail .staff-title,
.staff-detail .staff-email {
	margin: .75rem 0;
}

.staff-detail .text-content {
	order: 1;
}

.staff-social-links {
	margin: 1.5rem 0;
	list-style: none;
	display: flex;
}

.staff-social-links a {
	width: 40px;
	height: 40px;
	display: block;
	text-decoration: none;
	overflow: hidden;
	text-indent: -9000em;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 32px;
}

.staff-social-links .facebook a {
	background-image: url('../images/social-icons/icon-facebook.svg');
}

.staff-social-links .x-twitter a,
.staff-social-links .twitter-x a {
	background-image: url('../images/social-icons/icon-twitter-x.svg');
}

.staff-social-links .linkedin a {
	background-image: url('../images/social-icons/icon-linkedin.svg');
}

.staff-detail form {
	margin: 1.5rem 0;
	padding: 2rem;
    background: var(--true-white);
	border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
}

.staff-detail form label span {
	display: block;
}

.staff-feed + p {
	margin-bottom: 3rem;
	text-align: center;
}

.staff-feed + p a[href*="/request-a-speaker"] {
	padding: .4375rem 2rem;
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	gap: .5rem;
	cursor: pointer;
	font-family: var(--font-label);
	font-weight: 500;
	line-height: 1.5rem;
	letter-spacing: -0.01em;
	color:  var(--true-white);
	background-color: var(--brand-primary);
	border-color: var(--brand-primary);
	border-width: 1px;
	border-style: solid;
	border-radius: 1.5em;
	box-shadow: none;
	text-decoration: none;
	transition: var(--basic-transition);
}

.staff-feed + p a[href*="/request-a-speaker"]:hover,
.staff-feed + p a[href*="/request-a-speaker"]:focus {
	text-decoration: none;
	gap: 1rem;
	box-shadow: var(--focus-ring-md) var(--brand-primary-highlight);
}