.blog {
  padding: 6.25rem 0 6.5rem 0;
  margin-top: -6.25rem;
  border-radius: 50px 50px 0px 0px;
  background: #f4f7f8;
}

.blog .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 74px;
}

.blog .card img {
  display: block;
  width: 100%;
  border-radius: 20px 20px 0px 0px;
}

.blog .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.blog .card .card-content {
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 0px 0px 20px 20px;
  background: #fff;
  width: 100%;
  flex: 1;
}

.blog .card .badge {
  display: flex;
  padding: 0 24px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--Foundation-Blue-Light, #e6f5fb);
}

.blog .card .badge p {
  color: var(--Foundation-Blue-Darker, #00354a);
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  max-width: 100%;
  line-height: normal;
}

.blog .card h3 {
  color: var(--Neutro-900, #191b1f);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
}

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

@media (max-width: 767px) {
  .blog .cards {
    grid-template-columns: 1fr;
  }
}
