 .blog-article {
    padding: 60px 0;
    background-color: #0F0F15; /* مثل بک‌گراند سایت */
    color: #fff;
    font-family: 'Yekan Bakh', sans-serif;
    text-align: right;
}

.blog-article h2.article-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffba00; /* رنگ طلایی مثل لوگو یا تم سایت */
}

.blog-article p.article-meta {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 30px;
}

.blog-article img.article-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-article h3 {
    font-size: 24px;
    color: #ffba00;
    margin-top: 30px;
}

.blog-article ul {
    list-style-type: disc;
    padding-right: 20px;
}

.blog-article ul li {
    margin-bottom: 10px;
}

.blog-header {
  position: relative;
  width: 100%;
  min-height: 450px;
  background: var(--blog-bg) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* المان‌ها کمی به چپ */
  padding: 0 50px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  box-sizing: border-box;
}


.blog-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 0;
}

.blog-header > * {
  position: relative;
  z-index: 1;
}

.blog-header .breadcrumbs {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.blog-header .breadcrumbs a {
  color: #ffc700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-header .breadcrumbs a:hover {
  color: #fff;
}

.blog-header .breadcrumbs .blog-potato {
  background: #ffc700;
  color: #000;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-header .breadcrumbs .blog-potato:hover {
  background: #ffdf3c;
  color: #000;
}

.blog-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  max-width: 800px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.blog-header .author-date {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start; /* کمی به چپ‌تر */
}

.blog-header .author-date .author,
.blog-header .author-date .date {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 8px;
  background: rgba(0,0,0,0.45);
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-header .author-date .dot {
  color: #ffc700;
  font-weight: 700;
}

.blog-header .author-date .author i {
  color: #ffc700;
}

.blog-header .author-date .author:hover,
.blog-header .author-date .date:hover {
  background: rgba(255,204,0,0.2);
  color: #fff;
  box-shadow: 0 0 12px #ffc700;
}

/* =======================
   Responsive Mobile
======================= */
@media (max-width: 768px) {
  .blog-header {
    padding: 30px 20px;
    min-height: 350px;
    align-items: center; /* موبایل وسط */
    text-align: center;
  }

  .blog-header h1 {
    font-size: 2rem;
    max-width: 100%;
  }

  .blog-header .author-date {
    font-size: 0.9rem;
    gap: 8px;
    justify-content: center;
  }

  .blog-header .breadcrumbs {
    font-size: 0.85rem;
  }
}

.blog-header .author-date .date i {
  margin-right: 6px;
  margin-top: -9px;
  color: #ffc700;
}
