.photo-card {
  position: relative;
}

.photo-card-caroussel-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.25rem;
  object-fit: cover;
  border: 1px solid #dee2e6;
}

.photo-card-caroussel-wrapper:hover {
  -webkit-transition: all .3s ease-in-out;
  transform: scale(1.10);
}

img.photos-card-image.is-cover {
    height: 200px !important;
}

.photo-card-caroussel-wrapper .photos-card-image.is-cover {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo-card-caroussel-wrapper .photos-card-image.is-hidden {
  display: none;
}

.photo-card-title {
  margin: 0.5rem 0 0;
}
.photo-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.4;
    max-height: calc(1.4em * 2);
}

.photo-card-content {
    border: solid 1px #E9E9E9;
    padding: 10px;
    margin: 5px 0;
    color: #000;
    text-decoration: none;
}

.photo-card-content h4 {
    font-size: 1rem;
    overflow-wrap: break-word;
}
