.kore-cs-recent-posts {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.lazy-background {
  width: 100%;
  /* height: 300px; /* Adjust height as needed */
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0; /* Placeholder background color */
}
.kore-cs-recent-posts .page-width {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.kore-cs-recent-posts .header {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #EBEBEB;
  padding: 20px 0;
}

.kore-cs-recent-posts .header .col {
  flex: 1;
  padding: 0 20px;
  letter-spacing: 3px;
  line-height: 1.2;
}

.kore-cs-recent-posts .header .col:last-child {
  text-align: right;
}

.kore-cs-recent-posts .header .col a { 
  text-decoration: none;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.kore-cs-recent-posts .header .col .title,
.kore-cs-recent-posts .header .col .title * {
  margin-bottom: 0;
}

.kore-cs-recent-posts .post {
  padding: 30px 0;
  margin: 0 -12px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}

.kore-cs-recent-posts .post.text-center {
  text-align: center;
}

.kore-cs-recent-posts .post .post-item {
  padding: 0 12px; 
  flex: 1;
}

.kore-cs-recent-posts .post .post-item .post-featured-image {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.kore-cs-recent-posts .post .post-item .post-featured-image .image {
  min-height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.kore-cs-recent-posts .post .post-item .post-featured-image .image:hover {
  opacity: 0.5; 
  cursor: pointer;
}

.kore-cs-recent-posts .post .post-item .post-title:hover {
  cursor: pointer;
}

.kore-cs-recent-posts .post .post-item .post-topic {
  margin-bottom: 10px;
}

.kore-cs-recent-posts .post .post-item .post-topic .topic-link {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 3px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-weight: 700;
  letter-spacing: 0px;
  text-decoration: none;
  text-transform: uppercase;
	margin-bottom: 5px;
	border: 1px solid #666;
	color: #666;
}

.kore-cs-recent-posts .post .post-item .post-topic .topic-link:hover {
	color: #fff !important;
	border-color: transparent;
	background-color: #23527c;
	opacity: 1;
}

.kore-cs-recent-posts .post .post-item .post-body:hover {
  opacity: 0.8;
  cursor: pointer;
}

@media(max-width:767px) {
  
  .kore-cs-recent-posts .post .post-item {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  
  .kore-cs-recent-posts .header .col {
    flex: 0 0 100%;
  }
  
  .kore-cs-recent-posts .header .col:last-child {
    text-align: left;
    margin-top: 15px;
  }
  
  .kore-cs-recent-posts .post .post-item:last-child {
    margin-bottom: 0;
  }
  
}