.custom-blog-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cbl-post {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

/* Date box */
.cbl-date {
  width: 80px;
  height: 80px;
  background: #6284B2;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 6px;
  flex-shrink: 0;
}
.cbl-date .day {
  font-size: 1.2rem;
  line-height: 1;  
  margin-bottom: 4px;
}
.cbl-date .month {
  font-size: 1.08rem;
  line-height: 1;
  margin-bottom: 4px;
}
.cbl-date .year {
  font-size: 0.96rem;
  line-height: 1;
  margin-bottom: 0px;
}

/* Content area */
.cbl-content {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #111;
}
.cbl-content h3 {
  margin-top: 0.0rem;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  text-decoration: none;
  font-family: "Bree Serif";
}
.cbl-content h3 a {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  font-family: "Bree Serif";
}
.cbl-content h3 a:hover {
  color: #6284B2;
  text-decoration: underline;
  text-decoration: none;
}
.cbl-content .excerpt {
  margin-top: 0.8rem;
  color: #333;
}

/* Thumbnail 
.cbl-thumbnail {
  margin: 0.25rem 0 0.75rem;
  width: 150px;
}*/
/* Thumbnail */
.cbl-thumbnail {
  margin: 0.25rem 0 0.75rem;
/*   flex: 0 0 350px; was 150px, now a bit bigger */
  width: 100%;  /* takes up a nice chunk on laptop screens */
}

.cbl-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}
/*
.cbl-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
} */

/* Read more link */
.cbl-read-more {
  display: inline-block;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  font-weight: bold;
  color: #6284B2;
  text-decoration: none;
}
.cbl-read-more:hover {
  text-decoration: underline;
}

/* Pagination */
.cbl-pagination {
  text-align: center;
  margin-top: 2rem;
}
.cbl-prev-posts {
  background: #6284B2;
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
}
.cbl-prev-posts:hover {
  background: #6284B2;
  color: white !important;
}

@media (max-width: 640px) {
    .cbl-thumbnail {
        width: 100%;
        margin-top: 0.5rem;
    }
}
