.archive_filter ul {
	display: flex;
	align-items: stretch;
	gap: 10px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	border-bottom: 2px solid var(--teal);
}
.archive_filter ul li {
	flex: 1;
}
.archive_filter ul li a {
	color: #DFE1DF;
	justify-content: center;
	text-align: center;
	display: flex;
	background: var(--white);
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	line-height: 55px;
	padding: 10px 40px;
	box-sizing: border-box;
	border-radius: 10px 10px 0 0;
	text-decoration: none;
	gap: 4px;
	transition: all .3s ease-in-out;
	font-weight: 700;
}
.archive_filter ul li a span {
	font-weight: 400;
}
.archive_filter ul li:hover a, .archive_filter ul li.current a {
	background: var(--teal);
	color: var(--white);
	transition: all .3s ease-in-out;
}
.single_post_list.people {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}
.single_post_list.people > a {
	text-decoration: none;
}
.single_post_list.people > a .post_thumb {
	aspect-ratio: 1 / 1;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 10px;
	position: relative;
}
.single_post_list.people > a .post_data {
	margin-top: 20px;
}
.single_post_list.people > a .post_data h3 {
	margin-bottom: 10px;
	color: var(--black);
	font-weight: 700;
	transition: all .3s ease-in-out;
}
.single_post_list.people > a:hover .post_data h3 {
	color: var(--teal);
	transition: all .3s ease-in-out;
}
.single_post_list.people > a .post_data .role {
	color: var(--black);
	font-family: "Josefin Sans", sans-serif;
	font-size: 18px;
	line-height: 20px;
	margin: 0;
}
.single_post_list.people > a .post_thumb::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41' fill='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M15.64.286h22.5a2.5 2.5 0 0 1 2.5 2.5v22.5a2.5 2.5 0 0 1-5 0V8.82L4.554 39.91a2.5 2.5 0 0 1-3.535-3.536L32.105 5.286H15.641a2.5 2.5 0 0 1 0-5Z' clip-rule='evenodd'/%3E%3C/svg%3E");
	max-width: 41px;
	width: 2.5vw;
	aspect-ratio: 1 / 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	content: '';
	position: absolute;
	right: 10px;
	top: 10px;
	opacity: 0;
	transition: all .3s ease-in-out;
}
.single_post_list.people > a:hover .post_thumb::after {
	opacity: 1;
	transition: all .3s ease-in-out;
}
@media (max-width: 1024px) {


	.archive_filter ul li a {
		padding: 15px;
		line-height: 1em;
		border-radius: 6px;
		border: none;
	}
	.archive_filter ul li {
		flex-grow: 0;
	}
	.archive_filter ul {
		justify-content: center;
		gap: 10px;
		border-bottom: none;
	}
	.single_post_list.people {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.single_post_list.people {
		grid-template-columns: repeat(1, 1fr);
	}
}
