.amelie-jobs-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 10px 0;
}

.amelie-jobs-grid__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 40px;
	padding: 8px 18px;
	border: 0;
	border-radius: 4px;
	background: #fff;
	color: #545454;
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	box-shadow: none;
	transition: box-shadow .18s ease, transform .18s ease;
}

.amelie-jobs-grid__icon {
	flex: 0 0 auto;
	width: 18px;
	height: 23px;
	fill: #ae9272;
	color: #ae9272;
}

.amelie-jobs-grid__button:hover,
.amelie-jobs-grid__button:focus-visible {
	background: #ae9272;
	color: #fff;
	text-decoration: none;
}

.amelie-jobs-grid__button:hover .amelie-jobs-grid__icon,
.amelie-jobs-grid__button:focus-visible .amelie-jobs-grid__icon {
	fill: #fff;
	color: #fff;
}

.amelie-jobs-grid__button:focus-visible {
	outline: 2px solid #ae9272;
	outline-offset: 2px;
}

.amelie-jobs-grid__label {
	min-width: 0;
	overflow-wrap: anywhere;
}

.amelie-jobs-grid--empty {
	display: block;
}

.amelie-jobs-grid__empty {
	margin: 0;
	color: #fff;
}

@media (max-width: 768px) {
	.amelie-jobs-grid {
		grid-template-columns: 1fr;
	}
}
