/**
 * Barrister Profile widget – icon alignment and layout.
 * Icon container uses fixed width (largest icon = 24px) so text lines up vertically.
 */

.barrister-profile .barrister-profile-link {
	display: flex;
	align-items: center;
}

.barrister-profile .ic-profile-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	min-width: 24px;
	box-sizing: border-box;
}

.barrister-profile .ic-profile-icon img {
	display: block;
	max-width: 100%;
	max-height: 24px;
	width: auto;
	height: auto;
	object-fit: contain;
}


.barrister-profile-link--linkedin .ic-profile-icon {
	position: relative;
	bottom: 3px;
}