    /* کانتینر کلی */
.post-container {
  margin: 40px auto;
  padding: 0 15px;
}

/* مقاله پست */
.post-article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.post-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* هدر پست */
.post-header {
  margin-bottom: 20px;
}

.post-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.post-meta {
  font-size: 14px;
  color: #777;
}

/* محتوای پست */
.post-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

/* لینک‌ها داخل پست */
.post-content a {
  color: #0073aa;
  text-decoration: underline;
}

.post-content a:hover {
  color: #005f8d;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .post-article {
    padding: 20px;
  }

  .post-title {
    font-size: 24px;
  }

  .post-content {
    font-size: 16px;
  }
}