/* -------------------- بلاگ سکشن -------------------- */

.blog-section {
  background: #fff;
  direction: rtl;
}

.section-title {
  font-size: 2rem;
  color: #001f52;
  margin-bottom: 2.3rem;
  letter-spacing: -0.5px;
}

.brand-orange {
  color: #ff5e13;
}

/* -------------------- کارت بلاگ -------------------- */

.blog-card {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px #001f5220;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 32px #ffbe5930;
  transform: translateY(-4px);
}

/* -------------------- تصویر بلاگ -------------------- */

.blog-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: filter 0.2s ease;
}

.blog-card:hover .blog-img {
  filter: brightness(0.95) blur(0.3px);
}

/* -------------------- محتوای کارت -------------------- */

.blog-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1rem 0 1rem;
}

/* -------------------- عنوان و متن -------------------- */

.blog-title {
  color: #001f52;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.blog-excerpt {
  color: #333;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -------------------- دکمه مطالعه -------------------- */

.blog-btn {
  display: block;
  width: 100%;
  background: #ffbe59;
  color: #001f52 !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  padding: 0.6rem 0;
  border: none;
  border-radius: 0 0 16px 16px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  margin-top: auto;
}

.blog-btn:hover {
  background: #fffbe6;
  color: #ff5e13 !important;
}

/* -------------------- دکمه همه مقالات -------------------- */

.blog-btn-all {
  background: #001f52;
  color: #fff !important;
  font-size: 1rem;
  padding: 0.5em 1.7em;
  border-radius: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 10px #001f521a;
}

.blog-btn-all:hover {
  background: #ff5e13;
  color: #fff !important;
}

/* -------------------- Swiper سفارشی موبایل -------------------- */

.blog-swiper .swiper-slide {
  height: auto;
}

/* -------------------- ریسپانسیو -------------------- */

@media (max-width: 991px) {
  .section-title {
    font-size: 1.5rem;
  }

  .blog-title {
    font-size: 0.98rem;
  }

  .blog-excerpt {
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
  }

  .blog-btn {
    font-size: 0.85rem;
    padding: 0.55rem 0;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.3rem;
  }

  .blog-btn-all {
    font-size: 0.95rem;
    padding: 0.5em 1.4em;
  }

  .blog-excerpt {
    -webkit-line-clamp: 4;
  }
}
