:root {
	--ehc-counsellor-purple: #5b2e91;
	--ehc-counsellor-purple-dark: #47216f;
	--ehc-counsellor-coral: #ff6f61;
	--ehc-counsellor-ink: #241b3d;
	--ehc-counsellor-soft: #eee9f4;
}

.ehc-counsellors,
.ehc-counsellors * {
	box-sizing: border-box;
}

.ehc-counsellors {
	font-family: inherit;
}

.ehc-counsellors__items {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.ehc-counsellor-card {
	min-width: 0;
	margin: 0;
}

.ehc-counsellor-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1.08;
	overflow: hidden;
	background: var(--ehc-counsellor-soft);
	border-radius: 8px;
}

.ehc-counsellor-card__image,
.ehc-counsellor-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover !important;
	object-position: center;
}

.ehc-counsellor-card__image {
	transition: transform 240ms ease;
}

.ehc-counsellor-card:hover .ehc-counsellor-card__image {
	transform: scale(1.025);
}

.ehc-counsellor-card__body {
	display: flex;
	padding: 10px 2px 0;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ehc-counsellor-card__title {
	margin: 0 0 2px;
	color: var(--ehc-counsellor-ink);
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.35;
}

.ehc-counsellor-card__title a {
	color: inherit;
	text-decoration: none;
}

.ehc-counsellor-card__title a:hover {
	color: var(--ehc-counsellor-purple);
}

.ehc-counsellor-card__role {
	margin: 0;
	color: var(--ehc-counsellor-coral);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

.ehc-counsellors .ehc-counsellor-card__link {
	display: inline-flex;
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	padding: 0 !important;
	flex: 0 0 30px;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	background: var(--ehc-counsellor-purple) !important;
	border: 0 !important;
	border-radius: 50% !important;
	box-shadow: none !important;
	font-family: inherit;
	line-height: 1;
	text-decoration: none;
	transition: background-color 180ms ease, transform 180ms ease;
}

.ehc-counsellors .ehc-counsellor-card__link svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ehc-counsellors .ehc-counsellor-card__link:hover {
	color: #fff !important;
	background: var(--ehc-counsellor-purple-dark) !important;
	border: 0 !important;
	box-shadow: none !important;
	transform: translate(1px, -1px);
}

.ehc-counsellors .ehc-counsellor-card__link:focus-visible {
	outline: 3px solid rgb(91 46 145 / 25%);
	outline-offset: 3px;
}

@media (max-width: 900px) {
	.ehc-counsellors__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.ehc-counsellors__items {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
