.category-cards {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	margin: 10px 0 0;
}

.category-cards .cat-card {
	align-items: center;
	background: #ffffff;
	border: 1px solid #a8b5ff;
	border-radius: 8px;
	box-sizing: border-box;
	color: #001820;
	display: flex;
	flex: 0 1 136px;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	min-height: 134px;
	overflow: hidden;
	padding: 10px 8px;
	text-decoration: none;
	width: 136px;
}

.category-cards .cat-card:hover,
.category-cards .cat-card:focus-visible {
	border-color: #ffd700;
	color: #001820;
	text-decoration: none;
}

.category-cards .cat-card img {
	display: block;
	height: 72px;
	margin: 0;
	max-height: 72px;
	max-width: 100%;
	object-fit: contain;
	width: 96px;
}

.category-cards .cat-card span {
	color: #001820;
	display: block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.45;
	margin: 0;
	text-align: center;
}

@media (max-width: 640px) {
	.category-cards {
		gap: 10px;
	}

	.category-cards .cat-card {
		flex-basis: calc(50% - 5px);
		max-width: 150px;
		width: calc(50% - 5px);
	}
}
