.ky-categories{
	background:#faf8f4;
	padding:90px 0;
}

.ky-section-title{
	text-align:center;
	margin-bottom:50px;
}

.ky-section-title span{
	color:#C8A45B;
	text-transform:uppercase;
	letter-spacing:3px;
	font-size:14px;
}

.ky-section-title h2{
	font-size:42px;
	color:#111;
	margin:12px 0 0;
}

.ky-categories-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:25px;
}

.ky-category-card{
	position:relative;
	border-radius:14px;
	overflow:hidden;
	height:340px;
	display:block;
	text-decoration:none;
}

.ky-category-card img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	transition:.5s ease;
}

.ky-category-card:hover img{
	transform:scale(1.05);
}

.ky-category-overlay{
	position:absolute;
	inset:0;
	background:linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.75) 100%);
}

.ky-category-name{
	position:absolute;
	left:0;
	right:0;
	bottom:22px;
	text-align:center;
	color:#fff;
	font-size:20px;
	letter-spacing:1px;
	text-transform:uppercase;
	font-weight:600;
}

@media(max-width:991px){
	.ky-categories-grid{
		grid-template-columns:repeat(2,1fr);
	}
}