.imageblock {
	padding-top: var(--wp--custom--padding--md);
	padding-left: var(--wp--custom--padding--sm);
	padding-right: var(--wp--custom--padding--sm);
	width: 100%;
}
.people-card__row {
	padding: var(--wp--custom--padding--md) var(--wp--custom--padding--sm)
		var(--wp--custom--padding--sm) var(--wp--custom--padding--sm);
	justify-content: center;
	align-items: center;
	gap: var(--wp--custom--gap--xl);
	align-self: stretch;
}
.people-card {
	display: flex;
	min-width: 25rem;
	flex-direction: column;
	align-items: center;
	flex: 1 0 0;
	align-self: stretch;
}
.people-card .people-card__image {
	width: 12.5rem;
	height: 12.5rem;
	border-radius: 12.5rem;
	border: 5px solid var(--wp--preset--color--white);
	background: lightgray 50% / cover no-repeat;
	z-index: 1;
	margin-bottom: -6.5625rem;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}
.people-card__inner {
	display: flex;
	padding-top: 6.5625rem;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	border-radius: var(--wp--custom--border-radius--lg);
	background: var(--wp--preset--color--white);
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
	height: webkit-fill-available;
	height: 100%;
}
.people-card__body {
	display: flex;
	padding: var(--wp--custom--padding--md) var(--wp--custom--padding--xs);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--wp--custom--gap--lg);
	align-self: stretch;
}
.people-card__body > * {
	margin-bottom: 0px;
}
.people-card__name {
	white-space: nowrap;
}
.people-card__desc {
	text-align: center;
}
.people-card__desc-b {
	font-weight: var(--wp--custom--font-weight--bold);
}
.people-modal {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	opacity: 0;
	background: transparent;
	transition: z-index 50ms ease-in-out, background 300ms ease-in-out;
}
.people-modal_content {
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	max-width: 50rem;
	padding: var(--wp--custom--padding--md);
	flex-direction: column;
	align-items: flex-start;
	gap: 0.625rem;
	align-self: stretch;
	border-radius: var(--wp--custom--border-radius--lg);
	border: var(--wp--custom--border-width--lg) solid
		var(--wp--preset--color--secondary);
	background-color: var(--wp--preset--color--white);
	width: 100%;
}
.people-modal_content > * {
	margin-bottom: 0;
}
.close {
	display: flex;
	width: 1.875rem;
	height: 1.875rem;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: -0.4375rem;
	top: -0.40625rem;
	border-radius: var(--wp--custom--border-radius--full);
	background: var(--wp--preset--color--black);
}
.close.icon::before {
	width: 0.60025rem;
	height: 0.60969rem;
	flex-shrink: 0;
}
.hello {
	opacity: 1;
	position: fixed;
	z-index: 99;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
}
.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}
.no-scroll {
	overflow: initial;
}
