/* ✅ Portfolio: خلي الصورة تعمّر المربع الأبيض */
.our-portfolio .item .showed-content{
  padding: 0 !important;        /* إذا كان كاين padding كيصغّر الصورة */
  width: 100%;
  height: 240px;                /* تقدر تبدّلها: 220 / 260 حسب الذوق */
  overflow: hidden;
  border-radius: 20px;          /* خليها نفس تدوير المربع */
}

.our-portfolio .item .showed-content img{
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;   /* مهم إذا كان max-width كيقيّدها */
  display: block;
  object-fit: cover;            /* كتعمر المربع مع قصّ بسيط */
  object-position: center;
}

/* ✅ إذا بغيتيها مربّع (Square) بدل مستطيل */
@supports (aspect-ratio: 1 / 1){
  .our-portfolio .item .showed-content{
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
