.cm-blog-listing {
  padding-top: 90px;
}

.cm-blog-listing .cm-lists {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}

.cm-blog-listing .cm-lists .cm-articles {
  margin-bottom: 60px;
}

.cm-blog-listing .cm-articles .cm-post-item {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.cm-blog-listing .cm-articles .post-fimg {
  display: block;
  margin-right: 30px;
  width: 300px;
}

.cm-blog-listing .cm-articles  .cm-post-content {
  width: 50%;
}

.cm-blog-listing .cm-articles .cm-post-date {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.4;
  margin: 0px 0px 10px;
  color: #2f313c;
}

.cm-blog-listing .cm-articles  h3 {
  margin: 0px 0px 24px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: bold;
}

.cm-blog-listing .cm-articles .readMore {
  color: rgb(69, 214, 149);
  font-weight: 500;
  font-size: 16px;
}

.cm-blog-listing .cm-articles .cm-post-item:hover .readMore {
  color: rgb(44, 198, 129);
}
.cm-blog-listing .custom-pagination {
  margin-bottom: 80px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.cm-blog-listing .custom-pagination a {
  border: 1px solid transparent;
  background-color: rgb(69, 214, 149);
  color: rgb(255, 255, 255);
  display: inline-block;
  border-radius: 500px;
  text-align: center;
  font-weight: 500;
  transition: all 0.4s ease 0s;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  white-space: nowrap;
  text-decoration: none;
  padding: 16px 24px;
  position: relative;
  line-height: 1;
}

.cm-blog-listing .custom-pagination a:hover {
  background-color: rgb(44, 198, 129);
  color: rgb(255, 255, 255);
}

.cm-blog-listing .custom-pagination a.blog-pagination__prev-link--disabled,
.cm-blog-listing .custom-pagination a.blog-pagination__next-link--disabled {
  display: none;
}

.cm-blog-listing .custom-pagination a.cm-next {
  margin-left: auto;
}
.cm-blog-listing .cm-lists .cm-articles:last-child {
  margin-bottom: 0;
}


@media (max-width:767px) {
  .cm-blog-listing {
    padding-top: 50px;
  }

  .cm-blog-listing .cm-articles .cm-post-content {
    width: 100%; 
  }

  .cm-blog-listing .cm-articles h3 {
    font-size: 26px;
  }

  .cm-blog-listing .custom-pagination a { 
    padding: 12px 18px;
  }
}
@media (max-width:575px) {
  .cm-blog-listing .page-center {
    padding: 0 30px;
  }

  .cm-blog-listing .cm-articles .cm-post-item {
    flex-wrap: wrap;
  }

  .cm-blog-listing .cm-articles .post-fimg {
    width: 100%;
    margin-bottom: 30px;
  }
}