.blog {
  padding: 5rem 0;
  background: linear-gradient(0deg, #000 0%, #121212 100%);
}

.blog span {
  display: block;
  color: #e7e7e7;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog p {
  color: #737373;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.64px;
  max-width: 590px;
}

.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 32px;
  margin-top: 80px;
}

.blog-cards__card {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
}

.blog-cards__card-content {
  background-color: #121212;
  padding: 24px;
  height: 100%;
}

.blog-cards__card-content h3 {
  color: #e7e7e7;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}

.blog-cards__card-content p {
  color: #5d5d5d;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
}

.blog-cards__card-content span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (min-width: 550px) {
  .blog-cards {
    grid-template-columns: 1fr 1fr;
  }
  .blog-cards__card-content {
    padding: 32px;
  }
}

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

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