.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: gray;
  margin-top: 5px;
}

.post-author {
  color: var(--color-soft-dark-gray);
}

.post-date {
  font-style: italic;
  color: #aaa;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.long-post-excerpt {
  color: #333;
  font-size: 14px;
  color: gray;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 최대 3줄 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 8.0em; /* (1.8em * 3줄) */
  line-height: 1.8em;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
}

.post-tags {
  display: flex;
  gap: 6px;
}

a.post-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-dark-gray);
}

.post-thumbnail {
  border: 0.5px solid var(--color-warm-white);
  order: 2;
  width: 200px;
  height: 130px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  flex-shrink: 0;
  align-self: center;
}

.post-item:hover {
  background-color: rgba(2, 2, 2, 0.1); /* 투명도를 0.2 이상으로 조정 */
  border-color: rgba(2, 2, 2, 0.3);
  cursor: pointer;
  padding: 12px;
  margin: 5px;
  border-radius: 16px;
  transform: scale(1.05);
  transition: all 0.15s ease-in-out;
}

.post-item {
  display: flex;
  align-items: stretch;
  gap: 16px;
  color: inherit;
  margin-bottom: 20px;
  border-radius:  10px;
  text-decoration: none;
}

.post-content {
  order: 1;
  flex-grow: 1;
}

.post p  {
  font-size: 20px;
}