body {
  background-color: #f6f5f5;
}

.navbar-header {
  background: #13233e;
}

.breadcrumb-bg {
  background: url(../images/blog-bg.webp);
}

.blog {
  padding: 5rem 0;
}

.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-cards__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.blog-cards__card img {
  width: 100%;
  object-fit: cover;
}

.blog-cards__card-content {
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}

.blog-cards__card-content h2 {
  color: #3565b1;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 24px;
}

.blog-cards__card-content p {
  color: #5c5c5c;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .blog-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
