.blog-home-container {
  display: flex;
  flex-direction: column;
  max-width: 1320px;
  margin: auto;
}

.blog-home-products {
  display:flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c0a56e;
}

.blog-home-product {
  display: flex;
}

.blog-home-product-img {
  max-width: 133px;
  overflow: hidden;
}

.blog-home-product-img img {
  max-height: 450px;
  position: relative;
  right: 120%;
}

.blog-home-product-content {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  text-align: center;
  align-items: stretch;
  padding: 3% 10%;
  width: 227px;
}

.blog-home-product-title {
  color: #c51d3b;
  font-family: Georgia, "Arial";
  font-size: 18px;
  font-style: italic;
  margin-bottom: 8px;
  font-weight: bold;
}

.blog-home-product-subtitle {
  width: 100%;
  color: #3e3d40;
  font-family: Georgia, "Arial";
  font-size: 13px;
  font-style: italic;
  margin-bottom: 34px;
}



.blog-home-product-separator {
  margin: 0 auto 34px;
}

.blog-home-product-all {
  background-color: #c51d3b;
  font-family: "Georgia", "Arial";
  color: #FFF;
  text-align: left;
  font-size: 16px;
  font-style: italic;
  display: flex;
  padding: 4%;
  margin-bottom: 30px;
}

.blog-home-product-prices {
  font-family: "Georgia", "Arial";
  color: #3e3d40;
  text-align: center;
  font-size: 11px;
  font-style: italic;
  margin-bottom: 30px;
}

.blog-home-product-price {
  color: #c51d3b;
  font-size: 20px;
  font-weight: bold;
}

.blog-home-product-link {
  font-family: "Georgia", "Arial";
  font-style: italic;
  font-size: 15px;
  background-color: #c0a56e;
  color: #FFF;
  text-align: left;
  padding: 4%;
}

.blog-home-ban {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
}

.blog-home-ban a img {
  width: 100%;
}

@media (min-width: 913px) {
  .blog-home-products {
    flex-direction: row;
  }

  .blog-home-product {
    gap: 2%;
    max-height: 450px;
    width:33%;
  }

  .blog-home-product:not(:last-child) {
    border-right: 1px solid #c0a56e;
  }

  .blog-home-ban {
    flex-direction: row;
  }

  .blog-home-ban a:first-child {
    border-right: 1px solid #c0a56e;
  }
}
