.cvdofp-board-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cvdofp-board-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cvdofp-board-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cvdofp-board-card {
	background-color: var(--global-palette7);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.cvdofp-board-media {
	position: relative;
	height: 360px;
	overflow: hidden;
	background: #f5f7f8;
}

.cvdofp-board-photo,
.cvdofp-board-photo-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.cvdofp-board-photo-placeholder {
	background:
		linear-gradient(150deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .08));
}

.cvdofp-board-content { padding: 14px 16px 16px; }

.cvdofp-board-name {
	margin: 0;
	font-size: 24px;
	letter-spacing: -1px;
	line-height: 1.1;
}

.cvdofp-board-position {
	margin: 8px 0 0!important;
	margin-bottom:8px!important;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}

.cvdofp-board-type {
	margin: 8px 0 0!important;
	font-size: 14px;
	font-weight: 500;
	opacity: .82;
}

.cvdofp-board-clinic {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 500;
	opacity: .82;
}

.cvdofp-board-card--no-image .cvdofp-board-content {
	padding: 18px;
}

.cvdofp-commitee-intro {
	max-width: 600px;
}

.cvdofp-board-email {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 500;
	opacity: .82;
}

.cvdofp-board-email a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	text-decoration: none;
	word-break: break-word;
}

.cvdofp-board-email a:hover,
.cvdofp-board-email a:focus {
	text-decoration: underline;
}

@media (max-width: 1280px) {
	.cvdofp-board-grid--cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
	.cvdofp-board-grid,
	.cvdofp-board-grid--cols-2,
	.cvdofp-board-grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.cvdofp-board-media { height: 330px; }
}

@media (max-width: 680px) {
	.cvdofp-board-grid,
	.cvdofp-board-grid--cols-2,
	.cvdofp-board-grid--cols-4 { grid-template-columns: 1fr; }

	.cvdofp-board-media { height: 290px; }
}