 
    .breadcrumb {
        background-image: url("../img/breadcrumb_1.png");
        background-repeat: no-repeat;
        height: 160px;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .breadcrumb::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #02020277;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
    }
    
    .breadcrumb h2 {
        position: relative;
        z-index: 50;
        font-size: 36px;
        font-weight: 600;
    }
    
    .featured-news {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 30px;
    }
    
    .featured-news img {
        height: 450px;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .category-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
    }
    
    .category-badge span {
        background-color: rgba(166, 30, 34, 0.9);
        color: white;
        padding: 5px 15px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
    }
    
    .featured-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
        border-radius: 0 0 8px 8px;
    }
    
    .featured-title {
        color: white;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .author-info {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
        color: #b0b0b0;
    }
    
    .author-name {
        margin-right: 10px;
    }
    
    .date-separator {
        margin: 0 10px;
    }
    
    .featured-excerpt {
        color: #d0d0d0;
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Yan Haberler */
    .side-news-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        /* justify-content: space-between; */
    }
    
    .side-news-item {
        background-color: #222;
        border-radius: 8px;
        overflow: hidden;
        padding: 15px;
    }
    
    .side-news-content {
        flex: 1;
        padding-right: 15px;
    }
    
    .side-news-title {
        font-size: 18px;
        font-weight: 600;
        color: white;
        margin-bottom: 10px;
    }
    
    .side-news-excerpt {
        font-size: 14px;
        color: #b0b0b0;
        margin-bottom: 10px;
    }
    
    .side-news-date {
        font-size: 12px;
        color: #888;
    }
    
    .side-news-image {
        width: 120px;
        height: 80px;
    }
    
    .side-news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }
    
    /* Bölüm Başlıkları */
    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    
    .section-subtitle {
        font-size: 16px;
        color: #b0b0b0;
    }
    
    /* Sıralama ve Görünüm */
    .sort-dropdown .btn {
        background-color: #222;
        border: 1px solid #333;
        color: white;
        padding: 10px 20px;
    }
    
    .dropdown-menu-dark {
        background-color: #222;
        border: 1px solid #333;
    }
    
    .dropdown-item {
        color: #e0e0e0;
    }
    
    .dropdown-item:hover, .dropdown-item.active {
        background-color: #333;
        color: white;
    }
    
    .view-options .btn {
        background-color: #222;
        border: 1px solid #333;
        color: #888;
        margin-left: 5px;
        padding: 6px 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .view-options .btn.active {
        background-color: #333;
        color: white;
    }
    
    .view-options svg {
        width: 16px;
        height: 16px;
    }
    
    /* Arama Kutusu */
    .search-container {
        position: relative;
    }
    
    .search-input {
        background-color: #222;
        border: 1px solid #333;
        color: white;
        padding: 12px 20px;
        padding-right: 50px;
        border-radius: 4px;
        width: 100%;
    }
    
    .search-input::placeholder {
        color: #888;
    }
    
    .search-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #888;
        cursor: pointer;
        transition: color 0.3s;
    }
    
    .search-btn:hover {
        color: white;
    }
    
    /* Haber Kartları */
    .news-card {
        background-color: #222;
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }
    
    .news-card:hover {
        transform: translateY(-5px);
    }
    
    .news-card-image {
        position: relative;
        height: 220px;
    }
    
    .news-card-category {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 10;
    }
    
    .news-card-category span {
        background-color: rgba(166, 30, 34, 0.9);
        color: white;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 12px;
    }
    
    .news-card-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index:2;
    }
    
    .news-card-title {
        font-size: 20px;
        font-weight: 600;
        color: white;
        margin-bottom: 15px;
    }
    
    .news-card-excerpt {
        font-size: 14px;
        color: #b0b0b0;
        margin-bottom: 15px;
        flex: 1;
    }
    
    .news-card-footer {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }
    
    .author {
        color: #b0b0b0;
    }
    
    .date {
        color: #888;
    }
    
    /* Swiper Slider Stilleri */
    .swiper-container {
        width: 100%;
        height: 100%;
    }
    
    .swiper-slide {
        width: 100%;
        height: 100%;
    }
    
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease, background-color 0.3s ease;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        display: none;
    }
    
    .news-card:hover .swiper-button-prev,
    .news-card:hover .swiper-button-next {
        opacity: 1;
    }
    
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background-color: rgba(166, 30, 34, 0.8);
    }
    
    .swiper-pagination {
        bottom: 10px !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background-color: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
    
    .swiper-pagination-bullet-active {
        background-color: white;
    }
    
    /* Görünüm Modları */
    .news-grid-view-2 .news-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .news-grid-view-3 .news-item {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .news-list-view .news-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .news-list-view .news-card {
        flex-direction: row;
    }
    
    .news-list-view .news-card-image {
        width: 300px;
        height: auto;
    }
    
    .news-list-view .news-card-content {
        flex: 1;
    }
    
    /* Sayfalama */
    .pagination-container {
        margin-top: 40px;
    }
    
    .pagination .page-link {
        background-color: #222;
        border: 1px solid #333;
        color: #b0b0b0;
        margin: 0 3px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
    }
    
    .pagination .page-item.active .page-link {
        background-color: #a61e22;
        border-color: #a61e22;
        color: white;
    }
    
    .pagination-info {
        margin-top: 15px;
        color: #888;
        font-size: 14px;
    }
    
    /* Sidebar Bölümleri */
    .sidebar-section {
        background-color: #222;
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .sidebar-title {
        font-size: 24px;
        font-weight: 600;
        color: white;
        margin-bottom: 20px;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
    }
    
    /* Kategoriler */
    .categories-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .category-tag {
        background-color: #2a2a2a;
        color: white;
        padding: 8px 15px;
        border-radius: 4px;
        font-size: 14px;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    
    .category-tag:hover {
        background-color: #333;
        color: white;
        text-decoration: none;
    }
    
    .count {
        color: #888;
        font-size: 12px;
    }
    
    /* Yazarlar */
    .authors-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .author-tag {
        background-color: #2a2a2a;
        color: white;
        padding: 8px 15px;
        border-radius: 4px;
        font-size: 14px;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    
    .author-tag:hover {
        background-color: #333;
        color: white;
        text-decoration: none;
    }
    
    /* Etiketler */
    .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tag {
        background-color: #2a2a2a;
        color: white;
        padding: 8px 15px;
        border-radius: 4px;
        font-size: 14px;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    
    .tag:hover {
        background-color: #333;
        color: white;
        text-decoration: none;
    }
    
    /* Responsive Düzenlemeler */
    @media (max-width: 992px) {
        .featured-news img {
            height: 350px;
        }
        
        .featured-title {
            font-size: 24px;
        }
        
        .side-news-container {
            margin-top: 30px;
        }
        
        .news-list-view .news-card {
            flex-direction: column;
        }
        
        .news-list-view .news-card-image {
            width: 100%;
            height: 220px;
        }
    }
    
    @media (max-width: 768px) {
        .featured-news img {
            height: 300px;
        }
        
        .featured-title {
            font-size: 20px;
        }
        
        .news-card-image {
            height: 180px;
        }
        
        .news-grid-view-2 .news-item,
        .news-grid-view-3 .news-item {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    .side-news-container::-webkit-scrollbar {
    width: 6px;
}

.side-news-container::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}

.side-news-container::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
}

.side-news-container::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Card styling */
.news-card {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
}

.news-item {
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-card-category span {
    background-color: rgba(166, 30, 34, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-card-excerpt {
    color: #b0b0b0;
    margin-bottom: 15px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
}

.author {
    color: #b0b0b0;
}

.date {
    color: #888;
} 

.contact-button{
    background-color: var(--red);
    color: var(--white);
}
.image img{
    object-fit: cover;
    width:100%;
    height: 500px;
} 
#body{
    padding: 110px 0 0;
    background: #181818;
    color:white;
}
#header{
    background-color:#181818 !important
}
@media  only screen and (max-width: 768px) {
    #body{
        padding: 0px 0 0 !important;
    }
    #header{
       position: relative; 
    }
}