/*--------------------------------------------------------------
# Related Posts Widget
--------------------------------------------------------------*/
.related-posts-widget {
  margin-top: 40px;
}

.related-posts-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600; /* semibold */
  color: var(--main-blue-950);
  margin: 0 0 24px 0;
}

.related-posts-list {
  display: flex;
  flex-direction: column;
}

.related-post-item {
  display: flex;
  align-items: start;
  gap: 16px;
  text-decoration: none;
  padding: 16px 0;
  border-top: 1px solid var(--main-gray-100);
}

.related-post-item:last-child {
  border-bottom: 1px solid var(--main-gray-100);
}

.related-post-thumbnail img {
  width: 95px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.related-post-title {
  font-size: 16px;
  font-weight: 600; /* semibold */
  color: var(--main-blue-950);
  margin: 0;
  line-height: 1.4;
  width: 65%;
}
