.all-blog-sec {
  background-color: #d2b089;
}

/* All Blog Header */
.all-blog-header .heading {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 35px;
  color: #000;
}

.all-blog-header .content {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  /* font-size: 18px; */
  font-size: clamp(1rem, 0.9536rem + 0.1905vw, 1.125rem);
  line-height: 27px;
  color: #000;
}

.all-blog-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* All Blog Container - Date */
.all-blog-container .date {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000;
}

/* All Blog Container - Heading */
.all-blog-container .heading {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  /* font-size: 22px; */
  font-size: clamp(1.125rem, 1.0321rem + 0.381vw, 1.375rem);
  line-height: 30px;
  transition: color 0.3s ease;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

/* All Blog Container - Content */
.all-blog-container .content {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  /* font-size: 16px; */
  font-size: clamp(0.875rem, 0.8286rem + 0.1905vw, 1rem);
  line-height: 24px;
}

/* All Blog Container - Learn More */
.all-blog-container .learn-more {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  transition: color 0.3s ease;
  color: inherit;
  text-decoration: none;
}

.all-blog-container .heading:hover {
  color: #42a5a7;
}

.all-blog-container .learn-more:hover {
  color: #42a5a7;
}

.all-blog-container .blog-image {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.all-blog-container .blog-image img {
    width: 100%;
    height: 250px; /* Adjust as needed */
    object-fit: cover;
    transition: transform .4s ease;
}

.all-blog-container:hover .blog-image img {
    transform: scale(1.05);
}

/* ==========================================================================
   Blog Pagination Styles
   ========================================================================== */
.blog-pagination-nav {
  display: flex;
  justify-content: center;
}

.blog-pagination-nav .pagination .page-item .page-link {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.blog-pagination-nav .pagination .page-item.active .page-link,
.blog-pagination-nav .pagination .page-item .page-link:hover {
  background-color: #42a5a7;
  color: #ffffff;
  border-color: #42a5a7;
  box-shadow: 0 4px 12px rgba(66, 165, 167, 0.25);
}

.blog-pagination-nav .pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #e9ecef;
}

@media (max-width: 767px) {
  .all-blog-container .content {
    line-height: normal;
  }
}
