.ozluWrap {
    background-color: var(--darkBg);
    min-height: 90vh;
    padding: 200px 0 0 0px;
    overflow: hidden;
}

/* Swiper */
.ozluSwiper {
    width: 100%;
    overflow: visible;
    padding: 30px 0 20px;
}

/* Kart — varsayılan (yan) */
.ozluKart {
    background-color: #0d1e35;
    border-radius: 30px;
    padding: 0;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: scale(0.78);
    opacity: 0.45;
    transition: transform 500ms, opacity 500ms, background-color 500ms;
    user-select: none;
}

/* Aktif (ortadaki) kart */
.ozluSwiper .swiper-slide-active .ozluKart {
    background: transparent linear-gradient(121deg, #FFFFFF 0%, #808080 100%) 0% 0% no-repeat padding-box;
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

/* Üst başlık — sadece aktif kartta görünür */
.ozluKartUst {
    display: none;
}

.ozluSwiper .swiper-slide-active .ozluKartUst {
    display: block;
    background: transparent linear-gradient(98deg, #4A6F93 0%, #808080 100%) 0% 0% no-repeat padding-box;border-radius: 30px;
    padding: 30px;
    text-align: center;
}

.ozluEtiket {
   font: normal normal bold 22px/35px Jost;
    color: var(--white);
    letter-spacing: 1.5px;
    margin: 0 0 4px;
}

.ozluYazar {
    font: normal normal normal 15px/26px Jost;
    color: var(--white);
    letter-spacing: 3px;
    margin: 0;
}

/* Tırnak + söz */
.ozluKartAlt {
    flex: 1;
    display: flex;
    flex-direction: column;padding: 30px 45px;
    justify-content: center;
}

.ozluTirnak {
    font-size: 72px;
    line-height: 0.5;
    font-family: Georgia, serif;
    display: block;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.15);
    transition: color 500ms;position: absolute;
}
.ozluTirnak img{width: 90px;filter: brightness(0.5);}
.ozluSwiper .swiper-slide-active .ozluTirnak {
    color: rgba(7,19,38,0.18);
}

.ozluSozMetin {
    font: normal normal normal 32px/48px Jost;
    color: rgba(255,255,255,0.75);
    margin: 0;
    transition: color 500ms;
}

.ozluSwiper .swiper-slide-active .ozluSozMetin {
    color: var(--darkBg);
    font-weight: 400;
}

/* Navigasyon */
.ozluNav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 36px;
}

.ozluPrev,
.ozluNext {
    background: transparent;
    border: none;
    color: rgba(255,255,255,1);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 300ms;font-size: 82px;
}

.ozluPrev:hover,
.ozluNext:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .ozluKart {
        min-height: 260px;
        padding: 28px 24px 32px;
    }
    .ozluSozMetin {
        font-size: 17px;
        line-height: 28px;
    }
    .ozluTirnak {
        font-size: 52px;
    }
}
