.single-post-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  direction: rtl;
  font-family: "Tahoma", sans-serif;
}

.post-wrapper {
  display: flex;
  gap: 30px;
}

.main-article {
  flex: 3;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #4da3c4;
  text-decoration: none;
}

.post-header-info h1 {
  color: #2b4360;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.post-meta {
  font-size: 13px;
  color: #999;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.post-meta span {
  margin-left: 20px;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 30px;
}

.post-content-text {
  line-height: 2;
  color: #555;
  text-align: justify;
}

.post-content-text h2 {
  color: #2b4360;
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-content-text ul {
  margin-right: 25px;
  margin-bottom: 20px;
}

.conclusion-box {
  background: #f7fbfe;
  padding: 20px;
  border-right: 5px solid #4da3c4;
  margin-top: 40px;
  border-radius: 10px;
}

/* استایل سایدبار */
.post-sidebar {
  flex: 1;
}

.sidebar-widget {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 16px;
  color: #2b4360;
  border-bottom: 2px solid #4da3c4;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-cloud a {
  background: #e6e6e6;
  color: #555;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  transition: 0.3s;
}

.tags-cloud a:hover {
  background: #4da3c4;
  color: #fff;
}

.info-card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
}

/* واکنش‌گرا برای موبایل */
@media (max-width: 900px) {
  .post-wrapper {
    flex-direction: column-reverse;
  }
  .main-article,
  .post-sidebar {
    flex: none;
    width: 100%;
  }
}
