/* LNS Doctor Card - dark glass-card style */

.lns-dc-card {
	box-sizing: border-box;
	max-width: 320px;
	margin: 0 auto;
	padding: 32px 20px 26px;
	background: #0a1d2f;
	border: 1px solid rgba(56, 189, 248, 0.35);
	border-radius: 22px;
	text-align: center;
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.08),
		0 0 30px rgba(56, 189, 248, 0.12),
		0 20px 40px rgba(0, 0, 0, 0.45);
	font-family: inherit;
}

.lns-dc-card * {
	box-sizing: border-box;
}

.lns-dc-avatar {
	width: 108px;
	height: 108px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	background: #0e2a42;
	border: 3px solid #38bdf8;
	box-shadow:
		0 0 0 4px rgba(56, 189, 248, 0.12),
		0 0 24px rgba(56, 189, 248, 0.45);
}

.lns-dc-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lns-dc-name {
	margin: 0 0 10px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: #ffffff;
}

.lns-dc-title {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.6;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #38bdf8;
}

.lns-dc-clinic {
	margin: 0 0 22px;
	font-size: 14px;
	font-weight: 400;
	color: #7d93a8;
}

.lns-dc-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.lns-dc-tag {
	display: inline-block;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	color: #7dd3fc;
	background: rgba(56, 189, 248, 0.08);
	border: 1px solid rgba(56, 189, 248, 0.4);
	border-radius: 999px;
	white-space: nowrap;
}

@media (max-width: 480px) {
	.lns-dc-card {
		max-width: 100%;
	}
}
