.blog-listings-repeater {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.blog-tags-filter-wrap {
  margin: 0 auto;
  padding: 0 20px 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.blog-card {
  height: 100%;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.1);
  border-radius: 0px;
  border: 0 solid #fff;
}
.blog-featured-image-link {
  position: relative;
  display: block;
  height: 202px;
  background-color: var(--dark-gray-color);
  overflow: hidden;
  border-radius: 0;
}
.blog-featured-image-link > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: auto;
  object-fit: cover;
  transition: all .4s ease;
  -moz-transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -ms-transition: all .4s ease;
}
.blog-featured-image-link:hover > img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.blog-card-content {
  flex: 1 0 200px;
  padding: 30px 20px 20px;
  position: relative;
}

.blog-title {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-shadow: none;
  font-family: var(--secondary-font);
  min-height: 78px;
}

.blog-title > a:hover {
  color: var(--link-hover-color);
}

.blog-meta {
  padding: 4px 0;
  line-height: 26px;
  font-weight: 600;
  margin: 0;
  font-family: var(--secondary-font);
  font-size: 14px;
  color: var(--tertiary-color);
}

.blog-desc {
  padding: 6px 0;
  line-height: 20px;
  font-weight: 300;
  color: var(--black-color);
  margin: 0;
  font-family: var(--secondary-font);
  font-size: 14px;
}

.blog-card-content .blog-readmore {
  margin: 14px 0 0;
  padding: 0;
}

.blog-listings-repeater > .filter-item {
  position: relative;
  margin-bottom: 40px;
  margin-right: 20px;
  margin-left: 20px;
}
.blog-listings-repeater > .filter-item .filter-opt {
  padding-left: 20px;
}

.blog-tags-filter {
  max-width: calc(33.33% - 26px);
  flex-basis: calc(33.33% - 26px);
}

.blog-tags-filter #filters-2 {
  padding: 0 30px 0 10px;
  border-radius: 0;
  font-weight: 700;
  height: 50px;
  font-size: 20px;
  border: 0 none;
  border-bottom: 1px solid var(--primary-color);
  color: #0b3c5d;
  width: 100%;
}

.blog-filter-search {
  flex-basis: calc(33.33% - 30px);
  max-width: calc(33.33% - 30px);
}

.load-more-btn-wrapper {
  padding: 0 0 40px;
  text-align: center;
}
#load-mores {
  transition: 0.3s ease all;
  cursor: pointer;
}
#load-mores:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
#load-mores::before {
  display: none;
}

.blog-filter-search input {
  width: 100%;
  padding: 7px 35px 8px 10px;
  background-color: #efefef;
  height: 50px;
  font-size: 20px;
  border: 0 none;
  color: #0b3c5d;
}

.blog-card-content .blog-index__post-button {
  margin-top: 14px;
  display: block;
}
   .blog-listings-repeater {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
     height: auto !important;
}
 @media screen and (min-width:661px) {
   {#
   .blog-listings-repeater {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }

  .blog-listings-repeater > .col {
    width: calc(50% - 40px);
  }
  .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #}

  .blog-listings-repeater > .col {
    width: 100% !important;
  }
} 

@media (max-width: 1024px){
  .blog-listings-repeater > .col {
	width: 100% !important;
	margin: 0;
}
  .blog-listings-repeater {
	grid-template-columns: repeat(2,1fr);
}
}
@media screen and (max-width:1200px) {
}

@media screen and (min-width:992px) {
  .blog-listings-repeater > .col {
/*     width: calc(33.333% - 40px); */
    flex-direction: row;
  }
}

@media screen and (max-width:991px) {
  .blog-tags-filter,
  .blog-filter-search {
    max-width: calc(50% - 20px);
    flex-basis: calc(50% - 20px);
  }
  .blog-featured-image-link > img {
    height: unset;
  }
}

@media screen and (max-width:768px) {
  .blog-listings-repeater > .col {
    margin-bottom: 40px;
  }
  .blog-card-content {
    flex: 1 0 100px;
  }
  .blog-featured-image-link > img {
    width: 100%;
  }
  .blog-title {
    font-size: 18px;
    line-height: 26px;
    height: 130px;
  }
    .blog-listings-repeater {
	grid-template-columns: repeat(1,1fr);
	gap: 30px;
}
}

@media screen and (max-width:660px) {
  .blog-tags-filter-wrap {
    padding: 0 0 40px;
  }
  .blog-listings-repeater > .col {
    width: 100%;
  }
  .blog-listings-repeater > .filter-item {
    margin-left: 0;
    margin-right: 0;
  }
  .blog-title {
    font-size: 20px;
    line-height: 28px;
    height: unset;
  }
  .blog-tags-filter-wrap {
    display: block;
  }
  .blog-tags-filter,
  .blog-filter-search {
    width: 100%;
    max-width: unset;
  }
  .blog-filter-search {
    margin-top: 32px;
  }
}