/* ========== DUYURULAR ========== */
.duyurular-container {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    position: relative; /* absolute öğeler için referans */
    padding-bottom: 56px; /* masaüstünde alttaki link için yer */
}

.duyurular-header {
    display: flex;
    align-items: center;
}

    .duyurular-header .icon {
        width: 30px;
        height: 30px;
        background: #fff;
        margin-right: 10px;
    }

.duyurular-list .duyuru-item {
    display: flex;
    margin-bottom: 15px;
}

.duyuru-item .date-box {
    min-width: 50px;
    background: #e9ecef;
    text-align: center;
    margin-right: 10px;
    border-radius: 4px;
    padding: 5px;
    font-weight: 700;
}

.duyuru-item .content {
    flex: 1;
}

/* Tüm Duyurular (default: masaüstü, sağ-alt absolute) */
.tum-duyurular-link {
    position: absolute;
    right: 12px;
    bottom: 12px;
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    /*font-size: .95rem;*/
    padding: 6px 12px;
    line-height: 1.2;
    border-radius: 6px;
    white-space: nowrap;
}

/* ====== HABERLER ====== */
.haberler-container {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

.haberler-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .haberler-header .icon {
        width: 30px;
        height: 30px;
        background: #fff;
        margin-right: 10px;
    }

.tum-haberler-wrapper {
    margin-top: 15px;
}

.tum-haberler-link {
    border: none;
    float: right;
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color .2s, color .2s;
}

    .tum-haberler-link:hover { /* isteğe göre aç/kapat */
    }

.carousel-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
}

/* Owl öğeleri */
.owl-theme .owl-nav {
    margin-top: 30px !important;
    width: 100%;
}

.owl-carousel .item-container {
    background: #fff;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.thumb {
    position: relative;
}

    .thumb .date {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(0,0,0,.7);
        color: #fff;
        padding: 3px 6px;
        border-radius: 4px;
        font-size: .85rem;
    }

    .thumb img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.detail {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .detail .title {
        flex-grow: 0;
        height: 40px;
        overflow: hidden;
    }

        .detail .title a {
            font-weight: 700;
            color: #333;
            text-decoration: none;
        }

    .detail .desc {
        font-size: .9rem;
        color: #555;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-grow: 1;
    }

/* ====== RESPONSIVE ====== */

/* Tablet: linkleri küçült */
@media (max-width:992px) {
    .tum-duyurular-link {
        font-size: .9rem;
        padding: 6px 10px;
    }
}

/* Mobil: duyurular linki akışa girsin, sağa hizalansın; haberler linki de benzer */
@media (max-width:768px) {
    .duyurular-container {
        padding-bottom: 16px;
    }
    /* absolute kalktığı için normale dön */

    .tum-duyurular-link {
        position: static; /* akışa gir */
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        margin-top: 8px;
        margin-left: auto; /* sağa hizala */
        float: none;
        font-size: .9rem;
        padding: 6px 10px;
        white-space: normal; /* gerekirse sarılsın */
    }

    .duyuru-item {
        margin-bottom: 12px;
    }

        .duyuru-item .date-box {
            min-width: 46px;
            padding: 4px;
            font-size: .85rem;
        }

    .tum-haberler-link {
        float: none;
        display: inline-flex;
        margin-top: 8px;
        margin-left: auto;
        font-size: .9rem;
        padding: 6px 10px;
    }
}

/* Çok küçük cihazlar: biraz daha küçült */
@media (max-width:480px) {
    .tum-duyurular-link {
        font-size: .85rem;
        padding: 5px 8px;
    }

    .tum-haberler-link {
        font-size: .9rem;
        padding: 6px 10px;
    }
}

/* En küçük ekranlar (≤430px): linki üst-sağa sabitle, kutuya üst boşluk ekle */
@media (max-width:430px) {
    .duyurular-container {
        padding-top: 48px; /* üstteki link için yer */
        padding-bottom: 16px;
    }

    .tum-duyurular-link {
        position: absolute; /* tekrar absolute */
        top: 12px;
        right: 12px;
        margin: 0;
        font-size: .85rem;
        padding: 5px 10px;
        line-height: 1.2;
        border-radius: 6px;
        white-space: nowrap;
        z-index: 2;
    }
}
/* Mobil (≤576px) için aktif */
@media (max-width: 576px) {
    .no-js .owl-carousel,
    .owl-carousel.owl-loaded {
        display: block;
        margin-bottom: 50px;
    }
}
