.swiper {
  width: 100%;
}

.portfolio-slider-container {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.swiper-pagination {
  display: none;
}

/* Custom arrows */
.portfolio-custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.portfolio-custom-arrow--prev { left: 0; }
.portfolio-custom-arrow--next { right: 0; }

.portfolio-custom-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transform: translateY(-50%) scale(1.1);
}

.portfolio-slide {
  padding: 20px 0;
}

/* Νέο στυλ για ομοιόμορφες εικόνες */
.portfolio-slide-image {
  width: 100%;             /* Καταλαμβάνει όλο το πλάτος του slide */
  aspect-ratio: 3 / 2;      /* Επιβάλλει αναλογία 3:2 (π.χ. 300px πλάτος, 200px ύψος) */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;      /* Προαιρετικό: λίγο στρογγυλεμένες γωνίες */
}

.portfolio-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ΣΗΜΑΝΤΙΚΟ: Γεμίζει το χώρο χωρίς να παραμορφώνει την εικόνα */
  transition: transform .3s ease;
}

.portfolio-slide:hover img {
  transform: scale(1.03);
}

.portfolio-slide-date {
  color: #c8c8c8;
  font-size: 14px;
  margin-top: 15px;
}

.portfolio-slide-title {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}

/* Responsive */
@media (min-width: 768px) {
  .portfolio-custom-arrow--prev { left: -35px; }
  .portfolio-custom-arrow--next { right: -35px; }
}

@media (min-width: 1024px) {
  .portfolio-custom-arrow--prev { left: -57px; }
  .portfolio-custom-arrow--next { right: -57px; }
}
