.gallery-section > .wrapper {
  text-align: center;
}

.gallery-section > .wrapper > .title {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.15px;
  color: #868E96;
  font-size: 0.9em;
  margin: 10px 25px;
}

.gallery-section > .wrapper > .album-box {
  text-align: left;
  display: inline-block;
  margin: 15px 10px;
  padding: 10px 15px;
  width: 260px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.gallery-section > .wrapper > .album-box > .thumbnail {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 2px 2px rgba(52, 58, 64, 0.12);
  -moz-box-shadow: 0px 2px 2px rgba(52, 58, 64, 0.12);
  -webkit-box-shadow: 0px 2px 2px rgba(52, 58, 64, 0.12);
  border-radius: 5px;
  margin-bottom: 10px;
  float: left;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-filter: grayscale(0.3);
          filter: grayscale(0.3);
}

.gallery-section > .wrapper > .album-box > .details {
  float: left;
  display: block;
  height: 60px;
  width: 260px;
}

.gallery-section > .wrapper > .album-box > .details .title {
  display: block;
  font-weight: 600;
  font-size: 0.8em;
  text-transform: uppercase;
  width: 260px;
  color: #212529;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gallery-section > .wrapper > .album-box > .details > .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 10px 0;
  font-size: 0.8em;
  color: #868E96;
}

.gallery-section > .wrapper > .album-box:hover {
  background: #E9ECEF;
  border-radius: 5px;
  cursor: pointer;
}

.gallery-section > .wrapper > .album-box:hover > .thumbnail {
  -webkit-filter: none;
          filter: none;
}

