.custom-logo {
  width: 150px;
  height: auto;
  padding: 10px;
}
/* Fix for the Featured Stacked Layout */
@media (min-width: 768px) {
  /* Height of the Big Card */
  .col-md-8 .project-card {
    height: 500px;
    /* Adjust this to your preference */
  }
  /* Height of the Small Cards to fit perfectly beside it */
  /* (Big Height - Gutter) / 2 */
  .project-card--small {
    height: 238px;
  }
}
.project-card {
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: 4px;
}
.project-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover .project-thumb {
  transform: scale(1.08);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 0.8;
}
.project-meta {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 2;
}
.project-cat {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #B51514;
  /* lp-gold */
  text-transform: uppercase;
  margin-bottom: 5px;
}
.project-title {
  font-size: 20px;
  margin: 0;
  color: #fff;
}
