.card_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card_container .wrapper {
  width: 80%;
  max-width: 1300px;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card_container .wrapper a.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.card_container .wrapper a.card {
  text-decoration: none;
  color: #333;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}

.card_container .wrapper a.card:only-child {
  max-width: 300px;
}


.card_container .wrapper a.card div {
  width: 100%;
  aspect-ratio: 733 / 521;
  object-fit: cover;
  border-radius: 3px;
  overflow: hidden;
}

.card_container .wrapper a.card div img {
  width: 100%;
  height: 100%;
  aspect-ratio: 733 / 521;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card_container .wrapper a.card div img:hover {
  transform: scale(1.05);
}

.card_container .wrapper a.card article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5px;
}


.card_container .wrapper a.card article h2 {
  font-size: 1.1rem;
  font-family: 'Roboto';
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card_container .wrapper a.card:hover article h2 {
  color: rgb(32, 166, 255);
}

.card_container .wrapper a.card article p {
  font-size: 1rem;
  font-family: 'Nunito';
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media(max-width:1200px) {
  .card_container .wrapper {
    width: 90%;
  }
}


@media(max-width:991px) {
  .card_container .wrapper {
    width: 95%;
  }
}