.gallery-card {
  position: relative;
}
.gallery-card .thumbnail img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.gallery-card .title {
  font-weight: bold;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5em;
  height: calc(2 * 1.5em);
  color: #333;
  transition: all 0.2s ease-in-out;
}
.gallery-card .photos-count {
  position: absolute;
  display: inline-block;
  top: 5%;
  right: 5%;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  background-color: white;
  color: black;
  transition: all 0.2s ease-in-out;
}
.gallery-card:hover .title {
  color: #2582A1;
}
.gallery-card:hover .photos-count {
  background-color: #2582A1;
  color: white;
}/*# sourceMappingURL=gallery.css.map */