.custom_blog {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.custom_blog .section_title {
  margin: 0;
  padding: 0;
  font-size: 36px;
  line-height: 1.1;
}
.custom_blog .cb_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custom_blog .cb_wrapper .cb_posts_wrapper .cb_post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dadada;
}
.custom_blog .cb_wrapper .cb_posts_wrapper .cb_post:not(:last-child) {
  margin-bottom: 20px;
}
.custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__thumbnail {
  width: 360px;
  height: auto;
  aspect-ratio: 360/250;
  flex-shrink: 0;
}
.custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__content .title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 1.2;
}
.custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__content .excerpt {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.5;
  color: #959595;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__content .date {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  text-transform: lowercase;
  color: #959595;
}
.custom_blog .cb_wrapper .cb_pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.custom_blog .cb_wrapper .cb_pagination .load-more-posts {
  background-color: transparent;
  border: 2px solid #3e3e3e;
  color: #3e3e3e;
  border-radius: 40px;
  font-size: 16px;
  letter-spacing: 0.33px;
  padding: 16px 40px;
  cursor: pointer;
}
.custom_blog .cb_wrapper .cb_pagination .default_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom_blog .cb_wrapper .cb_pagination .default_pagination > * {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom_blog .cb_wrapper .cb_pagination .default_pagination > *.ajax_active, .custom_blog .cb_wrapper .cb_pagination .default_pagination > *.current {
  pointer-events: none;
  color: #000;
}

@media (max-width: 1199px) {
  .custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__thumbnail {
    width: 320px;
    aspect-ratio: 320/210;
  }
}
@media (max-width: 899px) {
  .custom_blog {
    gap: 20px;
  }
  .custom_blog .section_title {
    font-size: 28px;
    line-height: 1;
  }
  .custom_blog .cb_wrapper .cb_posts_wrapper .cb_post {
    flex-direction: column;
    gap: 15px;
  }
  .custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__thumbnail {
    width: 100%;
    aspect-ratio: 540/360;
  }
  .custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__content .title {
    font-size: 16px;
  }
  .custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__content .excerpt {
    margin-top: 20px;
    font-size: 12px;
  }
  .custom_blog .cb_wrapper .cb_posts_wrapper .cb_post__content .date {
    margin-top: 10px;
    font-size: 12px;
  }
  .custom_blog .cb_wrapper .cb_pagination {
    gap: 20px;
  }
  .custom_blog .cb_wrapper .cb_pagination .load-more-posts {
    font-size: 14px;
    padding: 12px 32px;
  }
  .custom_blog .cb_wrapper .cb_pagination .default_pagination > * {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}