.rfzj_advisor_card {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
	width: 100%;
	max-width: 420px;
	padding: 16px;
	border: 1px solid var(--rfzj_color_border);
	border-radius: 18px;
	background: var(--rfzj_color_panel);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}

.rfzj_advisor_card__avatar {
	display: block;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: 18px;
	background: #f5f5f7;
}

.rfzj_advisor_card__avatar img,
.rfzj_advisor_card__avatar_img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rfzj_advisor_card__body {
	min-width: 0;
}

.rfzj_advisor_card__head {
	display: flex;
	gap: 8px;
	align-items: center;
	min-width: 0;
}

.rfzj_advisor_card__name {
	overflow: hidden;
	color: var(--rfzj_color_text);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rfzj_advisor_card__name:hover,
.rfzj_advisor_card__name:focus {
	color: var(--rfzj_color_text);
	text-decoration: none;
}

.rfzj_advisor_card__badge {
	flex: 0 0 auto;
	height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: var(--rfzj_color_blue_soft);
	color: var(--rfzj_color_blue);
	font-size: 12px;
	font-weight: 800;
	line-height: 22px;
}

.rfzj_advisor_card__role,
.rfzj_advisor_card__meta {
	margin: 6px 0 0;
	color: var(--rfzj_color_subtle);
	font-size: 13px;
	line-height: 1.35;
}

.rfzj_advisor_card__company {
	display: block;
	overflow: hidden;
	margin-top: 7px;
	color: var(--rfzj_color_muted);
	font-size: 14px;
	line-height: 1.35;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rfzj_advisor_card__company:hover,
.rfzj_advisor_card__company:focus {
	color: var(--rfzj_color_blue);
	text-decoration: none;
}

.rfzj_advisor_card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rfzj_advisor_card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.rfzj_advisor_card__action {
	min-width: 0;
	height: 30px;
	padding: 0 13px;
	font-size: 14px;
	line-height: 30px;
}

@media (max-width: 640px) {
	.rfzj_advisor_card {
		max-width: none;
		grid-template-columns: 64px minmax(0, 1fr);
		border-radius: 16px;
	}

	.rfzj_advisor_card__avatar {
		width: 64px;
		height: 64px;
		border-radius: 16px;
	}
}
