/* Manset Stilleri */

/* Stil 1 & 2: Tam Ekran Slider */
.manset-fullscreen {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.fullscreen-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #1a1a2e;
}
.fs-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.fs-slide.active {
    opacity: 1;
}
.fs-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.fs-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0 40px;
    color: white;
    z-index: 10;
}
.fs-category {
    width: 60px;
    height: 6px;
    background: #e74c3c;
    margin-bottom: 15px;
}
.fs-content h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    max-width: 90%;
    margin: 0;
}
.fs-pagination {
    display: flex;
    background: white;
    border-top: 3px solid #e74c3c;
}
.fs-num {
    flex: 1;
    padding: 12px 0;
    border: none;
    background: white;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    border-right: 1px solid #eee;
}
.fs-num:last-child {
    border-right: none;
}
.fs-num:hover {
    background: #f5f5f5;
}
.fs-num.active {
    background: #e74c3c;
    color: white;
}

/* Stil 3: Sol Slider + Sağ Liste */
.manset-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    margin-bottom: 30px;
    background: white;
}
.split-left {
    position: relative;
}
.split-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #1a1a2e;
}
.sp-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.sp-slide.active {
    opacity: 1;
}
.sp-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sp-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0 30px;
    color: white;
    z-index: 10;
}
.sp-line {
    width: 50px;
    height: 5px;
    background: #e74c3c;
    margin-bottom: 12px;
}
.sp-content h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin: 0;
}
.sp-pagination {
    display: flex;
    background: white;
    border-top: 3px solid #e74c3c;
}
.sp-num {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: white;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    border-right: 1px solid #eee;
}
.sp-num:last-child {
    border-right: none;
}
.sp-num:hover {
    background: #f5f5f5;
}
.sp-num.active {
    background: #e74c3c;
    color: white;
}

/* Sağ taraf - Haber Listesi */
.split-right {
    background: white;
    border-left: 1px solid #eee;
    padding: 0;
    overflow-y: auto;
    max-height: 510px;
}
.headline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.headline-list li {
    border-bottom: 1px solid #eee;
}
.headline-list li:last-child {
    border-bottom: none;
}
.headline-list a {
    display: block;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    line-height: 1.5;
    transition: all 0.2s;
    text-transform: uppercase;
}
.headline-list a:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 992px) {
    .manset-split {
        grid-template-columns: 1fr;
    }
    .split-right {
        max-height: 300px;
        border-left: none;
        border-top: 1px solid #eee;
    }
    .fs-content h1,
    .sp-content h1 {
        font-size: 22px;
    }
    .fs-num, .sp-num {
        font-size: 11px;
        padding: 8px 0;
    }
    .fullscreen-slider,
    .split-slider {
        height: 350px;
    }
}

/* Slide links */
a.fs-slide,
a.sp-slide {
    display: block;
    text-decoration: none;
    color: inherit;
}
a.fs-slide:hover .fs-content h1,
a.sp-slide:hover .sp-content h1 {
    text-decoration: underline;
}
