.square-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.square-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
/*.hover-overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(0, 0, 0, 0.65);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  text-align: center;*/
/*  opacity: 0;*/
/*  transition: opacity 0.4s ease;*/
/*  padding: 20px;*/
/*}*/

/* Text colors */
.hover-overlay h4 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hover-overlay p {
  color: #ffffff;
  font-size: 14px;
}

/* Hover effects */
.square-img:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
  transition: 0.4s ease;
}
.square-img:hover .hover-overlay {
  opacity: 1;
}
