/* ---------------------------------------------------
   NEWS PAGE — PROMO OVERRIDE (görseller cover)
--------------------------------------------------- */

.news-promo .promo-slide-media img {
    object-fit: cover;
}

/* ---------------------------------------------------
   NEWS PROMO — TITLE/DATE (match detail hero)
--------------------------------------------------- */

.news-promo .news-detail-date {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 16px;
}

.news-promo .news-detail-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: #fff;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .news-promo .news-detail-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 575px) {
    .news-promo .news-detail-title {
        font-size: 28px;
        line-height: 36px;
    }
}


/* ---------------------------------------------------
   NEWS PAGE — BREADCRUMB & FILTERS
--------------------------------------------------- */

.news-filters-section {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.news-breadcrumb a {
    color: #666;
    transition: 0.2s;
}

.news-breadcrumb a:hover {
    color: #000;
}

.breadcrumb-sep {
    color: #999;
}

.breadcrumb-current {
    color: #000;
    font-weight: 500;
}

/* Filters */
.news-filters {
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-filters-label {
    font-size: 14px;
    color: #666;
}

.news-filters-arrow {
    color: #999;
    font-size: 14px;
}

.news-filters-list {
    display: flex;
    gap: 12px;
}

.news-filter-btn {
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: 0.25s ease;
}

.news-filter-btn:hover {
    border-color: #000;
}

.news-filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}


/* ---------------------------------------------------
   NEWS PAGE — CATEGORY FILTER (Horizontal Scroll)
--------------------------------------------------- */

.news-category-filter {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

.filter-label {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    white-space: nowrap;
}

.filter-arrows {
    display: flex;
    gap: 8px;
}

.filter-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.filter-arrow:hover:not(:disabled) {
    border-color: #000;
    background: #000;
}

.filter-arrow:hover:not(:disabled) img {
    filter: brightness(0) invert(1);
}

.filter-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.filter-arrow img {
    width: 16px;
    height: 16px;
    transition: 0.25s ease;
}

.filter-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-categories::-webkit-scrollbar {
    display: none;
}

.filter-category-btn {
    padding: 12px 28px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.25s ease;
    min-width: 180px; text-align: center;
}

.filter-category-btn:hover {
    border-color: #000;
}

.filter-category-btn.active {
    background: #000;
    color: #FCE300;
    border-color: #000;
}


/* ---------------------------------------------------
   NEWS PAGE — PAGINATION
--------------------------------------------------- */

.news-pagination-wrapper {
    max-width: 600px; margin: 0px auto;margin-top: 40px;
}

.news-pagination-wrapper .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 0;
    list-style: none;
}

.news-pagination-wrapper .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-pagination-wrapper .page-link {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.25s ease;
    padding: 0;
}

.news-pagination-wrapper .page-link:hover {
    color: #000;
}

.news-pagination-wrapper .page-item.active .page-link {
    background: #000;
    color: #FCE300;
}

.news-pagination-wrapper .page-item.disabled .page-link {
    color: #999;
    cursor: default;
}

.news-pagination-wrapper .page-item.disabled .page-link.dots {
    min-width: auto;
}

.news-pagination-wrapper .page-link img {
    width: 20px;
    height: 20px;
}

.news-pagination-wrapper .page-item.disabled .page-link img {
    opacity: 0.3;
}

.news-pagination-num.highlight {
    background: #F4D324;
    border-color: #F4D324;
}

.news-pagination-dots {
    padding: 0 8px;
    color: #999;
}


/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */

@media (max-width: 1600px) {
    .page-news .news-card-body{ height: 180px; }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 0 20px;
        background: linear-gradient(to bottom, #FCE300 280px, #F8F8F8 280px);
        overflow-x: hidden;
    }

    .news-hero-slide {
        height: auto;
        min-height: 400px;
    }

    .news-hero-content {
        max-width: 100%;
        padding: 40px 20px;
    }

    .news-hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .news-hero-counter {
        left: 15px;
    }

    .news-hero-arrows {
        right: 15px;
    }

    .news-hero-arrows button {
        width: 44px;
        height: 44px;
    }

    .news-breadcrumb {
        padding: 20px 0;
    }

    .news-filters {
        padding: 30px 0;
    }

    .news-category-filter {
        gap: 16px;
        padding: 12px 16px;
    }

    .filter-label {
        font-size: 13px;
    }

    .filter-arrow {
        width: 28px;
        height: 28px;
    }

    .filter-arrow img {
        width: 14px;
        height: 14px;
    }

    .filter-category-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .news-grid-section {
        padding: 40px 0 60px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .page-news .news-card-body {
        padding: 20px 18px;
        height: 220px;
    }

    .page-news .news-card-title {
        font-size: 15px;
        line-height: 1.4;
    }

    .page-news .news-card-link {
        margin-top: 16px;
        font-size: 13px;
    }

    .pagination {
        margin-top: 40px;
    }

    .news-pagination-wrapper .pagination {
        padding: 12px 20px;
        gap: 6px;
    }

    .news-pagination-wrapper .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .news-pagination-wrapper .page-link img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .news-hero {
        padding: 0 16px;
        background: linear-gradient(to bottom, #FCE300 240px, #F8F8F8 240px);
    }

    .news-hero-slide {
        min-height: 350px;
    }

    .news-hero-content {
        padding: 30px 16px;
    }

    .news-hero-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .news-hero-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .news-hero-counter,
    .news-hero-arrows {
        display: none;
    }

    .news-category-filter {
        gap: 12px;
        padding: 10px 14px;
    }

    .filter-label {
        font-size: 12px;
    }

    .filter-arrow {
        width: 26px;
        height: 26px;
    }

    .filter-arrow img {
        width: 12px;
        height: 12px;
    }

    .filter-category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .news-pagination-wrapper .pagination {
        padding: 10px 16px;
        gap: 4px;
    }

    .news-pagination-wrapper .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .news-pagination-wrapper .page-link img {
        width: 16px;
        height: 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-news .news-card-body {
        padding: 20px 16px;
        height: 220px;
    }

    .page-news .news-card-title {
        font-size: 14px;
    }
}
