/* ── Block wrapper ──────────────────────────────────────────────────────────── */
.wp-block-wk-person-block-person {
	display: block;
	width: 100%;
}

/* ── Card link ──────────────────────────────────────────────────────────────── */
.wp-block-wk-person-block-person .wk-person {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 16px 20px;
	background: #f5f7fa;
	border-radius: 0;
	text-decoration: none;
	color: inherit;
	width: 100%;
	box-sizing: border-box;
}

.wp-block-wk-person-block-person .wk-person:hover {
	background: #edf0f7;
}

/* ── Photo ──────────────────────────────────────────────────────────────────── */
.wp-block-wk-person-block-person .wk-person__photo {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	background: #dde3ec;
}

.wp-block-wk-person-block-person .wk-person__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Placeholder icon when no featured image is set */
.wp-block-wk-person-block-person .wk-person__photo-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9aaabf;
}

.wp-block-wk-person-block-person .wk-person__photo-placeholder svg {
	width: 40px;
	height: 40px;
}

/* ── Info column ────────────────────────────────────────────────────────────── */
.wp-block-wk-person-block-person .wk-person__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

/* ── Name ───────────────────────────────────────────────────────────────────── */
.wp-block-wk-person-block-person .wk-person__name {
	font-weight: 700;
	font-size: 15px;
	line-height: 1.3;
	color: #1a2b4a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── Position ───────────────────────────────────────────────────────────────── */
.wp-block-wk-person-block-person .wk-person__position {
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	color: #5a6a80;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ── Contact link ───────────────────────────────────────────────────────────── */
.wp-block-wk-person-block-person .wk-person__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #1956e8;
	text-decoration: none;
}

.wp-block-wk-person-block-person .wk-person__arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform 0.15s ease;
}

.wp-block-wk-person-block-person .wk-person:hover .wk-person__arrow {
	transform: translateX( 3px );
}
