/* ââ Section headers (shared) ââ */
.tiski-section-head {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .85rem;
}

.tiski-section-head__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: .82rem;
    flex-shrink: 0;
}

.tiski-section-head__title {
    font-weight: 700;
    font-size: .92rem;
    color: #00384d;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0;
}

.tiski-section-head__more {
    margin-left: auto;
    font-size: .72rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    transition: color .2s;
}

.tiski-section-head__more:hover {
    color: #006f9e;
}

.tiski-section-head__more i {
    font-size: .6rem;
    transition: transform .2s;
}

.tiski-section-head__more:hover i {
    transform: translateX(2px);
}

/* ââ Slider wrapper ââ */
.haber-slider-wrap {
    position: relative;
}

.anaThema .owl-stage-outer {
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0,0,0,.06),
        0 8px 24px rgba(15, 23, 42, .08);
}

/* ââ Slide ââ */
.haber-slide {
    position: relative;
    height: 460px;
    width: 100%;
    overflow: hidden;
}

.haber-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 8s cubic-bezier(.25,.1,.25,1);
}

.owl-carousel .active .haber-slide img {
    transform: scale(1.0);
}

/* ââ Gradient overlay ââ */
.haber-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(8, 15, 30, .92) 0%,
            rgba(8, 15, 30, .55) 28%,
            rgba(8, 15, 30, .15) 55%,
            rgba(8, 15, 30, .03) 75%,
            transparent 100%
        );
    pointer-events: none;
}

/* ââ Date badge ââ */
.haber-tarih {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 52px;
    border: 1px solid rgba(255, 255, 255, .18);
}

.haber-tarih-gun {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.haber-tarih-ay {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .1em;
    opacity: .8;
    text-transform: uppercase;
}

/* ââ Content overlay ââ */
.haber-icerik-wrap {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.haber-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
    color: rgba(255,255,255,.7);
}

.haber-tag::before {
    content: "";
    width: 20px;
    height: 2px;
    background: #5fd1c4;
    border-radius: 999px;
}

.haberBaslik {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
    max-width: 88%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ââ Nav arrows ââ */
.anaThema .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 5;
}

.anaThema .owl-nav button {
    pointer-events: all;
    width: 36px;
    height: 36px;
    border-radius: 10px !important;
    background: rgba(255,255,255,.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15) !important;
    color: rgba(255,255,255,.85) !important;
    display: inline-grid;
    place-items: center;
    font-size: 14px !important;
    transition: all .2s ease;
}

.anaThema .owl-nav button:hover {
    background: rgba(255,255,255,.22) !important;
    border-color: rgba(255,255,255,.3) !important;
    color: #fff !important;
}

/* ââ Bottom bar (dots + button) ââ */
.haber-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    gap: 10px;
}

.anaThema .owl-dots,
#haberDotsContainer .owl-dots {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.anaThema .owl-dot,
#haberDotsContainer .owl-dot {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.haber-dot {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #94a3b8;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.owl-dot.active .haber-dot {
    background: #00384d;
    border-color: #00384d;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 56, 77, .3);
}

.owl-dot:hover:not(.active) .haber-dot {
    border-color: #47A9D6;
    color: #00384d;
    background: #eef8fb;
}

/* ââ "TÃ¼m Haberler" button ââ */
.haber-tumu-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem 1rem;
    border-radius: 8px;
    background: #00384d;
    color: #fff;
    text-decoration: none;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .2px;
    transition: all .2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.haber-tumu-btn:hover {
    background: #00384d;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 56, 77, .25);
}

.haber-tumu-btn i {
    font-size: .65rem;
    transition: transform .2s;
}

.haber-tumu-btn:hover i {
    transform: translateX(2px);
}

/* ââ Empty state ââ */
.haber-empty {
    height: 280px;
    background: #f8fafc;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.haber-empty__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f1f5f9;
    display: grid;
    place-items: center;
    color: #94a3b8;
    font-size: 1.3rem;
}

.haber-empty__text {
    color: #94a3b8;
    font-size: .88rem;
    font-weight: 500;
}

/* ââ Responsive ââ */
@media (max-width: 1199px) {
    .haber-slide { height: 400px; }
}

@media (max-width: 991px) {
    .haber-slide { height: 360px; }
    .haberBaslik { font-size: 1.05rem; max-width: 100%; }
    .haber-icerik-wrap { left: 20px; right: 20px; bottom: 20px; }
}

@media (max-width: 575px) {
    .haber-slide { height: 260px; }
    .haber-icerik-wrap { left: 16px; right: 16px; bottom: 16px; }
    .haberBaslik { font-size: .95rem; }
    .haber-bottom-bar { flex-wrap: wrap; }
    .haber-dot { width: 32px; height: 32px; font-size: .75rem; }
    .haber-tumu-btn { display: none; }
}
