/* ====================
     HABER SLIDERI
==================== */

.news-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 10px;
}

.news-slider {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

.news-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all .7s ease;
}

.news-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.news-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: rgba(0, 0, 0, 0.85);
}

.news-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

/* Oklar */
.news-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 18px;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    z-index: 10;
}

.news-arrow.prev {
    left: 15px;
}

.news-arrow.next {
    right: 15px;
}

.news-arrow:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    gap: 6px;
}

.news-pagination span {
    padding: 6px 12px;
    background: #ddd;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.news-pagination span.active {
    background: #b5121b;
    color: #fff;
}