.bg_blog {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.bg_blog::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
}

.bg_blog .hero_cont_ {
  max-height: 500px;
  min-height: 350px;
}
.skeleton-card {
  height: 250px;
  border-radius: 10px;
  background: linear-gradient(90deg, #eee, #ddd, #eee);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}
.blog-card .blog-card__content--description p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/* blog list */
.featured-posts .col-lg-4:first-child {
  width: 100% !important;
}
.featured-posts .col-lg-4:first-child a {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.featured-posts .col-lg-4:first-child a .blog-card__content {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 16px;
  padding: 30px 80px 30px 30px;
}
.featured-posts .col-lg-4:first-child a .blog-card__image {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 16px;
  height: 300px;
}
.featured-posts .col-lg-4:first-child a h2 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.featured-posts .col-lg-4:first-child a .card-date {
  display: block;
}
.featured-posts .col-lg-4:first-child a .blog-card__content--description {
  font-size: 16px;
  line-height: 1.5;
}
.blog-pagination__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}
.blog-pagination__nav a {
  display: block;
  padding: 4px 8px;
  color: #8d8d92;
}
.blog-pagination__nav .current {
  border-bottom: 1px solid #1c1d24;
  color: #1c1d24;
}
/* make */
/* .make_it{
    background: #edf4fe;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding: 6rem 0;
} */
.container.md {
  max-width: 1080px !important;
}
.mt-80 {
  margin-top: 80px !important;
}

@media (max-width: 767px) {
  .bg_blog .hero_cont_ {
    max-height: 350px;
    min-height: auto;
  }
  .featured-posts .col-lg-4:first-child a {
    display: grid;
    grid-template-columns: 1fr;
  }
  .featured-posts .col-lg-4:first-child a .blog-card__content {
    padding: 8px 0 18px;
  }
}
@media (max-width: 479px) {
  .bg_blog .hero_cont_ {
    max-height: 300px;
  }
}
