.img-link-square {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 186px;
  width: 100%;
  position: relative;
  transition: box-shadow 0.2s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-link-square:hover {
  box-shadow: 0 4px 24px rgba(32, 56, 106, 0.18);
  transform: scale(1.04);
}
.img-link-square:hover .img-link-overlay {
  background: rgba(32, 56, 106, 0.92);
}

.img-link-overlay {
  background: rgba(32, 56, 106, 0.85);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s;
}

.img-link-title {
  display: inline-block;
}

.img-link-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.img-link-row {
  --bs-gutter-x: 1rem !important;
}