@charset "utf-8";
/*
	Last Update: 2023/9/30
	Auther: sa
*/
/*===================================================================
	page layout
===================================================================*/
.staff-detail{
width: 100%;
padding: 6.25rem 1.5625rem 7.5rem;
}
.staff-detail__inner{
	max-width: 72.5625rem;
	width: 100%;
	margin: 0 auto;
}
.staff-detail__container{
	background-color: #ECF5F9;
	border-radius: 2px;
	padding: 1.125rem 1.5625rem;
	display: flex;
	gap: 3.125rem;
}
.staff-detail__body{
	margin-top: 1.5rem;
}
.staff-detail__name{
	display: flex;
	align-items: center;
	font-size: 1.9375rem;
}
.staff-detail__title{
	background-color: #759CB5;
	color: #fff;
	padding: 0.0625rem 1.5625rem;
	margin-right: 1rem;
	font-size: 1.125rem;
	font-weight: 500;
}
.staff-detail__body dd:first-of-type{
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	margin-top: 1.875rem;
}
.staff-detail__body dd:not(:first-of-type){
	margin-top:0.25rem;
}
.staff-detail__img{
	max-width: 12.149375rem;
	width: 100%;
}
.staff-detail__img img{
	object-fit: cover;
	width: 100%;
	aspect-ratio: 194.39/245.45;
}
@media (max-width: 767px) {
	.staff-detail{
		padding: 3.25rem 1rem;
	}
	.staff-detail__inner{
max-width: 37.5rem;
	}
.staff-detail__container{
	flex-direction: column;
	align-items: center;
	padding:3rem 1.5625rem;
	gap:unset;
}
.staff-detail__name{
	justify-content: center;
}
}
