@import url("https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&family=Hind+Siliguri:wght@300;400;500;600;700&family=Hind:wght@300;400;500;600;700&display=swap");
.blogs-wrapper {
  padding-top: 100px;
  background-color: #7E0202;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blogs-wrapper .border-img {
  width: 100%;
  z-index: 0;
}
.blogs-wrapper .blog-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blogs-wrapper .blog-content .page-title {
  font-size: 64px;
  /*font-family: "Almendra", serif;*/
  font-family:Tangerine;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  line-height: 86px;
  text-align: center;
}
.blogs-wrapper .blog-content .blogs {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 32px;
  width: 100%;
  padding: 32px 0;
}
.blogs-wrapper .blog-content .blogs .card .image {
  width: 100%;
  overflow: hidden;
  height: 300px;
  border-radius: 5px;
  margin-bottom: 32px;
}
.blogs-wrapper .blog-content .blogs .card .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogs-wrapper .blog-content .blogs .card .date {
  font-size: 16px;
  font-family: "Hind Siliguri", serif;
  font-weight: 500;
  color: #ffffff;
}
.blogs-wrapper .blog-content .blogs .card .blog-title {
  font-size: 24px;
  font-family: "Hind Siliguri", serif;
  font-weight: 500;
  line-height: 28px;
  color: #ffffff;
}
.blogs-wrapper .blog-content .load-more-btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  margin-bottom: 69px;
}
.blogs-wrapper .blog-content .load-more-btn:hover {
  transform: scale(1.03);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 870px) {
  .blogs-wrapper .blog-content .blogs {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 600px) {
  .blogs-wrapper .blog-content .blogs {
    grid-template-columns: auto;
  }
}