/* Contact Person Box */

.rspbld-person-box {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 12px 12px 10px;
	width: 100%;
	box-sizing: border-box;
}
.rspbld-person-box__figure {
	flex-shrink: 0;
	margin: 0;
	width: 80px;
	height: 80px;
}
.rspbld-person-box__img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.rspbld-person-box__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-width: 0;
}
.rspbld-person-box__name {
	color: var(--rspbld-person-box-primary-color, #002d56);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: .3rem;
	text-align: left;
}
.rspbld-person-box__position {
	font-size: 14px;
	font-weight: 400;
	margin: 0 0 .3rem;
}
.rspbld-person-box__description {
	font-size: 14px;
	font-weight: 400;
	margin: 0 0 .3rem;
}
.rspbld-person-box__separator {
	border-top: 1px dotted #b3b3b3;
	margin: 8px 0;
}
.rspbld-person-box__email,
.rspbld-person-box__phone {
	color: #555555;
	display: block;
	font-size: 14px;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color .3s ease-in-out;
}
.rspbld-person-box__email:hover,
.rspbld-person-box__email:focus,
.rspbld-person-box__phone:hover,
.rspbld-person-box__phone:focus {
	color: var(--rspbld-person-box-primary-color, #002d56);
}
