/* /* blog css start */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;

}

body {
  background-color: #ffffff;
  /* padding: 20px; */
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px;
}

.title {
  font-size: 44px;
  font-weight: 600;
  color: black;
  text-align: center;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  user-select: none;
}

.blog-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #6FB1FF;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 12px;
  color: #333;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.date-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.blog-link {
  position: absolute;
  top: 15px;
  right: 15px;
  /* background: linear-gradient(149.36deg, #cebaf6 18.6%, #f0eef4 145.36%); */
  background: linear-gradient(149.36deg, #FFFFFF 18.6%, #6FB1FF 145.36%);

  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.blog-link svg {
  width: 25px;
  height: 25px;
}

.blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;
  color: white;
}

.blog-title {
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.blog-description {
  font-size: 17px;
  opacity: 0.9;
  line-height: 1.4;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.pagination-item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #1E1F4E;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-item.active {
  background-color: #026AE5;
  color: white;
  border-color: #1a237e;
}

.pagination-item:hover:not(.active) {
  background-color: #f5f5f5;
}

/* blog css end */


@media (max-width: 1400px) {
.blog-title {
        font-weight: 500;
        font-size: 23px !important;
        line-height: 29px;
}
}
@media (max-width: 768px) {
 
  .blog-title {
      font-size: 1.1rem;
      line-height: 1.0;
      display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  } 
  .blog-description {
    font-size: 1rem;
    display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  }
  .blog-card {
    border-radius: 16px;
  }
  .date-icon {
    width: 12px;
    height: 12px;
  }
  .blog-link svg {
    width: 20px;
    height: 20px
  }
  .blog-link {
    width: 30px;
    height: 30px;
  }
  .blog-date {
    padding: 8px 12px;
  }
  .pagination {
    margin-bottom: 30px;
  }
}