.post-card {
  background-color: var(--post-card-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 12px 16px 12px;
  border-radius: 16px;
  box-shadow: 0px 0px 12px 0px var(--post-card-shadow);
  transition: all 0.3s;
}

.post-card:hover {
  box-shadow: 0px 0px 12px 0px var(--post-card-shadow-hover);
  /* outline: 1px solid var(--post-card-border-hover); */
}

.post-card:hover .post-card__image img {
  scale: 108%;
}

.post-card-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
}

.post-card__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.post-card__header {}

.post-card__title {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: var(--post-card-title);
}

.post-card__body {}

.post-card__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--post-card-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more {}

.post-card__footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #8051FF33;
  border: 1px solid #0000000F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card__avatar svg {
  width: 24px;
  height: 24px;
  color: #9767E1;
}

.post__author-date {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.post-card__author-name {
  color: var(--post-card-author);
  font-size: 14px;
  font-weight: 400;
}

.post-card__date {
  color: var(--post-card-date);
  font-size: 14px;
  font-weight: 400;
}

.read-more-icon {}

.post-card__footer-left {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: var(--post-card-read-more-bg);
  border: 1px solid var(--post-card-read-more-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card__footer-left:hover {
  background-color: #9767E1;
}

.post-card__footer-left svg {
  color: #9767E1;
  width: 34px;
  height: 34px;
}

.post-card__footer-left:hover svg {
  color: #ffffff;
}