/* Law Instructor Cards — editorial minimalist
   Designed to match a black + royal-blue legal site (lawpracticecle.com)
   Accent color is themable via inline CSS variable --lic-accent. */

.lic-cards {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin: 32px 0;
}

.lic-card {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 32px 0;
	border-top: 1px solid #E5E5E5;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #111;
	line-height: 1.5;
}

.lic-cards .lic-card:first-child {
	border-top: 0;
	padding-top: 0;
}

.lic-card__avatar {
	flex: 0 0 132px;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--lic-accent, #1a4fb8);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	font-size: 40px;
	letter-spacing: 0.02em;
}

.lic-card__avatar img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.lic-card__initials {
	user-select: none;
}

.lic-card__body {
	flex: 1 1 auto;
	min-width: 0;
}

.lic-card__name {
	font-size: 20px;
	font-weight: 700;
	color: #111;
	margin: 0 0 10px;
	letter-spacing: -0.005em;
	line-height: 1;
}

.lic-card__summary {
	font-size: 15px;
	color: #444;
	margin: 0 0 16px;
	max-width: 60ch;
}

.lic-card__divider {
	width: 100%;
	height: 1px;
	background: #E5E5E5;
	margin: 0 0 14px;
}

.lic-card__link {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--lic-accent, #1a4fb8);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 120ms ease, opacity 120ms ease;
}

.lic-card__link:hover,
.lic-card__link:focus {
	border-bottom-color: var(--lic-accent, #1a4fb8);
	color: var(--lic-accent, #1a4fb8);
	opacity: 0.85;
}

@media (max-width: 600px) {
	.lic-card {
		gap: 18px;
		padding: 24px 0;
	}
	.lic-card__avatar {
		flex-basis: 96px;
		width: 96px;
		height: 96px;
		font-size: 30px;
	}
	.lic-card__name {
		font-size: 18px;
	}
	.lic-card__summary {
		font-size: 14px;
	}
}
