.me-home-employers {
	padding-block: clamp(48px, 6vw, 70px);
	border-top: 1px solid var(--me-color-border, #dfe5ee);
	border-bottom: 1px solid var(--me-color-border, #dfe5ee);
	background: #fff;
}

.me-home-employers__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 26px;
}

.me-home-employers__heading h2,
.me-home-employers__heading p {
	margin-bottom: 0;
}

.me-home-employers__heading > div > p:last-child {
	max-width: 670px;
	margin-top: 8px;
	color: var(--me-color-muted, #5d687b);
	font-size: 16px;
	line-height: 1.55;
}

.me-home-employers__heading > a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	flex: 0 0 auto;
	gap: 4px;
	color: var(--me-color-primary-dark, #147548);
	font-size: 15px;
	font-weight: 650;
	text-decoration: none;
}

.me-home-employers__heading > a:hover {
	color: var(--me-color-primary, #1fa866);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.me-home-employers__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 13px;
}

.me-home-employer-logo {
	display: flex;
	min-width: 0;
	height: 106px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 16px;
	border: 1px solid var(--me-color-border, #dfe5ee);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(17, 26, 56, .035);
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.me-home-employer-logo:hover {
	border-color: var(--me-color-primary, #1fa866);
	box-shadow: 0 10px 24px rgba(17, 26, 56, .09);
	transform: translateY(-2px);
}

.me-home-employer-logo img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 66px;
	object-fit: contain;
}

.me-home-employer-logo__name {
	max-width: 100%;
	color: var(--me-color-ink, #111a38);
	font-size: 16px;
	font-weight: 720;
	line-height: 1.25;
	text-align: center;
}

@media (max-width: 980px) {
	.me-home-employers__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.me-home-employers {
		padding-block: 46px;
	}

	.me-home-employers__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 20px;
	}

	.me-home-employers__grid {
		grid-template-columns: none;
		grid-template-rows: repeat(2, 92px);
		grid-auto-columns: minmax(150px, 42vw);
		grid-auto-flow: column;
		overflow-x: auto;
		gap: 10px;
		padding: 2px 2px 12px;
		scroll-snap-type: x proximity;
		scrollbar-width: thin;
	}

	.me-home-employer-logo {
		height: 92px;
		padding: 13px;
		scroll-snap-align: start;
	}

	.me-home-employer-logo img {
		max-height: 56px;
	}
}
