.me-home-sectors {
	padding-block: clamp(52px, 6vw, 72px);
	border-bottom: 1px solid var(--me-color-border, #dfe5ee);
	background: var(--me-color-canvas, #f7f9fc);
}

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

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

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

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

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

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

.me-home-sectors__grid > a {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-height: 104px;
	padding: 18px;
	border: 1px solid var(--me-color-border, #dfe5ee);
	border-radius: 14px;
	background: #fff;
	color: var(--me-color-ink, #172033);
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(17, 26, 56, .035);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

.me-home-sector__icon {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	border-radius: 13px;
	background: #eaf8f1;
	color: var(--me-color-primary-dark, #147548);
}

.me-home-sector__icon svg {
	display: block;
	width: 26px;
	height: 26px;
}

.me-home-sector__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 5px;
}

.me-home-sector__content strong {
	font-size: 16px;
	font-weight: 720;
	line-height: 1.25;
}

.me-home-sector__content > span {
	color: var(--me-color-muted, #5d687b);
	font-size: 14px;
	line-height: 1.3;
}

.me-home-sector__arrow {
	color: var(--me-color-primary-dark, #147548);
	font-size: 18px;
	font-weight: 700;
}

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

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

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

	.me-home-sectors__grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.me-home-sectors__grid > a {
		min-height: 88px;
		padding: 15px 16px;
	}
}
