blog-library .blogs-wrapper {
  min-height: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 10px;
}
blog-library .blogs-wrapper .blog-card {
  flex: 1 1 30%;
  max-width: 300px;
  border-radius: 8px;
  text-decoration: none;
  background: white;
  transition-duration: 0.2s;
  min-width: 250px;
  height: 395px;
}
blog-library .blogs-wrapper .blog-card .image-wrapper {
  height: 200px;
}
blog-library .blogs-wrapper .blog-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0px 0px;
}
blog-library .blogs-wrapper .blog-card .card-body {
  padding: 10px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
blog-library .blogs-wrapper .blog-card .card-body .title {
  font-weight: 600;
  font-size: 14pt;
  height: 50px;
  text-overflow: ellipsis;
  max-width: 300px;
  overflow: hidden;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
}
blog-library .blogs-wrapper .blog-card .card-body .description {
  font-size: 10pt;
  height: 50px;
  text-overflow: ellipsis;
}
blog-library .blogs-wrapper .blog-card .card-body .author-section {
  padding: 3px 10px;
  background: #e5e8ed;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  font-size: 8pt;
  position: relative;
}
blog-library .blogs-wrapper .blog-card .card-body .author-section .author-image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  bottom: 0px;
}
blog-library .blogs-wrapper .blog-card .card-body .author-section .author-image-wrapper img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: white;
  background: #011f46;
  padding: 2px;
}
blog-library .blogs-wrapper .blog-card .card-body .author-section .author-image-wrapper {
  background: white;
}
blog-library .blogs-wrapper .blog-card:hover {
  opacity: 0.9;
}
@media (max-width: 800px) {
  blog-library .blogs-wrapper .blog-card {
    max-width: unset;
  }
}
blog-library .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
blog-library .pagination .prev-page-wrapper, blog-library .pagination .next-page-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  text-decoration: none;
}
blog-library .pagination .prev-page-wrapper.disabled, blog-library .pagination .next-page-wrapper.disabled {
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
blog-library .pagination .prev-page-wrapper .nav-text, blog-library .pagination .next-page-wrapper .nav-text {
  font-size: 14px;
  color: #011f46;
}
blog-library .pagination .prev-page-wrapper .icon-holder, blog-library .pagination .next-page-wrapper .icon-holder {
  border-radius: 500%;
  background: var(--grey-colour);
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-colour);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16pt;
  cursor: pointer;
}
blog-library .pagination .pages-list {
  display: flex;
  gap: 0.5rem;
}
blog-library .pagination .pages-list .page-number {
  border-radius: 500%;
  background: var(--grey-colour);
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-colour);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 12pt;
  cursor: pointer;
}
blog-library .pagination .pages-list .page-number.active {
  background: var(--primary-colour);
  color: #fff;
}
blog-library .pagination .pages-list .page-number.disabled {
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
blog-library .pagination .pages-list.disabled .page-number {
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 700px) {
  blog-library .pagination {
    flex-wrap: wrap;
  }
  blog-library .pagination .prev-page-wrapper {
    order: 0;
  }
  blog-library .pagination .next-page-wrapper {
    order: 1;
  }
  blog-library .pagination .pages-list {
    order: 2;
    justify-content: center;
    width: 100%;
    margin-block: 1rem;
  }
}
