.c-staff-card {
	position: relative;
	cursor: pointer;
}

.c-staff-card__head {
	position: relative;
	width: 100%;
	padding: 12px;
}

.c-staff-card__circle {
	position: absolute;
	inset: 0 auto auto 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.c-staff-card__circle::before,
.c-staff-card__circle::after {
	content: '';
	position: absolute;
	display: block;
	width: calc(100% - 24px);
	height: calc(100% - 24px);
	border-radius: 50%;
}

.c-staff-card__circle::before {
	top: 0;
	right: 0;
	background-color: #3C5F82;
}

.c-staff-card__circle::after {
	bottom: 0;
	left: 0;
	background-color: #C0392B;
}

.c-staff-card__image {
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	margin: 0 auto;
	border-radius: 50%;
	background-color: #fff;
	aspect-ratio: 1 / 1;
	z-index: 1;
}

.c-staff-card__image img {
	display: block;
	width: 80%;
	height: 100%;
	object-fit: contain;
	object-position: 50% calc(100% - 24px);
}

.c-staff-card__body {
	position: relative;
	display: grid;
	gap: 10px;
	width: 80%;
	margin: -40px auto 0;
	padding: 20px;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgb(0 0 0 / 8%);
	z-index: 2;
	transition: all 0.3s;
}

@media (any-hover: hover) {
	.c-staff-card__body:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 32px rgb(0 0 0 / 12%);
	}
}

.c-staff-card__name {
	font-weight: 700;
}

.c-staff-card__comment {
	padding-bottom: 10px;
	border-bottom: 1px dotted #3C5F82;
	font-weight: 700;
	color: #3C5F82;
}

.c-staff-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.c-staff-card__tags span {
	padding: 8px 10px;
	background-color: #E2E6EA;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: #3C5F82;
}

@media screen and (max-width: 768px) {
	.c-staff-card__image img {
		width: 72%;
	}

	.c-staff-card__body {
		gap: 8px;
		padding: 10px 16px;
	}
}

.c-staff-modal {
	position: fixed;
	inset: 0;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 20px;
	z-index: 30001;
}

.c-staff-modal.active {
	display: flex;
}

.c-staff-modal__overlay {
	position: absolute;
	inset: 0;
	background-color: rgb(206, 213, 225, 80%);
	backdrop-filter: blur(10px);
	z-index: 0;
}

.c-staff-modal__content {
	position: relative;
	width: calc(100% - (80px * 2));
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 60px;
	background-color: #f5f8fd;
	border-radius: 32px;
	aspect-ratio: 16/8;
	z-index: 1;
}

.c-staff-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 32px;
	cursor: pointer;
}

.c-staff-modal__body {
	display: flex;
	gap: 40px;
	height: 100%;
}

.c-staff-modal__left {
	flex: 0 0 320px;
	display: grid;
	gap: 20px;
}

.c-staff-modal__image {
	overflow: hidden;
	width: 100%;
	background-color: #fff;
	border: 2px solid #3C5F82;
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.c-staff-modal__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: scale(0.8);
}

.c-staff-modal__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 1em;
	font-weight: 700;
	color: #3C5F82;
}

.c-staff-modal__role {
	width: 100%;
}

.c-staff-modal__right {
	overflow: hidden scroll;
	scrollbar-width: thin;
	flex: 1;
	height: 100%;
	padding-right: 8px;
	color: #3C5F82;
}

.c-staff-modal__title {
	font-size: 24px;
	font-weight: 700;
}

.c-staff-modal__desc {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid #E2E6EA;
	font-size: 15px;
	line-height: 1.8;
}

.c-staff-modal__nav {
	position: absolute;
	top: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 8px rgb(60 95 130 / 80%);
	aspect-ratio: 1/1;
	transform: translateY(-50%);
}

.c-staff-modal__nav--prev {
	left: -80px;
}

.c-staff-modal__nav--next {
	right: -80px;
}

.c-staff-modal__nav::before {
	content: '';
	width: 10px;
	height: 16px;
	background-color: #3C5F82;
	clip-path: polygon(calc(100% - 4px) 0, 100% 0, 4px 50%, 100% 100%, calc(100% - 4px) 100%, 0 50%);
	transition: all 0.2s;
}

.c-staff-modal__nav--next::before {
	transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
	.c-staff-modal {
		align-items: flex-start;
		padding: 48px 20px 80px;
	}

	.c-staff-modal__content {
		width: 100%;
		height: 100%;
		padding: 20px;
		border-radius: 24px;
		aspect-ratio: auto;
	}

	.c-staff-modal__body {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
		gap: 20px;
		min-height: 0;
	}

	.c-staff-modal__left {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.c-staff-modal__image {
		width: 64%;
		margin: 0 auto;
	}

	.c-staff-modal__meta {
		flex-direction: column;
		gap: 4px;
		text-align: center;
	}

	.c-staff-modal__title {
		font-size: 20px;
	}

	.c-staff-modal__desc {
		margin-top: 10px;
		padding-top: 10px;
	}

	.c-staff-modal__nav {
		inset: calc(100% + 8px) auto auto auto;
		width: 40px;
		transform: none;
	}

	.c-staff-modal__nav--prev {
		left: calc(50% - 40px - 20px);
	}

	.c-staff-modal__nav--next {
		right: calc(50% - 40px - 20px);
	}
}