/* BLOG CARD - Ensure Read More stays at bottom */
.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* Title */
.post-card .post-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Date */
.post-card .post-date {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 12px;
}

/* Excerpt (flex item but no need for special rules) */
.post-card .post-excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 16px;
}

/* READ MORE BUTTON */
.post-card .read-more {
  margin-top: auto; /* 🔥 Pushes to bottom */
  display: inline-block;
  padding-top: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0077cc;
  text-decoration: none;
}

/* Hover effect */
.post-card .read-more:hover {
  text-decoration: underline;
}

/* Optional: For RTL Arabic posts (automatic if using dir="rtl") */
[dir="rtl"] .post-card .read-more {
  text-align: left;
}
