.color-grid ul{
  display: flex;
  flex-wrap: wrap;
}

.color-grid ul li{
  width: 100%;
  margin: 10px 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #FAFAFA;
  position: relative;
  overflow: hidden;
}

.color-grid ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: var(--degrade-complet);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: 20px;
}

@media only screen and (min-width: 600px) {
  .color-grid ul li{
    width: 31%;
    margin: 1%;
  }
}

.color-grid-description{
  padding: 20px;
  overflow: scroll;
  font-size: 13px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 600px) {
  .color-grid-description{
    height: 400px;
  }
}

.color-grid-description strong{
  font-weight: bold;
}

.color-grid-description p + p{
  margin-top: 10px;
}

.color-grid-title {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--degrade-complet);
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	transition: all .2s ease;
  padding: var(--gutter-in);
}

.color-grid ul li:hover .color-grid-title,
.color-grid ul li.hover .color-grid-title {
  height: 80px;
  font-size: 12px;
	padding: 10px;
}
