.component-post-list {
  margin-bottom: 16px;

  &:last-child {
    margin-bottom: 0;
  }
}

.component-post-list__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.component-post-list__header {
  display: flex;
}

.component-post-list__title {
  font-size: var(--heading-xsmall);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.5em * 2);
}

.component-post-list__thumbnail {
  width: 107px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--border-radius-primary);

  img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .component-post-list__title {
    -webkit-line-clamp: 3;
    max-height: calc(1.5em * 3);
  }
}
