.haber-type2-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.ht2-slide {
    animation: ht2FadeIn 0.4s ease;
}

@keyframes ht2FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Oklar */
.ht2-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    z-index: 2;
    transition: background 0.2s;
}

    .ht2-arrow:hover {
        background: rgba(0,0,0,0.7);
    }

.ht2-arrow-left {
    left: 8px;
}

.ht2-arrow-right {
    right: 8px;
}

/* Numaralý Sayfalama */
.ht2-page-btn {
    background: transparent;
    color: #aaa;
    border: none;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    cursor: pointer;
    min-width: 28px;
    text-align: center;
    transition: all 0.2s;
}

    .ht2-page-btn:hover {
        color: #fff;
    }

    .ht2-page-btn.active {
        background: #c00;
        color: #fff;
    }
