/* ==========================================================
   UNIO BANNER CAROUSELS — CUSTOM (NO SWIPER)
   No-crop εικόνες + προαιρετικό text overlay
========================================================== */

.unio-banner-carousel {
    width: 100%;
}

.unio-banner-viewport {
    overflow: hidden;
}

.unio-banner-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.unio-banner-slide {
    min-width: 0;
}

.unio-banner-media {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.unio-banner-img {
    display: block;
    width: 100%;
    height: auto; /* ΠΟΤΕ crop */
}

.unio-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(0deg, rgba(10,10,8,.72) 0%, rgba(10,10,8,.28) 45%, rgba(10,10,8,0) 70%);
}

.unio-banner-title {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 8px;
}

.unio-banner-subtitle {
    color: #E7E5DE;
    font-size: 13px;
    line-height: 1.5;
    max-width: 42ch;
    margin-bottom: 14px;
}

.unio-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff;
}

/* ==========================================================
   ΠΛΑΤΗ SLIDE ΑΝΑ SLOT (DESKTOP)
========================================================== */

.unio-banner-carousel--slider_1 .unio-banner-slide {
    flex: 0 0 calc((100% - 24px) / 2);
}

.unio-banner-carousel--slider_2 .unio-banner-slide {
    flex: 0 0 calc((100% - 2 * 24px) / 3);
}

/* ==========================================================
   ARROWS & DOTS
========================================================== */

.unio-banner-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}

.unio-banner-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #E4E1D8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    font-size: 14px;
    transition: background .15s;
}

.unio-banner-arrow:hover {
    background: #EDEAE1;
}

.unio-banner-dots {
    display: flex;
    gap: 6px;
}

.unio-banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E4E1D8;
    transition: background .2s, transform .2s;
}

.unio-banner-dot.active {
    background: #1B1D1C;
    transform: scale(1.3);
}

/* ==========================================================
   MOBILE — 1 ορατό banner, και στα δύο slots
========================================================== */

@media (max-width: 900px) {

    .unio-banner-carousel--slider_1 .unio-banner-slide,
    .unio-banner-carousel--slider_2 .unio-banner-slide {
        flex-basis: 86vw;
    }

}




/* ==========================================================
   FEATURED SHOWCASES — 3ο (ΑΥΤΟΜΑΤΟ) CAROUSEL
   Τετράγωνη κάρτα, λογότυπο badge, caption από κάτω (όχι overlay πάνω στην εικόνα)
========================================================== */

.unio-banner-carousel--showcases .unio-banner-slide {
    flex: 0 0 calc((100% - 3 * 24px) / 4);
}

.unio-showcase-card {
    display: block;
}

.unio-showcase-media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 3px;
    overflow: hidden;
}

.unio-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.unio-showcase-logo {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    z-index: 2;
}

.unio-showcase-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.unio-showcase-caption {
    margin-top: 12px;
}

.unio-showcase-name {
    font-size: 14.5px;
    font-weight: 600;
    color: #1B1D1C;
}

.unio-showcase-loc {
    font-size: 12.5px;
    color: #5B5E5A;
    margin-top: 4px;
}

@media (max-width: 900px) {

    .unio-banner-carousel--showcases .unio-banner-slide {
        flex-basis: calc((100% - 24px) / 2);
    }

}