.blog-section {
  background-color: #2c3e6b;
  padding: 25px 0;
  text-align: center;
  font-family: sans-serif;
  color: #fff;
  overflow: hidden;
}

.blog-top-text {
  font-size: 14px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.blog-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* কন্টেইনার ১৯২০ এর জন্য আপডেট করা হলো */
.blog-container {
  max-width: 1920px;
  margin: 0 auto;
}

.blog-card {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 30px;
  overflow: hidden;
  /* বড় স্ক্রিনে কার্ডগুলো যাতে খুব বেশি লম্বা না হয়ে যায় তার জন্য */
  max-height: 500px;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-action {
  margin-top: 50px;
}

.read-more-btn {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #fff;
  color: #2c3e6b;
}

/* Swiper Pagination Customization */
.blog-dots {
  position: relative !important;
  margin-top: 40px !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5 !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}

/* রেসপনসিভ ব্রেকপয়েন্ট */
@media (max-width: 1440px) {
  .blog-container {
    max-width: 1440px;
  }
}

@media (max-width: 1024px) {
  .blog-container {
    max-width: 1200px;
    padding: 0 20px;
  }
  .blog-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .blog-card {
    border-radius: 20px;
  }
}
