.cb-relevant-posts {
  margin: 32px 0;
}

.cb-rp-main-title {
  margin: 0 0 8px 0;
}

/* List layout */
.cb-rp-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each item */
.cb-rp-item {
  margin: 0;
}

/* Entire row is clickable */
.cb-rp-link {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-decoration: none;
}

/* Thumbnail wrapper */
.cb-rp-thumb {
  width: 250px;
  flex: 0 0 250px;
  overflow: hidden; /* required for hover scale */
}

/* Image: show entire image, no cropping */
.cb-rp-thumb-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;

  /* Hover animation */
  transition: transform 0.45s ease-in-out;
  transform-origin: center center;
}

/* Fallback if no image */
.cb-rp-thumb-placeholder {
  width: 250px;
  height: 140px;
  background: rgba(0,0,0,0.08);
}

/* Scale image on hover */
.cb-rp-link:hover .cb-rp-thumb-img {
  transform: scale(1.08);
}

/* Content */
.cb-rp-content {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 0;
}

/* Title */
.cb-rp-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.6px;
  margin: 0 0 2px 0;
  padding: 0;
}

/* Date */
.cb-rp-meta {
  font-size: 13px;
  color: #000;
  margin: 0 0 4px 0;
  padding: 0 0 4px 0;
  line-height: 0.9;
}

/* Excerpt */
.cb-rp-excerpt {
  line-height: 1.35;
  color: #000;
  margin: 0;
  padding: 0;
}

/* Hover interaction for title */
.cb-rp-link:hover .cb-rp-title {
  text-decoration: underline;
}
