/* Haberler.com Benzeri Header Tasarımı */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 13px;
}

/* Screen reader only - for SEO H1 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile container - full width */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Mobile Header */
.mobile-header {
    display: none;
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-header-left {
    flex: 0 0 auto;
}

.mobile-header-center {
    flex: 1;
    text-align: center;
}

.mobile-header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: #374151;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #f3f4f6;
}

.mobile-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-size: 0;
}

.mobile-logo .logo-today,
.mobile-logo .logo-news {
    display: inline-block;
    font-size: 20px;
}

.mobile-logo .logo-today {
    color: #222222;
}

.mobile-logo .logo-news {
    color: #dc2626;
}

.mobile-logo i {
    font-size: 22px;
    animation: pulse 2s ease-in-out infinite;
}

.mobile-search-icon,
.mobile-login-btn {
    color: #374151;
    text-decoration: none;
    font-size: 13px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-search-icon:hover,
.mobile-login-btn:hover {
    background: #f3f4f6;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.mobile-login-btn i {
    font-size: 14px;
}

/* Desktop Header */
.desktop-header {
    display: block;
}

/* Mobile Bottom Menu */
.mobile-bottom-menu {
    display: none;
    background: #dc2626;
    padding: 10px 0;
}

.mobile-bottom-menu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-secondary-nav {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.mobile-secondary-nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-align: center;
    flex: 1;
}

.mobile-secondary-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    background: #ffffff;
    width: 300px;
    height: 100%;
    padding: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.show .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    background: #dc2626;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #374151;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.3s ease;
}

.mobile-menu-item:hover {
    background: #f8f9fa;
}

.mobile-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 13px;
}

/* Search Page Styles */
.search-section {
    margin-bottom: 40px;
}

.search-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 20px;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 20px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-button {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background: #b91c1c;
}

.search-results-section {
    margin-top: 40px;
}

.search-results-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-results-header h1 {
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.search-results-header h1 i {
    color: #dc2626;
    margin-right: 10px;
}

.search-info {
    color: #6b7280;
    font-size: 13px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.no-results p {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 30px;
}

.search-suggestions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.search-suggestions p {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 10px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    color: #6b7280;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.search-suggestions li::before {
    content: "•";
    color: #dc2626;
    position: absolute;
    left: 0;
}

.search-intro {
    text-align: center;
    padding: 60px 20px;
}

.search-intro-icon {
    font-size: 64px;
    color: #dc2626;
    margin-bottom: 20px;
}

.search-intro h2 {
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.search-intro p {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 40px;
}

.search-examples {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.search-examples h4 {
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-tag {
    background: #dc2626;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.search-tag:hover {
    background: #b91c1c;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.load-more-btn:hover {
    background: #b91c1c;
}

.load-more-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Top Navigation Bar */
.header-top {
    position: relative;
    background: #161616;
    display: flex;
    align-items: center;
}

.header-top .container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 36px;
}

.header-top-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    position: relative;
    justify-content: space-between;
}

.desktop-menu-wrapper {
    position: relative;
    display: none !important; /* Mobil haricinde gizle */
    align-items: center;
    z-index: 10;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 0 !important;
}

.desktop-menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    display: none !important; /* Mobil haricinde gizle */
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10;
    visibility: hidden !important;
    opacity: 0 !important;
}

.desktop-menu-toggle:hover {
    opacity: 0.8;
}

.desktop-categories-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.desktop-categories-dropdown.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dropdown-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    max-width: 1600px;
    width: 95%;
    min-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.dropdown-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    font-size: 18px;
    transition: all 0.2s ease;
    z-index: 10;
}

.dropdown-close:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: rotate(90deg);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    border-radius: 16px 16px 0 0;
}

.categories-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 12px;
    background: #f9fafb;
    text-align: center;
}

.category-link:hover {
    background: #f3f4f6;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-link i {
    font-size: 32px;
    margin-bottom: 8px;
}

.category-name {
    font-size: 13px;
    line-height: 1.4;
}

/* Responsive dropdown grid */
@media (max-width: 1200px) {
    .categories-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .categories-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .dropdown-content {
        padding: 32px 24px;
        width: 95%;
    }
    
    .category-link {
        padding: 20px 12px;
    }
    
    .category-link i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .categories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .dropdown-content {
        padding: 24px 16px;
    }
    
    .category-link {
        padding: 16px 8px;
    }
    
    .category-link i {
        font-size: 24px;
    }
    
    .category-name {
        font-size: 12px;
    }
}

.header-top-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-width: 0;
    height: 36px;
    line-height: 36px;
}

.logo-top {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-size: 0;
    height: 100%;
    line-height: 1;
}

.logo-top .logo-today,
.logo-top .logo-news {
    display: inline-block;
    font-size: 20px;
}

.logo-top .logo-today {
    color: #ffffff;
}

.logo-top .logo-news {
    color: #dc2626;
}

.logo-top i {
    font-size: 26px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.header-top-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-width: 0;
    height: 60px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.main-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.main-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    position: relative;
    transition: opacity 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.main-nav .nav-link:hover {
    color: #E63946;
}

.login-btn {
    background: #ffffff;
    color: #dc2626;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #dc2626;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Bottom Gray Bar */
.header-bottom {
    background: #f5f5f5;
    height: 35px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e1dada;
}

.header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
    min-height: 35px;
}

.header-search-bar {
    flex: 0 0 260px;
    display: flex;
    justify-content: center;
    position: relative;
}

.header-search-form {
    position: relative;
    width: 100%;
    max-width: 260px;
    display: flex;
    z-index: 1011;
}

.header-search-input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 999px 0 0 999px;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.header-search-input:focus {
    border-color: #dc2626;
}

.header-search-button {
    border: 1px solid #d1d5db;
    border-left: none;
    background: #dc2626;
    color: #ffffff;
    padding: 0 14px;
    border-radius: 0 999px 999px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-button:hover {
    background: #b91c1c;
}

.trending-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}

.trending-label {
    font-weight: 700;
    white-space: nowrap;
    color: #1f2937;
    flex-shrink: 0;
}

.trending-list {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.mobile-categories-button {
    display: none;
    align-items: center;
    gap: 6px;
    background: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-categories-button i {
    font-size: 14px;
}

.mobile-categories-button:hover {
    background: #b91c1c;
}

.header-bottom-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.categories-dropdown {
    position: relative;
    display: none; /* Desktop'ta gizli */
}

/* Sadece mobilde Tüm Kategoriler göster */
@media (max-width: 768px) {
    .categories-dropdown {
        display: block;
    }
}

.menu-toggle {
    background: none;
    border: none;
    color: #333333;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
    display: none; /* Desktop'ta gizli */
}

/* Sadece mobilde hamburger menü göster */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

.menu-toggle:hover {
    color: #dc2626;
}

.categories-text {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-bottom-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.secondary-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.secondary-nav a {
    color: #333333;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 0 12px;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.secondary-nav a:hover {
    color: #dc2626;
}

.secondary-nav a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #d1d5db;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.main-content-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

@media (max-width: 768px) {
    .main-content {
        max-width: 100%;
        padding: 10px 15px;
    }
}

/* Mobile main content - full width */
@media (max-width: 768px) {
    .main-content-single {
        max-width: 100%;
        padding: 20px 15px;
    }
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-top: 30px;
}

.content-main {
    min-width: 0;
}

.content-main-full {
    width: 100%;
}

/* Featured Section */
.featured-section {
    margin-bottom: 50px;
}

.featured-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-section h2 i {
    color: #dc2626;
}

/* Haberler.com Benzeri Manşet Tasarımı */
.featured-manset {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.manset-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.manset-main:hover {
    transform: translateY(-4px);
}

.manset-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.manset-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #ffffff;
    padding: 40px 30px 30px;
}

.manset-content {
    max-width: 100%;
}

.manset-category {
    background: #dc2626;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.manset-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.manset-title a {
    color: inherit;
    text-decoration: none;
}

.manset-title a:hover {
    color: #ff6b6b;
}

.manset-meta {
    font-size: 14px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 20px;
}

.manset-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.manset-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.manset-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
    border-left: 4px solid #dc2626;
}

.manset-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-left-color: #b91c1c;
}

.manset-item-image {
    width: 120px;
    height: 90px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    flex-shrink: 0;
}

.manset-item-content {
    flex: 1;
}

.manset-item-category {
    background: #dc2626;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.manset-item-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.manset-item-title a {
    color: inherit;
    text-decoration: none;
}

.manset-item-title a:hover {
    color: #dc2626;
}

.manset-item-meta {
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 12px;
}

.manset-item-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Eski Featured Grid (Geriye Uyumluluk) */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.featured-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.featured-main:hover {
    transform: translateY(-4px);
}

.featured-main .news-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.featured-main .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #ffffff;
    padding: 40px 25px 25px;
}

.featured-main .category-tag {
    background: #dc2626;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-main .news-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.featured-main .news-title a {
    color: inherit;
    text-decoration: none;
}

.featured-main .news-meta {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 15px;
}

.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.featured-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.featured-item .news-image {
    width: 100px;
    height: 75px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    flex-shrink: 0;
}

.featured-item .news-content {
    flex: 1;
}

.featured-item .category-tag {
    background: #dc2626;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.featured-item .news-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.featured-item .news-title a {
    color: inherit;
    text-decoration: none;
}

.featured-item .news-meta {
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* News Section */
.news-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-section h2 i {
    color: #dc2626;
}

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

.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.news-card .news-image-container {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.news-card .news-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.news-card .news-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-card .category-tag-overlay {
    opacity: 0.5;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.news-card .news-content {
    padding: 10px 12px 10px 12px;
}

.news-card .news-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .news-title a {
    color: inherit;
    text-decoration: none;
}

.news-card .news-title a:hover {
    color: #dc2626;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #dc2626;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h3 i {
    color: #dc2626;
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: background 0.3s;
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 0 -15px;
}

.popular-item .news-image {
    width: 80px;
    height: 60px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-item .news-content {
    flex: 1;
}

.popular-item .news-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.popular-item .news-title a {
    color: inherit;
    text-decoration: none;
}

.popular-item .news-title a:hover {
    color: #dc2626;
}

.popular-item .news-meta {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Kategoriler Listesi */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid #f1f3f4;
}

.category-link:hover {
    background: #f8f9fa;
    color: #dc2626;
    transform: translateX(5px);
}

.category-link i {
    width: 20px;
    text-align: center;
    font-size: 13px;
}

.category-count {
    margin-left: auto;
    font-size: 12px;
    color: #6c757d;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}

.pagination .current {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #dc2626;
}

.footer-section p,
.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Header Show/Hide */
    .mobile-header {
        display: block;
    }
    
    .desktop-header {
        display: none;
    }
    
}

@media (max-width: 1024px) {
    .main-content {
        padding: 20px 15px;
    }
    
    .header-top .container,
    .header-bottom .container {
        padding: 0 15px;
    }
    
    .header-search-bar {
        flex: 0 0 200px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* İlgili haberler responsive */
    .related-news .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-manset {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 1024px altı için mobil header düzenlemeleri */
    .main-nav a:not(:first-child):nth-child(n+5) {
        display: none;
    }
    
    .header-bottom-left {
        display: none;
    }
    
    .manset-image {
        height: 300px;
    }
    
    .manset-title {
        font-size: 24px;
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .mobile-categories-button {
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        height: auto;
        padding: 10px 15px;
        min-height: auto;
    }
    
    .header-top-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .desktop-menu-wrapper {
        display: flex !important; /* Sadece mobilde göster */
        order: 1;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        min-width: auto !important;
        flex: 0 0 auto !important;
    }
    
    .desktop-menu-toggle {
        display: flex !important; /* Sadece mobilde göster */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .header-top-center {
        order: 2;
        width: 100%;
    }
    
    .header-top-left {
        order: 0;
        width: 100%;
        justify-content: center;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .main-nav a {
        padding: 5px 10px;
    }

    .header-bottom .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 15px;
    }

    .mobile-categories-button {
        display: inline-flex !important;
    }

    .trending-wrapper {
        width: 100%;
        gap: 6px;
    }

    .trending-label {
        font-size: 0.85rem;
    }

    .header-search-bar {
        width: 100%;
        flex: 0 0 auto;
    }

    .header-search-form {
        max-width: 100%;
    }
    
    .secondary-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .secondary-nav a {
        padding: 5px 8px;
        font-size: 12px;
    }
    
    /* İlgili haberler mobil */
    .related-news .news-grid {
        grid-template-columns: 1fr;
    }
    
    /* Article meta bottom mobil */
    .article-meta-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .article-reactions {
        justify-content: center;
        width: 100%;
    }
    
    .reaction-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Mobil header kategorileri - sadece 3 kategori */
    .main-nav a:not(:first-child):nth-child(n+5) {
        display: none;
    }
    
    /* Mobil header - tüm kategoriler butonu görünsün */
    .header-bottom-left {
        display: flex;
    }
    
    /* Mobilde categories popup'ı tam genişlik yap */
    .categories-popup {
        min-width: 280px;
        left: -50px;
    }
    
    /* Article header mobil */
    .article-header {
        padding: 10px 20px 0px;
        border-bottom: 0px;
    }
    
    /* Article meta top mobil */
    .article-meta-top {
        margin-left: 20px;
    }
    
    /* Article image mobil */
    .article-image {
        margin-bottom: -30px;
    }
}

/* 768px altı ekranlar için ekstra düzenlemeler */
@media (max-width: 768px) {
    /* Mobil header kategorileri - sadece 3 kategori */
    .main-nav a:not(:first-child):nth-child(n+5) {
        display: none;
    }
    
    /* Mobil header - tüm kategoriler butonu görünsün */
    .header-bottom-left {
        display: flex;
    }
    
    /* Mobilde categories popup'ı tam genişlik yap */
    .categories-popup {
        min-width: 280px;
        left: -50px;
    }
    
    /* Article header mobil */
    .article-header {
        padding: 10px 20px 0px;
        border-bottom: 0px;
    }
    
    /* Article meta top mobil */
    .article-meta-top {
        margin-left: 20px;
    }
    
    /* Article image mobil */
    .article-image {
        margin-bottom: -30px;
    }
    
    /* Article title mobil - %30 küçült */
    .article-title {
        font-size: 20px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .main-content-single {
        padding: 20px 15px;
    }
    
    .featured-manset {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .manset-image {
        height: 250px;
    }
    
    .manset-title {
        font-size: 20px;
    }
    
    .manset-overlay {
        padding: 30px 20px 20px;
    }
    
    .manset-item {
        padding: 15px;
        gap: 12px;
    }
    
    .manset-item-image {
        width: 100px;
        height: 75px;
    }
    
    .manset-item-title {
        font-size: 14px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .news-card .news-image-container {
        height: 120px;
    }
    
    .news-card .news-title {
        font-size: 14px;
    }
    
    .featured-main .news-title {
        font-size: 20px;
    }
    
    .featured-main .news-content {
        padding: 30px 20px 20px;
    }
    
    .news-card .news-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-top {
        font-size: 20px;
    }
    
    .main-nav a {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .login-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .manset-image {
        height: 200px;
    }
    
    .manset-title {
        font-size: 18px;
    }
    
    .manset-overlay {
        padding: 20px 15px 15px;
    }
    
    .manset-item {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .manset-item-image {
        width: 100%;
        height: 120px;
    }
    
    .featured-main .news-title {
        font-size: 18px;
    }
    
    .news-card .news-content {
        padding: 10px 12px 10px 12px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-card .news-image-container {
        height: 150px;
    }
    
    .news-card .news-title {
        font-size: 13px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination a,
    .pagination span {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card,
.featured-item,
.popular-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.loading-spinner i {
    font-size: 20px;
    color: #dc2626;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* News Detail Page Styles */
.breadcrumb {
    background: #f8f9fa;
    border-radius: 0;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #b91c1c;
}

.breadcrumb .separator,
.breadcrumb-separator {
    margin: 0 10px;
    color: #9ca3af;
}

.breadcrumb .current,
.breadcrumb-current {
    color: #6b7280;
    font-weight: 500;
}

.news-article {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

.article-header {
    padding: 10px 20px 0px;
    border-bottom: 0px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-date,
.article-views {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 400;
}

.article-content {
    padding: 0px 40px;
}

.article-image {
    margin-bottom: -30px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.article-text {
    font-size: 13px;
    line-height: 1.8;
    color: #374151;
    overflow: visible;
    word-wrap: break-word;
    max-width: 100%;
}

.article-text p {
    margin-bottom: 20px;
    overflow: visible;
    word-wrap: break-word;
}

.article-footer {
    /* CSS temizlendi - gereksiz stiller kaldırıldı */
}

.article-meta-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.article-meta-footer .category-tag {
    background: #dc2626;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-meta-footer .article-date,
.article-meta-footer .article-views {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.article-tags strong {
    color: #374151;
    font-weight: 600;
}

.tag {
    background: #dc2626;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.article-source {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.article-source strong {
    color: #374151;
    font-weight: 600;
}

.source-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border-radius: 6px;
    border: 2px solid #dc2626;
}

.source-link:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Article Source - Image altında */
.article-image .article-source {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 0;
    background: none;
    border: none;
}

.article-image .source-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #dc2626;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s;
}

.article-image .source-link:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Article Meta Top - Başlık üstüne */
.article-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-left: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.article-meta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-meta-right {
    display: flex;
    align-items: center;
    padding: 0px 15px 0px 0px;
}

.news-source-info {
    font-size: 12px;
    color: #6b7280;
}

.article-meta-top .category-tag {
    background: #dc2626;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.article-meta-top .article-date,
.article-meta-top .article-views {
    color: #6b7280;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta-top i {
    font-size: 12px;
}

/* Article Tags Top - Görsel üstüne */
.article-tags-top {
    margin: 0 0 15px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.article-tags-top strong {
    color: #374151;
    font-weight: 600;
    margin-right: 10px;
}

.article-tags-top .tag-link {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tags-top .tag-link:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

/* Article Meta Bottom */
.article-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}


.article-share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-share strong {
    color: #374151;
    font-weight: 600;
    margin-right: 8px;
}

/* Article Reactions - Inline */
.article-reactions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reaction-label {
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.reaction-buttons {
    display: flex;
    gap: 8px;
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.reaction-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #dc2626;
}

.reaction-btn.active {
    border-color: #dc2626;
    background: #fef2f2;
    color: #dc2626;
}

.reaction-btn i {
    font-size: 13px;
}

/* Renkli tepki ikonları */
.reaction-btn[data-reaction="like"] i {
    color: #3b82f6; /* Mavi */
}

.reaction-btn[data-reaction="love"] i {
    color: #ef4444; /* Kırmızı */
}

.reaction-btn[data-reaction="laugh"] i {
    color: #f59e0b; /* Sarı */
}

.reaction-btn[data-reaction="angry"] i {
    color: #dc2626; /* Koyu kırmızı */
}

.reaction-btn[data-reaction="sad"] i {
    color: #6b7280; /* Gri */
}

.reaction-btn.active[data-reaction="like"] {
    background: #dbeafe;
    border-color: #3b82f6;
}

.reaction-btn.active[data-reaction="love"] {
    background: #fee2e2;
    border-color: #ef4444;
}

.reaction-btn.active[data-reaction="laugh"] {
    background: #fef3c7;
    border-color: #f59e0b;
}

.reaction-btn.active[data-reaction="angry"] {
    background: #fee2e2;
    border-color: #dc2626;
}

.reaction-btn.active[data-reaction="sad"] {
    background: #f3f4f6;
    border-color: #6b7280;
}

.reaction-count {
    font-size: 11px;
    font-weight: 600;
}

.article-share strong {
    color: #374151;
    font-weight: 600;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.telegram {
    background: #0088cc;
}

.related-news {
    margin-bottom: 40px;
}

.related-news h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-news h2 i {
    color: #dc2626;
}

/* İlgili haberler için 3 sütunlu grid */
.related-news .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.related-item .related-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
}

.related-item .related-content {
    padding: 20px;
}

.related-item .related-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.related-item .related-title a {
    color: inherit;
    text-decoration: none;
}

.related-item .related-title a:hover {
    color: #dc2626;
}

.related-item .related-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
}

.related-item .related-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Notification Bar */
.notification-bar {
    position: fixed;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
}

.notification {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease-out;
}

.notification.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification i {
    font-size: 18px;
    flex-shrink: 0;
}

.notification .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.notification .close-btn:hover {
    background: rgba(0,0,0,0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Categories Popup */
.categories-popup {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.categories-popup.show {
    display: block;
}

.categories-popup-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f3f4;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.categories-popup-header h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.categories-popup-content {
    padding: 10px 0;
}

.categories-popup-item {
    display: block;
    padding: 12px 20px;
    color: #333333;
    text-decoration: none;
    transition: background 0.3s;
    border-bottom: 1px solid #f8f9fa;
}

.categories-popup-item:hover {
    background: #f8f9fa;
    color: #dc2626;
}

.categories-popup-item:last-child {
    border-bottom: none;
}

.categories-popup-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Comment Section Styles */
.comment-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.comment-header h3 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-header h3 i {
    color: #dc2626;
}

.comment-login-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.comment-login-notice p {
    color: #856404;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-login-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.google-login-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.comment-form {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: #1f2937;
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 15px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.submit-comment-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-comment-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-user-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.comment-date {
    color: #6b7280;
    font-size: 12px;
    margin-left: auto;
}

.comment-content {
    color: #374151;
    line-height: 1.6;
    font-size: 14px;
}

/* Print Styles */
@media print {
    .header,
    .sidebar,
    .footer {
        display: none;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        break-inside: avoid;
    }
}

/* Mobile: Hide date and view count in news detail pages */
@media (max-width: 768px) {
    .article-meta-top .article-date,
    .article-meta-top .article-views {
        display: none;
    }
}

/* ===== BREAKING NEWS CAROUSEL ===== */

.breaking-news-section {
    margin-bottom: 30px;
}

.breaking-news-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.breaking-news-carousel {
    position: relative;
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.breaking-news-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.breaking-news-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.breaking-news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breaking-news-slide.active {
    opacity: 1;
}

.breaking-news-slide .breaking-news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.breaking-news-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.breaking-news-link:hover {
    text-decoration: none;
    color: inherit;
}

.breaking-news-slide .breaking-news-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breaking-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 20px;
}

.breaking-news-title-container {
    background: rgba(32, 32, 31, 0.42);
    padding: 20px 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    margin: 0 auto;
    max-width: 800px;
}

.breaking-news-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breaking-news-title a:hover {
    color: #e63946 !important;
    transition: color 0.3s ease;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Pagination Dots - Top Right */
.carousel-pagination-top {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.pagination-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.pagination-dot.active {
    background: #dc2626;
    border-color: #dc2626;
    transform: scale(1.2);
}

/* Desktop Layout */
@media (min-width: 1025px) {
    .breaking-news-wrapper {
        gap: 25px;
    }
    
    .breaking-news-carousel {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .breaking-news-wrapper {
        gap: 20px;
    }
    
    .breaking-news-carousel {
        flex: 0 0 100%;
        max-width: 100%;
        height: 350px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breaking-news-wrapper {
        display: block;
        gap: 0;
    }
    
    .breaking-news-carousel {
        width: 100%;
        height: 300px;
        border-radius: 8px;
        flex: none;
        max-width: 100%;
    }
    
    .breaking-news-title {
        font-size: 1.2rem;
    }
    
    .breaking-news-title-container {
        padding: 15px 20px;
    }
    
    .carousel-pagination-top {
        top: 15px;
        right: 15px;
        gap: 6px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .pagination-dot {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .breaking-news-carousel {
        height: 250px;
    }
    
    .breaking-news-title {
        font-size: 1rem;
    }
    
    .breaking-news-title-container {
        padding: 12px 15px;
    }
    
    .carousel-pagination-top {
        top: 10px;
        right: 10px;
        gap: 4px;
    }
    
    .pagination-dot {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }
}

.header-search-form.has-suggestions .header-search-input {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.header-search-form.has-suggestions .header-search-button {
    border-bottom-right-radius: 0;
}

.header-search-suggestions {
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    max-height: 320px;
    overflow-y: auto;
    display: none;
    padding: 8px 0;
    z-index: 1010;
}

.header-search-suggestions.visible {
    display: block;
}

.header-search-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-search-suggestions li {
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.header-search-suggestions li:hover,
.header-search-suggestions li.is-active {
    background-color: #f3f4f6;
}

.header-search-suggestions li .suggestion-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.header-search-suggestions li .suggestion-meta {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-search-suggestions .suggestion-empty {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Sports Videos Section - Above main-content */
.sports-videos-section {
    background: #fff;
    padding: 30px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.sports-videos-section .container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 20px;
    width: 100% !important;
    overflow: visible !important;
}

.sports-videos-section {
    overflow: visible !important;
}

/* Left Sidebar - Categories */
.left-sidebar {
    position: sticky;
    top: 100px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sports-videos-header {
    margin-bottom: 20px;
}

.sports-videos-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.sports-videos-title i {
    color: #dc2626;
    font-size: 1.6rem;
}

.sports-videos-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 15px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    width: 100%;
    max-width: 100%;
    cursor: grab;
    user-select: none;
}

.sports-videos-grid:active {
    cursor: grabbing;
}

.sports-videos-grid::-webkit-scrollbar {
    height: 8px;
}

.sports-videos-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sports-videos-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.sports-videos-grid::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.sports-video-item {
    flex: 0 0 152px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    transition: transform 0.3s ease;
    min-width: 152px !important;
    max-width: 152px !important;
    width: 152px !important;
    cursor: grab;
    user-select: none;
}

.sports-video-item:active {
    cursor: grabbing;
}

.sports-video-item:hover {
    transform: translateY(-5px);
}

.sports-video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sports-video-image {
    position: relative;
    width: 152px !important;
    height: 101px !important;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f6;
    margin-bottom: 10px;
    flex-shrink: 0 !important;
    max-width: 152px !important;
    min-width: 152px !important;
}

.sports-video-image img {
    width: 152px !important;
    height: 101px !important;
    max-width: 152px !important;
    min-width: 152px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    pointer-events: none;
}

.sports-video-item:hover .sports-video-image img {
    transform: scale(1.05);
}

.sports-video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.sports-video-item:hover .sports-video-play-overlay {
    opacity: 1;
    background: rgba(220, 38, 38, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.sports-video-play-overlay i {
    color: white;
    font-size: 24px;
    margin-left: 3px;
}

.sports-video-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.24em;
}

.sports-video-item:hover .sports-video-title {
    color: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
    .sports-videos-section {
        padding: 20px 0 !important;
        margin-bottom: 15px !important;
    }
    
    .sports-videos-section .container {
        padding: 0 15px !important;
    }
    
    .sports-videos-grid {
        gap: 12px !important;
        padding-bottom: 15px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .sports-video-item {
        flex: 0 0 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;
        width: 120px !important;
    }
    
    .sports-video-image {
        width: 120px !important;
        height: 80px !important;
        max-width: 120px !important;
        min-width: 120px !important;
    }
    
    .sports-video-image img {
        width: 120px !important;
        height: 80px !important;
        max-width: 120px !important;
        min-width: 120px !important;
    }
    
    .sports-videos-title {
        font-size: 1.2rem !important;
    }
    
    .sports-video-title {
        font-size: 0.75rem !important;
        min-height: 2.4em !important;
    }
    
    .sports-video-play-overlay {
        width: 50px !important;
        height: 50px !important;
    }
    
    .sports-video-play-overlay i {
        font-size: 20px !important;
    }
}

/* Live News Section Styles */
.news-feed .category-header {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    margin-bottom: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.news-feed .widget-content {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
}

.news-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(135deg, #ff082d45 0%, #ffffff 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-feed .category-title {
    margin: 0 !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #000000 !important;
}

.news-feed .widget-content li h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1f2937;
    line-height: 1.4;
}

.news-feed .widget-content li h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: none;
}

.news-feed .widget-content li h3 a:hover {
    color: #1f2937;
}
