/* ViewManager: dvije slike (col-6) s naslovom + link overlay */
/* Omjer drži Bootstrap .ratio.ratio-1x1; .ratio > * pozicionira <a> da popuni kvadrat. */
.vm-duo__item {
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.vm-duo__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0) 45%);
  transition: background 0.3s ease;
}

.vm-duo__item:hover::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.12) 60%);
}

.vm-duo__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 2rem 2.5rem;
}

.vm-duo__title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
}

.vm-duo__cta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 767.98px) {
  .vm-duo__overlay {
    padding: 1.5rem;
  }

  .vm-duo__title {
    font-size: 1.4rem;
  }
}
