/* ===== INSTAGRAM SLIDER ===== */
.ig-slider-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.ig-slider__outer {
    width: 100%;
    overflow: hidden;
}

/* Track: flex με gap 40px */
.ig-slider__track {
    display: flex;
    gap: 40px;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* Κάθε slide: ακριβώς (50% - 20px) ώστε 2 να φαίνονται με gap 40px */
.ig-slide {
    position: relative;
    flex: 0 0 calc(50% - 20px);
    width: calc(50% - 20px);
    /* aspect ratio του frame: 597/999 = 59.76% */
    padding-top: calc((calc(50% - 20px)) * 0.5976);
    /* Fallback με aspect-ratio */
    aspect-ratio: 999 / 597;
    padding-top: 0;
    height: auto;
}

/* Frame: z-index 1 — πάντα στον πάτο */
.ig-slide__frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ig-slide__frame img {
    width: 100%;
    height: 100%;
    object-fit: fill; /* fill για να μην κόβεται */
    display: block;
}

/* Φωτογραφία: z-index 999, width = 50.85% του slide */
.ig-slide__left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50.85%;
    height: 100%;
    overflow: hidden;
    z-index: 999;
}

.ig-slide__likes {
    display: none;
}

img.ig-slide__photo {
    padding: 12px;
}

.ig-slide__photo {
    width: 90%;
    height: 90%;
   
    display: block;
}

/* Κείμενο: z-index 999, δεν έχει background */
.ig-slide__right {
    position: absolute;
    top: 18.06%;
    left: 42.85%;
    width: 69.15%;
    height: 77.38%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 8% 10%;
    box-sizing: border-box;
    z-index: 999;
}

.ig-slide__likes {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.ig-slide__caption {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

/* Arrows */
.ig-arrow {
    position: absolute;
    top: -7%;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #1e2a3a;
    transition: background 0.2s ease, color 0.2s ease;
}

.ig-arrow--prev { left: 700px; }
.ig-arrow--next { right: 600px; }

.ig-arrow:hover {
    background: #1e2a3a;
    color: #ffffff;
}

/* Mobile: 1 slide, gap 0 */
@media (max-width: 768px) {
    .ig-slider__track {
        gap: 0;
    }

    .ig-slide {
        flex: 0 0 100%;
        width: 100%;
    }

    .ig-arrow--prev { left: 8px; }
    .ig-arrow--next { right: 8px; }

    .ig-slide__right {
        padding: 0 5% 8%;
    }

    .ig-slide__likes,
    .ig-slide__caption {
        font-size: 11px;
    }
}

.ig-slider__outer {
    padding-left: 30px;
    padding-right: 30px;
}

.ig-slide__right {
    top: 82px!important;
    overflow: hidden;
}

.ig-slide__caption {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}