.wp-block-envision-other-expertise {
	position: relative;
}

.wp-block-envision-other-expertise .expertise-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.wp-block-envision-other-expertise .expertise-list .expertise-link {
	font-size: 1.25rem;
	line-height: 1.25rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: var(--wp--preset--spacing--large);
	border-radius: 1rem;
	border: solid 1px var(--wp--preset--color--blue-60);
	box-shadow: 0 2px 20px 0 var(--wp--preset--color--charcoal-20);
	transition: all 0.2s ease-in-out;
	height: 3rem;
}

.wp-block-envision-other-expertise .expertise-list .expertise-link:hover,
.wp-block-envision-other-expertise .expertise-list .expertise-link:focus {
	border-color: var(--wp--preset--color--charcoal);
	transform: translateY(-3px);
}

.wp-block-envision-other-expertise .expertise-list .expertise-link .icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 768px) {
	.wp-block-envision-other-expertise .expertise-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
	}

	.wp-block-envision-other-expertise .expertise-list .expertise-link {
		font-size: 1.75rem;
		line-height: 2.25rem;
		padding: var(--wp--preset--spacing--large);
		height: 4.5rem;
	}
}

@media (min-width: 1024px) {
	.wp-block-envision-other-expertise .expertise-list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
	}
}
