.products-container {
	background: #e7e7e8;
	margin-bottom: 10px;
}
.product-category {
	color: #ffffff;
	font-size: 2.2em;
	text-transform: uppercase;
	padding: 5px 50px;
	display: inline-block;
	background: #017cba;
}

.product {
	padding: 5px;
}

.product-title {
	text-transform: uppercase;
	display: block;
	width: 70%;
	margin: 0 auto;
	font-size: 1.5em;
	font-weight: 600;
}
.product-meta {
	background: #fcce01;
	color: #5d5d5e;
	display: block;
	margin: 0 auto;
	font-weight: 300;
	font-size: 0.9em;
	max-width: 183px;
	margin-top: 5px;
	padding-left: 6px;
}

.product-image {
	margin: 0 auto;
	border: 1px solid #017cba;
	height: 151px;
	width: 181px;
}

.product-description {
	font-size: 0.9em;
	display: block; 
	width: 70%;
	margin: 0 auto;
	line-height: 1.3;
	margin-top: 2px;
	min-height: 70px;
}

@media (max-width: 1199px) {
  .product-description, .product-title {
    width: 84%;
  }
}

@media (max-width: 992px) {
  .product-description, .product-title {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .product-description, .product-title {
    margin: 0 auto;
    width: 60%;
  }
}