.category-card {
	background-color: #FFFFFF;
	border-radius: 2px;
	display: flex;
	height: 250px;
	position: relative;
	text-decoration: none;
}

.category-card:hover .category-card__title h3 {
	color: var(--secondary-blue-1000);
}

.category-card__image {
	flex: 1.5;
	flex-shrink: 0;
	line-height: 0;
	overflow: hidden;
}

.category-card__image .image-wrapper {
	border-radius: 2px;
	height: 100%;
	overflow: hidden;
	width: 100%;
  position:relative;
}

.category-card .image-wrapper:after {
    content: "";
    width: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    mix-blend-mode: hard-light;
    background: linear-gradient(90deg, rgba(0, 158, 255, 0.00) 48.63%, rgba(0, 158, 255, 0.60) 74.69%);
    transition: all 0.3s ease;
}
.category-card:hover .image-wrapper:after {width:100%}

.category-card__image img {
	aspect-ratio: 16 / 9;
	height: 100%;
	object-fit: cover;
	width: 100%;
  transition:all 0.3s ease
}

.category-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.category-card__content {
	display: flex;
	flex: 2;
	flex-direction: column;
	gap: 5px;
	padding: 60px 80px;
	width: 100%;
}

.category-card__timestamp p,
.category-card__timestamp time {
	color: var(--secondary-blue-1000);
	flex-shrink: 0;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	position: relative;
}

.category-card.post__recipes .category-card__timestamp p,
.category-card.post__recipes .category-card__timestamp time{color:var(--recipes-orange)}

.category-card__title h3 {
	color: #1A1A1A;
	flex-shrink: 0;
	font-family: 'Stag LCG', sans-serif;
	font-size: 24px;
	line-height: 1.2;
	margin: 0;
	min-width: 100%;
	position: relative;
	transition: all 0.3s ease;
	width: min-content;
}

@media screen and (max-width: 1023px) {
	.category-card__title h3{font-size:20px}
	.category-card {height: auto}
	.category-card__content{
		padding:25px 30px;
	}
}