/* Ressources numériques - cards */
.blog-cards .blog-card {
  display: inline-block;
  width: 340px;
  height: 500px;
  position: relative;
  top: 0;
  left: 0;
  margin: 13px;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  background-position: center center;
  background-size: auto 500px;
  background-repeat: norepeat;
}
.blog-cards .blog-card .color-overlay {
  /* Rectangle 11: */

  background: rgba(163, 105, 110, 0.4);
  width: 340px;
  height: 500px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
}
.blog-cards .blog-card .gradient-overlay {
  /* bg-gradient: */

  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 21%);
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 21%);
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 21%);
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 21%);
  width: 340px;
  height: 500px;
  position: absolute;
  top: 350px;
  left: 0;
  z-index: 15;
}
.blog-cards .blog-card:hover .card-info {
  opacity: 1;
  bottom: 40%;
}
.blog-cards .blog-card:hover .color-overlay {
  background: rgba(97, 106, 112, 0.9);
}
.blog-cards .title-content {
  text-align: center;
  margin: 0;
  position: absolute;
  z-index: 20;
  width: 100%;
  top: 0;
  left: 0;
}
.blog-cards h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 0;
  background-color: #a36946;
  padding: 20px 15px;
}
.blog-cards hr {
  width: 50px;
  height: 3px;
  margin: 20px auto;
  border: 0;
  background: #a36946;
}
.blog-cards .card-info {
  width: 100%;
  position: absolute;
  bottom: 100px;
  left: 0;
  margin: 0 auto;
  padding: 0 50px;
  color: white;
  font-style: 16px;
  line-height: 24px;
  z-index: 20;
  opacity: 0;
  transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  text-align: left;
  font-size: 22px;
}
.blog-cards .utility-info {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 20;
  width: 100%;
}
.blog-cards .utility-list {
  list-style-type: none;
  margin: 0 auto 30px auto;
  padding: 0;
  width: 100%;
}
.blog-cards .utility-list li {
  margin: 0 15px 0 0;
  padding: 0;
  display: inline-block;
  color: white;
  text-align: center;
}
.blog-cards .utility-list li.showmore a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
}
.blog-cards .utility-list li.showmore a:hover {
  text-decoration: underline;
}
