.PostCard {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px -2px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
}
.PostCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.PostCard-Thumbnail {
  overflow: hidden;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e5e5;
}
.PostCard-Thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.PostCard-Thumbnail-Placeholder {
  color: #999;
  font-size: 14px;
}
.PostCard__Body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
}
@media screen and (max-width: 980px) {
  .PostCard__Body {
    gap: 8px;
    padding: 14px 16px 16px;
  }
}
.PostCard__Meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .PostCard__Meta {
    gap: 8px;
  }
}
.PostCard-Category {
  border-radius: 9999px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 980px) {
  .PostCard-Category {
    height: 22px;
    padding: 0 8px;
    font-size: 10px;
  }
}
@media screen and (max-width: 980px) {
  .PostCard-Category-Text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.PostCard-Date {
  color: #131313;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-family: Noto Sans Arabic;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .PostCard-Date {
    font-size: 10px;
  }
}
.PostCard-Title {
  display: -webkit-box;
  overflow: hidden;
  color: #131313;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 980px) {
  .PostCard-Title {
    font-size: 16px;
  }
}
