/* ========================================
   GALLERY COVER PHOTOS
======================================== */

.gallery-photo {
  width: 100%;
  height: 250px;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  background-color: #111;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: flex-end;
}


/* Dark overlay */
.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}


/* Gallery title */
.gallery-photo span {
  position: relative;
  z-index: 1;

  padding: 18px;

  color: white;
  font-weight: 700;
}


/* Gallery link */
.gallery-link {
  display: block;
  text-decoration: none;
  color: inherit;
}