.cbl-posts-block {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  font-family: inherit;
}

.cbl-post-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  color: #083aaf;
}

.cbl-post-item h3 {
  font-size: 16px;
  margin-top: 10px;
  color: #083aaf;
  font-weight: bold;
  font-family: inherit;
  line-height: 1.5;
}

.cbl-post-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.cbl-post-item a {
  text-decoration: none;
  color: #083aaf;
}

.cbl-post-item a:hover {
  text-decoration: underline;
}

.cbl-load-more {
  background-color: #083aaf !important;
  color: #fff !important;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .cbl-post-item {
    width: 100% !important;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .cbl-post-item {
    width: calc(50% - 8px) !important;
  }
}

@media (min-width: 1025px) {
  .cbl-post-item {
    width: calc(33.333% - 10px) !important;
  }
}
