.blog {
  padding: 5rem 0;
  background: #f5f4f7;
}

.blog-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.blog-article {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  box-shadow: 0px 3.99px 16.76px 0px rgba(0, 0, 0, 0.11);
}

.blog-article img {
  border-radius: 20px 20px 0 0;
  width: 100%;
  object-fit: cover;
  max-height: 210px;
}

.blog-article__content {
  padding: 24px;
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 20px 20px;
}

.blog-article__content h3 {
  color: #090e22;
  font-family: "Exo2", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

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