.gr-posts-carousel{
	
}
.gr-posts-carousel .swiper-wrapper .swiper-slide{
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 20px;
	border-radius: 20px;
	overflow: hidden;
}
.gr-posts-carousel .swiper-wrapper .swiper-slide .gr-post-carousel-background{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #E4E4E4;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	background-attachment: fixed;
	z-index: -1;
}
.gr-posts-carousel .swiper-wrapper .swiper-slide .gr-post-carousel-image{
	border-radius: 20px;
	overflow: hidden;
	-webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.gr-posts-carousel .swiper-wrapper .swiper-slide:hover .gr-post-carousel-image{
	-webkit-transform: scale(1.05) rotate(2deg);
    transform: scale(1.05) rotate(2deg);
    opacity: .8;
}
.gr-posts-carousel .swiper-wrapper .swiper-slide .gr-post-carousel-content{
	height: 100px;
	background-color: rgba(0,0,0,0.5);
	padding: 15px;
    border-radius: 20px;
	overflow: hidden;
}
.gr-posts-carousel .swiper-wrapper .swiper-slide .gr-post-carousel-content h2{
	color: #fff;
	font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 500;
	margin: 0;
}
.gr-posts-carousel .swiper-wrapper .swiper-slide .gr-post-carousel-meta-data{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	color: #fff;
	font-family: "Roboto", Sans-serif;
	font-size: 13px;
}
.gr-posts-carousel .swiper-wrapper .swiper-slide > a{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}