.post-card {
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
}

.post-card__image img {
  width: 100%;
  height: auto;
  display: block;
  height: 280px;
  object-fit: cover;
}

.post-card__content {
  padding: 15px 20px;
}

.post-card__meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.post-card__cat {
  font-weight: bold;
}

.post-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.post-card__link {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.post-card__link span {
  margin-left: 5px;
}
.post-card {
  background: #f9f9f9;
  transition: 0.3s;
}
.post-card:hover {
  transform: translateY(-10px);
  transition: 0.3s;
}
.post-title {
  margin-bottom: 10px;
}
