/* Kart Hover */
.thumb-wrap { position: relative; overflow: hidden; border-radius: .5rem .5rem 0 0; }
.thumb-wrap img { display:block; width:100%; height:auto; }
.portfolio-hover {
  position:absolute; inset:0; background:rgba(218,165,32,.45);
  opacity:0; display:flex; align-items:center; justify-content:center;
  transition:.2s ease-in-out;
}
.portfolio-hover-content { color:#fff; transform:translateY(6px); transition:transform .2s ease; }
.portfolio-link:hover .portfolio-hover{ opacity:1; }
.portfolio-link:hover .portfolio-hover-content{ transform:translateY(0); }

/* Modal içinde imaj oranı korunsun, taşma olmasın */
#portfolioModal .modal-content { border:0; border-radius:.75rem; overflow:hidden; }
#portfolioModal .carousel-item { background:#000; }
#portfolioModal .slide-center {
  min-height:60vh;
  max-height:calc(100vh - 140px);
  display:flex; align-items:center; justify-content:center;
}
#portfolioModal .modal-img {
  max-width:100%;
  max-height:100%;
  width:auto; height:auto;
  object-fit:contain;
  border-radius:.5rem;
}

@media (max-width:576px){
  #portfolioModal .slide-center { min-height:50vh; max-height:calc(100vh - 120px); }
}
