.wrapper {
  width: 100%;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.card {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}

.descriptionBox {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  width: 50%;
}

.headerRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.identity {
  display: flex;
  gap: 15px;
  justify-items: space-between;
}

.avatar {
  border-radius: 50%;
}

.name {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.meta {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.time {
  margin: 0;
  font-size: 12px;
  color: gray;
}

.link {
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.menuBtn {
  font-size: 22px;
  cursor: pointer;
}

.content {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

.readMore {
  font-size: 14px;
  margin-top: 10px;
  color: #7cc4ff;
  cursor: pointer;
}

.joinBtn {
  margin-top: 10px;
  padding: 5px 12px;
  font-size: 13px;
}

.likeRow {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.like {
  font-size: 14px;
  cursor: pointer;
}

.commentCount {
  font-size: 13px;
  color: #a3a5a9;
  font-weight: 400;
}

.actionButton {
  padding: 10px;
  font-weight: 500;
  border-radius: 50px;
}

.container {
  position: relative;
  display: inline-block;
}

.moreIcon {
  cursor: pointer;
  color: #888;
}

.menuBox {
  position: absolute;
  top: 28px;
  right: 0;
  width: 160px;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.08);
  z-index: 20;
  animation: fadeIn 0.2s ease;
}

.menuItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
}

.menuItem:hover {
  background: #f7f7f7;
}

.icon {
  font-size: 16px;
  color: #666;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.moreIcon:hover {
  color: #444;
  transform: scale(1.08);
  transition: 0.15s ease;
}

.postBtn {
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 50px;
  background-color: #1e42dd;
}
