.sxlds-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    overflow: hidden;
}

.sxlds-main-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.sxlds-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

/* --- Ok butonları --- */
.sxlds-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #7391a7;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(115, 145, 167, 0.35);
}

.sxlds-arrow:hover {
    background: #5f7f96;
    transform: translateY(-50%) scale(1.08);
}

.sxlds-arrow-left {
    left: 0;
}

.sxlds-arrow-right {
    right: 0;
}

/* --- Track --- */
.sxlds-track {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    height: 480px;
}

/* --- Slide --- */
.sxlds-slide {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: scale(0.7);
    pointer-events: none;
    width: 320px;
}

.sxlds-slide.sxlds-active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 5;
    pointer-events: auto;
}

.sxlds-slide.sxlds-prev {
    opacity: 0.4;
    transform: scale(0.78) translateX(-120%);
    z-index: 3;
    filter: blur(2px);
}

.sxlds-slide.sxlds-next {
    opacity: 0.4;
    transform: scale(0.78) translateX(120%);
    z-index: 3;
    filter: blur(2px);
}

.sxlds-slide.sxlds-far-prev {
    opacity: 0;
    transform: scale(0.6) translateX(-250%);
    z-index: 1;
}

.sxlds-slide.sxlds-far-next {
    opacity: 0;
    transform: scale(0.6) translateX(250%);
    z-index: 1;
}

/* --- Card --- */
.sxlds-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* --- Image --- */
.sxlds-image-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.sxlds-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;

    mix-blend-mode: multiply;
    transition: transform 0.4s;
}

.sxlds-active .sxlds-image:hover {
    transform: scale(1.03);
}

.sxlds-no-image {
    background-color: #d1d5db;
}

/* --- Info (fotoğrafın içinde, alt kısımda) --- */
.sxlds-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 15px 15px;
    background: transparent;
    text-align: center;
}

.sxlds-name {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    margin: 0 0 4px;
    text-shadow: 0px 4px 4px #000;
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .sxlds-wrapper {
        padding: 40px 15px;
    }

    .sxlds-main-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .sxlds-slider {
        min-height: 400px;
    }

    .sxlds-track {
        height: 400px;
    }

    .sxlds-slide {
        width: 260px;
    }

    .sxlds-image-wrapper {
        height: 350px;
    }

    .sxlds-arrow {
        width: 40px;
        height: 40px;
    }

    .sxlds-arrow svg {
        width: 16px;
        height: 16px;
    }

    .sxlds-slide.sxlds-prev {
        transform: scale(0.7) translateX(-90%);
        opacity: 0.3;
    }

    .sxlds-slide.sxlds-next {
        transform: scale(0.7) translateX(90%);
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .sxlds-main-title {
        font-size: 24px;
    }

    .sxlds-image-wrapper {
        height: 300px;
    }

    .sxlds-slide {
        width: 220px;
    }

    .sxlds-slide.sxlds-prev,
    .sxlds-slide.sxlds-next {
        opacity: 0.2;
    }

    .sxlds-name {
        font-size: 16px;
    }

    .sxlds-specialty {
        font-size: 12px;
    }
}
