/* category cards */
.category-cards-section {

}

.category-cards {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(-.5 * var(--gutter-x));
	row-gap: var(--gutter-x);
}

.category-cards__item {
	flex: 0 0 auto;
	width: 50%;
	padding: 0 calc(.5 * var(--gutter-x));
	display: flex;
}

.category-card {
	width: 100%;
	border: 1px solid var(--border-color);
	padding: 19px;
}

.category-card__inner {
	display: flex;
	column-gap: 20px;
}

.category-card__aside {
	flex: 0 0 auto;
	width: 180px;
}

.category-card__image-field {
	display: block;
	background: var(--light-grey-bg);
	position: relative;
}

.category-card__image-field:before {
	content: '';
	display: block;
	padding-top: calc(4 * 100% / 3);
}

.category-card__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-card__image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.category-card__content {
	flex-grow: 1;
	min-width: 1px;
	display: flex;
	flex-direction: column;
}

.category-card__title {
margin-top: 10px;
    font-size: 16px;
    line-height: 19px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.category-card__title a {
	color: inherit;
	text-decoration: none;
}

.category-card__title a:hover {
color: var(--accent-color);
}

.category-card__list {

}

.category-card__list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.category-card__list li {
	margin-bottom: 10px;
}

.category-card__list a {
	color: inherit;
	text-decoration: none;
}

.category-card__list a:hover {
	color: var(--accent-color);
}

.category-card__footer {
    margin-top: auto;
    margin-bottom: 12px;
    font-weight: bold;
}

.category-card__footer a {
	color: inherit;
	text-decoration: none;
}

.category-card__footer a:hover {
	color: var(--accent-color);
}

.category-card__footer a strong {
	font-weight: normal;
	font-size: 12px;
	color: var(--accent-color);
}

@media (max-width: 1199.98px) {
	.category-card {
		font-size: 13px;
		line-height: 21px;
	}

	.category-card__aside {
    width: 140px;
	}

	.category-card__title {
		margin-top: 0;
	}

	.category-card__footer {
		margin-bottom: 0;
	}
}

@media (max-width: 991.98px) {
	.category-cards {
		--gutter-x: 10px;
	}

	.category-card__aside {
    width: 100px;
	}
}

@media (max-width: 767.98px) {
	.category-cards__item {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.category-card {
    padding: 9px;
	}

	.category-card__inner {
    column-gap: 10px;
	}
}
/* category cards */