.products .content_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.products .item {
  border: 1px solid #382F39;
  border-radius: 5px;
  overflow: hidden;
  padding-bottom: 30px;
}
.products .container {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 30px;
}
.products .title {
  background-color: #382F39;
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  color: #05ECA7 !important;
}
.products .title h3 {
  margin-bottom: 0;
  font-weight: bold;
}
.products .image {
  margin-bottom: 30px;
}
.products .image img {
  display: block;
  aspect-ratio: 6/4;
  object-fit: cover;
}
.products .copy {
  padding: 0 30px;
}
.products .button-wrapper {
  margin-top: auto;
}
.products .button {
  margin-left: 30px;
}

@media only screen and (max-width: 790px) {
  .products .content_container {
    gap: 20px;
  }
  .products .title {
    padding: 10px 20px;
  }
  .products .copy {
    padding: 0 20px;
  }
  .products .button {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .products .content_container {
    grid-template-columns: 1fr;
  }
}
