.ozel-manset-container {
    position: relative;
    width: 100%;
    /* height dinamik olarak PHP'den geliyor */
    overflow: hidden !important;
    contain: paint;
    background: #111;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
.ozel-manset-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
    flex-wrap: nowrap;
}
.ozel-manset-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: #000; /* Kenarlarda kalan boşlukları siyah yapar */
    background-size: 100% 100%, contain; /* Gölgeyi tam kaplatır, resmi ise kırpmadan sığdırır */
    background-position: center bottom, center center; /* Resmi tam ortaya hizalar */
    background-repeat: no-repeat; /* Resmin tekrarlanmasını engeller */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}
.manset-kategori {
    background-color: #e60000;
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin: 20px;
    align-self: flex-start;
    position: relative;
    z-index: 2; /* Şeffaf linkin altında kalmaması için eklendi */
}
.manset-icerik h2 a, .manset-icerik h2 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2; /* Şeffaf linkin altında kalmaması için eklendi */
    margin-top: auto; /* Rozet olmadığında yazıyı zorla en alta iter */
}
.manset-icerik h2 {
    margin: 0 0 5px 0;
}
.manset-icerik {
    padding: 20px 20px 70px 20px;
    position: relative;
    z-index: 2; /* Şeffaf linkin altında kalmaması için eklendi */
    margin-top: auto; /* Rozet olmadığında yazıyı zorla en alta iter */
}
.manset-ozet {
    color: #ddd;
    font-size: 15px;
    margin-top: 5px;
}
.ozel-manset-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(245, 245, 245, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    box-sizing: border-box;
    z-index: 3;
}
.manset-numaralar {
    display: flex;
    flex-grow: 1;
    min-width: 0;
}
.nav-num {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: clamp(12px, 1.2vw, 15px);
    cursor: pointer;
    border-right: 1px solid #ddd;
    transition: 0.2s;
}
.nav-num.active {
    background-color: #ff0000;
    color: #fff;
    font-weight: bold;
}
.manset-tum-buton {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    text-align: center;
    line-height: 1.1;
    background: #f0f0f0;
}
.manset-tum-buton a {
    color: #777;
    font-size: 11px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .manset-icerik h2 a, .manset-icerik h2 { font-size: 18px; }
    .manset-ozet { display: none; }
    
    .manset-tum-buton {
        padding: 0 5px;
    }
    .manset-tum-buton a {
        font-size: 9px;
    }
    .nav-num {
        font-size: 11px;
    }
}