/* Post Card Component */
.post-item {
  background-color: white;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.post-item:hover {
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: rgba(5, 150, 105, 0.2);
}

.post-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.post-item-type {
  font-size: 14px;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 6px;
}

.post-item-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.post-item-author {
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.post-author-profile-image {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}

.post-author-profile-fallback {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.post-author-name {
  display: inline;
}

.post-item-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.post-meta-item .icon {
  font-size: 17px;
  color: #94a3b8;
}

.post-item-time {
  margin-left: auto;
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}

/* 반응형 */
@media (max-width: 768px) {
  .post-item {
    padding: 16px;
  }

  .post-item-title {
    font-size: 18px;
  }

  .post-item-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .post-item-time {
    margin-left: 0;
    width: 100%;
  }
}