.sticky-posts__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 80px;
}




/* Sticky posts - columns - first column*/
.sticky-posts__column:last-child {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

/* Posts view in first column */
.sticky-posts__column:first-child .sticky-posts__post {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}






/* Sticky posts - columns - second column*/
.sticky-posts__column:last-child {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

/* Posts view in second column */
.sticky-posts__column:last-child .sticky-posts__post {
	display: flex;
	column-gap: 30px;
}

.sticky-posts__column:last-child .sticky-post__thumbnail {
	height: 200px;
	max-height: 200px;
	min-height: 200px;
	max-width: 230px;
	width: 100%;
}

.sticky-posts__column:last-child .sticky-post__excerpt {
	display: none;
}




/* Thumbnail */
.sticky-post__thumbnail {
	overflow: hidden;
	display: flex;
}

.sticky-post__thumbnail,
.sticky-post__thumbnail .sticky-post__thumbnail--image {
	border-radius: 16px;
	transition: .5s ease;
	object-fit: cover;
}

/* Thumbnail effect on hover */
.sticky-posts__post:hover .sticky-post__thumbnail--image {
	transform: scale(1.1);
	transition: .5s ease;
}




/* Category */
.sticky-posts__post .sticky-post__categories,
.sticky-posts__post .sticky-post__categories * {
	color: #7ACD17;
}


/* Post meta */
.sticky-posts__post .sticky-post__meta {
	display: flex;
	column-gap: 1rem;
}

.sticky-posts__post .sticky-post__meta *{
	font-size: 12px;
	color: #7ACD17;
	font-weight: 500;
	margin: 0;
}

/* Excerpt */
.sticky-posts__column .sticky-post__excerpt {
	color: #212121;
	opacity: .8;
}


/* First col overrides */
.sticky-posts__column:first-child .sticky-post__categories {
	font-size: 24px;
}

.sticky-posts__column:first-child .sticky-post__title {
	font-size: 32px;
}

.sticky-posts__column:first-child .sticky-post__read-more {
	display: none;
}

.sticky-posts__column:first-child .sticky-post__meta {
	display: none;
}

.sticky-posts__column:first-child .sticky-post__details {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
}

.sticky-posts__column:first-child .sticky-post__categories,
.sticky-posts__column:first-child .sticky-post__title,
.sticky-posts__column:first-child .sticky-post__excerpt,
.sticky-posts__column:first-child .sticky-post__user-details {
	margin: 0;
}

.sticky-posts__column:first-child .sticky-post__user-details {
	color: #212121;
}





/* Second col overrides */
.sticky-posts__column:last-child .sticky-post__categories {
	font-size: 13px;
	margin: 0;
}

.sticky-posts__column:last-child .sticky-post__user-details {
	display: none;
}

.sticky-posts__column:last-child .sticky-post__title {
	font-size: 18px;
}

.sticky-posts__column:last-child .sticky-post__details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}



/* Media query */
@media screen and (max-width:1199px) {
	.sticky-posts__container {
		display: flex;
		flex-direction: column;
		row-gap: 3rem;
	}

	.sticky-posts__column:first-child .sticky-post__details {
		row-gap: 1rem;
	}
	

	.sticky-posts__column:last-child .sticky-post__thumbnail {
		width: 50%;
		min-width: 50%;
		max-width: 50%;
		height: 300px;
		min-height: 300px;
		max-height: 300px;
	}

	.sticky-posts__column:last-child .sticky-post__thumbnail .sticky-post__thumbnail--image {
		width: 100%;
	}
}

@media screen and (max-width:767px) {
	.sticky-posts__column:last-child .sticky-posts__post {
		flex-direction: column;
		row-gap: 1rem;
	}

	.sticky-posts__column:last-child .sticky-post__thumbnail {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		height: 250px;
		min-height: 250px;
		max-height: 250px;
	}
}
