/**
 * HaberPortal - Ana Stil Dosyası
 * Modern Türkçe Haber Sitesi
 */

/* ============================================
   CSS DEĞİŞKENLERİ
   ============================================ */
:root {
    /* Ana Renkler */
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --secondary: #1976d2;
    --accent: #ff6f00;
    
    /* Metin Renkleri */
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-muted: #9e9e9e;
    --text-white: #ffffff;
    
    /* Arkaplan Renkleri */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-dark: #212121;
    --bg-darker: #1a1a1a;
    
    /* Kenarlık */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    
    /* Gölge */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Font */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Boyutlar */
    --header-height: 60px;
    --container-width: 1280px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-secondary);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
}

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

.sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* ============================================
   HEADER
   ============================================ */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 0.8125rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-weather {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.top-bar-links a:hover {
    color: white;
}

.top-bar-links a i {
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--text-white);
}

/* Main Header */
.main-header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--primary);
}

/* Search */
.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
}

.search-form {
    display: flex;
    background: var(--bg-secondary);
    border-radius: 50px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: none;
    font-size: 17px;
    outline: none;
}

.search-form button {
    padding: 0 20px;
    color: var(--text-secondary);
}

.search-form button:hover {
    color: var(--primary);
}

/* User Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Navigation */
.main-nav {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 17px;
    color: var(--text-primary);
    transition: all 0.2s;
}

.nav-link i {
    font-size: 0.875rem;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary);
    background: rgba(211, 47, 47, 0.05);
}

.nav-item.highlight .nav-link {
    color: var(--primary);
}

/* Menu Style: Dark */
.main-nav.menu-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.main-nav.menu-dark .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 20px;
}

.main-nav.menu-dark .nav-link:hover,
.main-nav.menu-dark .nav-item.active .nav-link {
    color: #ff6b6b;
    background: rgba(255, 255, 255, 0.08);
}

.main-nav.menu-dark .nav-link i {
    color: #ff6b6b;
}

/* Menu Style: Gradient */
.main-nav.menu-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-top: none;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.main-nav.menu-gradient .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 16px 20px;
    position: relative;
}

.main-nav.menu-gradient .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav.menu-gradient .nav-link:hover::after,
.main-nav.menu-gradient .nav-item.active .nav-link::after {
    width: calc(100% - 40px);
}

.main-nav.menu-gradient .nav-link:hover,
.main-nav.menu-gradient .nav-item.active .nav-link {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.main-nav.menu-gradient .nav-link i {
    color: rgba(255, 255, 255, 0.7);
}

.main-nav.menu-gradient .nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

/* Menu Style: Underline / Şeffaf */
.main-nav.menu-underline {
    background: transparent;
    border-top: none;
    border-bottom: 3px solid var(--primary);
    position: relative;
}

.main-nav.menu-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(211, 47, 47, 0.03) 100%);
    pointer-events: none;
}

.main-nav.menu-underline .nav-link {
    color: var(--text-primary);
    padding: 18px 22px;
    position: relative;
    font-weight: 500;
}

.main-nav.menu-underline .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff6b6b);
    transition: width 0.3s ease;
}

.main-nav.menu-underline .nav-link:hover::after,
.main-nav.menu-underline .nav-item.active .nav-link::after {
    width: 100%;
}

.main-nav.menu-underline .nav-link:hover {
    color: var(--primary);
    background: transparent;
}

.main-nav.menu-underline .nav-item.active .nav-link {
    color: var(--primary);
    font-weight: 700;
    background: transparent;
}

.main-nav.menu-underline .nav-link i {
    transition: transform 0.3s ease;
}

.main-nav.menu-underline .nav-link:hover i {
    transform: translateY(-2px);
}

/* Menu Style: Newspaper / Gazete */
.main-nav.menu-newspaper {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav.menu-newspaper .container {
    border-bottom: none;
}

.main-nav.menu-newspaper .nav-list {
    justify-content: flex-start;
    gap: 0;
}

.main-nav.menu-newspaper .nav-link {
    color: #1a1a1a;
    padding: 14px 20px;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.01em;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav.menu-newspaper .nav-link i {
    display: none;
}

.main-nav.menu-newspaper .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #e0e0e0;
}

.main-nav.menu-newspaper .nav-item:first-child .nav-link::before {
    display: none;
}

.main-nav.menu-newspaper .nav-link:hover {
    color: #666;
    background: transparent;
}

.main-nav.menu-newspaper .nav-item.active .nav-link {
    color: #1a1a1a;
    font-weight: 600;
    background: transparent;
}

.main-nav.menu-newspaper .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #1a1a1a;
}

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */
.breaking-news {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    overflow: hidden;
}

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breaking-label {
    background: white;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
    animation: pulse 1.5s infinite;
}

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

.breaking-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    padding-right: 60px;
    font-size: 17px;
}

.ticker-item a {
    color: white;
}

.ticker-item a:hover {
    text-decoration: underline;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Modern Breaking News Style */
.breaking-news-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.breaking-news-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 65, 108, 0.1) 25%, 
        rgba(255, 75, 43, 0.1) 50%, 
        rgba(255, 65, 108, 0.1) 75%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.breaking-news-modern .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0;
}

.breaking-news-modern .breaking-badge {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    padding: 14px 20px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    padding-right: 30px;
}

.breaking-news-modern .breaking-badge i {
    animation: flash 1s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.breaking-news-modern .breaking-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 15px;
    overflow: hidden;
}

.breaking-news-modern .breaking-single {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.breaking-news-modern .breaking-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.breaking-news-modern .breaking-title {
    font-size: 17px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breaking-news-modern .breaking-title:hover {
    color: #ff416c;
}

.breaking-news-modern .breaking-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 15px;
}

.breaking-news-modern .breaking-nav button {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breaking-news-modern .breaking-nav button:hover {
    background: rgba(255, 65, 108, 0.5);
}

.breaking-news-modern .breaking-counter {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 10px;
}

/* ============================================
   NEWS CARDS
   ============================================ */
.news-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.news-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.video-play-btn i {
    margin-left: 4px; /* Optik hizalama için */
}

.news-card:hover .video-play-btn {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.news-card-image.has-video::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
    pointer-events: none;
}

/* Video badge */
.video-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 6;
}

.video-badge i {
    font-size: 0.75rem;
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a:hover {
    color: var(--primary);
}

.news-card-spot {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.news-card-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-card-meta i {
    margin-right: 4px;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider-section {
    padding: 30px 0 40px;
}

.hero-slider-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    height: 520px;
}

.hero-slider {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-dark);
}

/* Desktop only items - hide on mobile */
.desktop-only {
    display: flex;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 120px 40px 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
}

.hero-slide-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-slide-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-slide-title a {
    color: white;
}

.hero-slide-title a:hover {
    color: rgba(255,255,255,0.9);
}

.hero-slide-spot {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-slide-meta {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.hero-slide-meta i {
    margin-right: 6px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Navigation - Right Side Vertical */
.slider-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 320px;
    flex-shrink: 0;
}

.slider-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    color: inherit;
    background: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.slider-nav-item:hover {
    background: var(--bg-secondary);
    transform: translateX(-5px);
    cursor: pointer;
}

.slider-nav-item:active {
    transform: translateX(-3px) scale(0.98);
}

.slider-nav-item.active {
    background: var(--primary);
    color: white;
    transform: translateX(-5px);
}

.slider-nav-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 40px;
    opacity: 0.5;
}

.slider-nav-item.active .slider-nav-number {
    color: white;
    opacity: 0.6;
}

.slider-nav-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.slider-nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.5);
    width: 0;
    transition: width 0.1s linear;
}

.slider-nav-item.active .slider-nav-progress {
    animation: sliderProgress 5s linear forwards;
}

@keyframes sliderProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* ============================================
   AUTHORS SECTION
   ============================================ */
.authors-section {
    padding: 30px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.authors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.authors-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.authors-section-title i {
    color: var(--primary);
}

.authors-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.authors-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.authors-slider::-webkit-scrollbar {
    height: 4px;
}

.authors-slider::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 2px;
}

.authors-slider::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    min-width: 200px;
    max-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.author-card:hover {
    background: var(--border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar span {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-name {
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-bio {
    font-size: 0.6875rem;
    color: var(--text-muted);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Featured News Card (Legacy) */
.news-card-featured {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
}

.news-card-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-card-featured .news-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 30px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.news-card-featured .news-card-title {
    font-size: 1.75rem;
    color: white;
    -webkit-line-clamp: 3;
}

.news-card-featured .news-card-meta {
    color: rgba(255,255,255,0.8);
}

/* Horizontal News Card */
.news-card-horizontal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
}

.news-card-horizontal:last-child {
    border-bottom: none;
}

.news-card-horizontal:hover {
    transform: none;
    background: var(--bg-secondary);
}

.news-card-horizontal .news-card-image {
    width: 120px;
    height: 80px;
    min-width: 120px;
    aspect-ratio: auto;
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

.news-card-horizontal .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-horizontal .news-card-content {
    padding: 0;
    flex: 1;
}

.news-card-horizontal .news-card-title {
    font-size: 17px;
    margin-bottom: 8px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.section-title {
    font-size: 1.375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary);
}

.section-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.news-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.news-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Related News Cards */
.related-news .news-card {
    display: flex;
    flex-direction: column;
}

.related-news .news-card-image {
    height: 180px;
    aspect-ratio: auto;
}

.related-news .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Side Headlines (Fixed Height Images) */
.side-headlines .news-card-image {
    height: 140px;
    aspect-ratio: auto;
}

.side-headlines .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category Section Main News */
.category-main-news .news-card-image {
    height: 280px;
    aspect-ratio: auto;
}

.category-main-news .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-widget {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: var(--primary);
}

/* Popular News Widget */
.popular-news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.popular-news-item:first-child {
    padding-top: 0;
}

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

.popular-news-number {
    width: 35px;
    height: 35px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.popular-news-item:nth-child(1) .popular-news-number {
    background: var(--primary);
    color: white;
}

/* Authors Widget (Vertical) */
.authors-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.author-item-vertical {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-item-vertical:first-child {
    padding-top: 0;
}

.author-item-vertical:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.author-item-vertical:hover {
    padding-left: 8px;
}

.author-avatar-sm {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-sm span {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info-vertical {
    flex: 1;
    min-width: 0;
}

.author-info-vertical h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-item-vertical:hover h4 {
    color: var(--primary);
}

.author-bio-sm {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-article-count {
    font-size: 0.6875rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 2px 8px;
    border-radius: 10px;
}

.view-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: var(--primary);
    color: white;
}

/* Author Item Wrapper */
.author-item-wrapper {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.author-item-wrapper:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.author-item-wrapper .author-item-vertical {
    border-bottom: none;
    padding-bottom: 0;
}

.author-latest-article {
    display: block;
    margin-top: 8px;
    margin-left: 57px;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.author-latest-article i {
    color: var(--primary);
    margin-right: 6px;
    font-size: 0.75rem;
}

.author-latest-article:hover {
    background: var(--primary);
    color: white;
}

.author-latest-article:hover i {
    color: white;
}

.popular-news-item:nth-child(2) .popular-news-number {
    background: var(--secondary);
    color: white;
}

.popular-news-item:nth-child(3) .popular-news-number {
    background: var(--accent);
    color: white;
}

.popular-news-content h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.popular-news-content span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Ad Placeholder */
.ad-placeholder {
    padding: 0 !important;
    overflow: hidden;
}

.ad-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    border: 2px dashed #c5ccd6;
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 30px 20px;
}

.ad-placeholder-content i {
    font-size: 2.5rem;
    color: #a0aec0;
    margin-bottom: 15px;
}

.ad-placeholder-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 5px;
}

.ad-placeholder-size {
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 500;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.ad-placeholder-text {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Ad Widget (for real ads) */
.ad-widget {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ad-link {
    display: block;
    position: relative;
}

.ad-link img {
    transition: transform 0.3s;
}

.ad-link:hover img {
    transform: scale(1.02);
}

.ad-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.ad-badge {
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Currency Widget */
.currency-widget table {
    width: 100%;
    border-collapse: collapse;
}

.currency-widget th,
.currency-widget td {
    padding: 12px 8px;
    text-align: left;
    font-size: 0.875rem;
}

.currency-widget th {
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
}

.currency-widget tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-light);
}

.currency-name {
    font-weight: 600;
}

.currency-change.up {
    color: #4caf50;
}

.currency-change.down {
    color: #f44336;
}

/* Poll Widget */
.poll-question {
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5;
}

.poll-option {
    margin-bottom: 10px;
}

.poll-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.poll-option:hover label {
    background: var(--border-light);
}

.poll-option input {
    width: 18px;
    height: 18px;
}

.poll-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-text {
    color: white;
}

.footer-about p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 17px;
}

.footer-contact i {
    width: 20px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   SINGLE NEWS PAGE
   ============================================ */
.news-single {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.news-single-header {
    padding: 30px;
}

.news-single-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
}

.news-single-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.news-single-spot {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-single-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.news-single-meta i {
    margin-right: 6px;
}

.news-single-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-single-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.news-single-image {
    width: 100%;
}

.news-single-image img {
    width: 100%;
}

.news-single-image figcaption {
    padding: 12px 30px;
    background: var(--bg-secondary);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.news-single-content {
    padding: 30px;
    font-size: 1.0625rem;
    line-height: 1.9;
}

.news-single-content p {
    margin-bottom: 20px;
}

.news-single-content h2,
.news-single-content h3 {
    margin: 30px 0 15px;
}

.news-single-content img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.news-single-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 25px 0;
    background: var(--bg-secondary);
    font-style: italic;
    font-size: 1.125rem;
}

.news-single-tags {
    padding: 20px 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.news-single-tags span {
    font-weight: 600;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tag:hover {
    background: var(--primary);
    color: white;
}

/* Share Buttons */
.news-share {
    padding: 20px 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-share span {
    font-weight: 600;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #0088cc; }
.share-btn.linkedin { background: #0077b5; }

/* Comments */
.comments-section {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 24px;
}

.comments-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.comment:last-child {
    border-bottom: none;
}

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

.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
}

.comment-author {
    font-weight: 600;
}

.comment-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.comment-content {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.comment-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.comment-form h4 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 17px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-nav {
    margin-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.pagination li.active a {
    background: var(--primary);
    color: white;
}

.pagination li a:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sidebar {
        width: 280px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero Slider */
    .hero-slider-wrapper {
        height: 420px;
    }
    
    .hero-slide-title {
        font-size: 1.5rem;
    }
    
    .slider-nav {
        width: 260px;
    }
    
    .slider-nav-item {
        padding: 12px;
    }
    
    .slider-nav-number {
        font-size: 1.25rem;
        min-width: 30px;
    }
    
    .slider-nav-title {
        font-size: 0.8125rem;
        -webkit-line-clamp: 1;
    }
    
    /* Authors */
    .author-card {
        min-width: 180px;
        max-width: 200px;
    }
    
    .author-avatar {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header-search {
        display: none;
    }
    
    .nav-list {
        display: none;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .row {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .news-single-title {
        font-size: 1.5rem;
    }
    
    /* Hero Slider Mobile */
    .hero-slider-wrapper {
        flex-direction: column;
        height: auto;
        gap: 0;
    }
    
    .hero-slider {
        height: 280px;
        min-height: 280px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .hero-slide-overlay {
        padding: 60px 20px 50px;
    }
    
    .hero-slide-title {
        font-size: 1.125rem;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
    }
    
    .hero-slide-spot {
        display: none;
    }
    
    .hero-slide-meta {
        font-size: 0.75rem;
        gap: 10px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    /* Mobile: Numbers attached below slider */
    .slider-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        gap: 0;
        padding: 0;
        background: var(--bg-dark);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        -webkit-overflow-scrolling: touch;
    }
    
    .slider-nav::-webkit-scrollbar {
        display: none;
    }
    
    .slider-nav-item {
        flex: 1;
        min-width: auto;
        padding: 12px 8px;
        gap: 0;
        justify-content: center;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        color: rgba(255,255,255,0.6);
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    
    .slider-nav-item:last-child {
        border-right: none;
    }
    
    /* Hide 10 on mobile (show only 9) */
    .slider-nav-item.desktop-only {
        display: none !important;
    }
    
    .slider-nav-item:hover,
    .slider-nav-item:focus {
        background: rgba(255,255,255,0.15);
        transform: none;
    }
    
    .slider-nav-item:active {
        background: rgba(255,255,255,0.25);
        transform: scale(0.95);
    }
    
    .slider-nav-item.active {
        background: var(--primary);
        color: white;
        transform: none;
    }
    
    .slider-nav-item.active:active {
        transform: scale(0.95);
    }
    
    .slider-nav-number {
        font-size: 17px;
        font-weight: 700;
        min-width: auto;
        opacity: 1;
        color: inherit;
    }
    
    .slider-nav-item.active .slider-nav-number {
        color: white;
    }
    
    .slider-nav-title {
        display: none;
    }
    
    .slider-nav-progress {
        display: none;
    }
    
    /* Authors Mobile */
    .authors-section {
        padding: 20px 0;
    }
    
    .author-card {
        min-width: 160px;
        max-width: 180px;
        padding: 10px 12px;
        gap: 10px;
    }
    
    .author-avatar {
        width: 38px;
        height: 38px;
    }
    
    .author-avatar span {
        font-size: 0.875rem;
    }
    
    .author-name {
        font-size: 0.75rem;
    }
    
    .author-bio {
        font-size: 0.625rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card-featured {
        height: 350px;
    }
    
    .news-card-featured .news-card-title {
        font-size: 1.25rem;
    }
    
    /* Hero Slider Mobile Small */
    .hero-slider {
        height: 200px;
        min-height: 200px;
    }
    
    .hero-slide-overlay {
        padding: 40px 15px 45px;
    }
    
    .hero-slide-category {
        padding: 4px 10px;
        font-size: 0.625rem;
        margin-bottom: 8px;
    }
    
    .hero-slide-title {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
        margin-bottom: 6px;
    }
    
    .hero-slide-meta {
        gap: 8px;
        font-size: 0.625rem;
    }
    
    .hero-slide-meta span:last-child {
        display: none;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .slider-prev {
        left: 8px;
    }
    
    .slider-next {
        right: 8px;
    }
    
    .slider-nav-item {
        padding: 10px 6px;
    }
    
    .slider-nav-number {
        font-size: 0.8125rem;
    }
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

/* Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-primary);
    z-index: 999;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.mobile-menu-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-menu-header .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
}

.mobile-menu-header .logo-text {
    font-size: 1.125rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--primary);
    color: white;
}

/* Mobile Menu Search */
.mobile-menu-search {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-search form {
    display: flex;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mobile-menu-search input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: none;
    font-size: 17px;
    color: var(--text-primary);
}

.mobile-menu-search input::placeholder {
    color: var(--text-muted);
}

.mobile-menu-search button {
    width: 48px;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-menu-search button:hover {
    background: var(--primary-dark);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 10px 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
    background: var(--bg-secondary);
    color: var(--primary);
    padding-left: 25px;
}

.mobile-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
}

.mobile-menu-item:hover i,
.mobile-menu-item.active i {
    color: var(--primary);
}

/* Mobile Menu Actions */
.mobile-menu-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-actions .btn-block {
    width: 100%;
    justify-content: center;
}

/* Mobile Menu Social */
.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .header-search {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .top-bar {
        display: none;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 280px;
    }
    
    .mobile-menu-item {
        padding: 14px 18px;
        font-size: 17px;
    }
    
    .mobile-menu-header .logo-text {
        font-size: 1rem;
    }
}


/* ========================================
   FEATURED LAYOUT - ÖNE ÇIKAN + LİSTE
======================================== */
.featured-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 20px;
    min-height: 420px;
}

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

.featured-card-main {
    height: 100%;
}

.featured-card-link {
    display: block;
    height: 100%;
}

.featured-card-image {
    position: relative;
    height: 100%;
    min-height: 420px;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card-main:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    color: white;
}

.featured-card-category {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.featured-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: white;
}

.featured-card-spot {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

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

.featured-card-side {
    flex: 1;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.featured-card-side:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.featured-side-link {
    display: flex;
    align-items: stretch;
    height: 100%;
    text-decoration: none;
}

.featured-side-image {
    width: 130px;
    min-height: 100px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.featured-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card-side:hover .featured-side-image img {
    transform: scale(1.1);
}

.featured-side-image.has-video .video-play-btn-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(var(--primary-rgb), 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.featured-side-content {
    flex: 1;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.featured-side-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.featured-side-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card-side:hover .featured-side-title {
    color: var(--primary);
}

/* Featured Layout Responsive */
@media (max-width: 992px) {
    .featured-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-card-image {
        min-height: 280px;
    }
    
    .featured-card-title {
        font-size: 1.375rem;
    }
    
    .featured-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .featured-card-side {
        flex: 1 1 calc(50% - 8px);
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .featured-card-image {
        min-height: 220px;
    }
    
    .featured-card-overlay {
        padding: 50px 20px 20px;
    }
    
    .featured-card-title {
        font-size: 1.125rem;
    }
    
    .featured-card-spot {
        display: none;
    }
    
    .featured-sidebar {
        flex-direction: column;
    }
    
    .featured-card-side {
        flex: 1 1 100%;
    }
    
    .featured-side-image {
        width: 100px;
    }
    
    .featured-side-content {
        padding: 12px;
        gap: 10px;
    }
    
    .featured-side-number {
        font-size: 1.5rem;
    }
    
    .featured-side-title {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }
}

/* ========================================
   FEATURED V2 - YENİ ÖNE ÇIKAN TASARIM
======================================== */
.featured-v2 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.featured-v2-main {
    position: relative;
}

.featured-v2-main > a {
    display: block;
    height: 100%;
}

.featured-v2-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-v2-main:hover .featured-v2-image img {
    transform: scale(1.08);
}

.featured-v2-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.featured-v2-main:hover .featured-v2-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    color: white;
}

.featured-v2-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 35px 35px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

.featured-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    border-radius: 25px;
    margin-bottom: 18px;
}

.featured-v2-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.25;
    color: white;
    margin-bottom: 14px;
}

.featured-v2-spot {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.featured-v2-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.featured-v2-main:hover .featured-v2-more {
    opacity: 1;
    transform: translateX(0);
}

.featured-v2-more i {
    transition: transform 0.3s ease;
}

.featured-v2-main:hover .featured-v2-more i {
    transform: translateX(5px);
}

/* Sağ Liste */
.featured-v2-list {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(0,0,0,0.06);
}

.featured-v2-item {
    flex: 1;
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.featured-v2-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.featured-v2-item-img {
    width: 90px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.featured-v2-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-v2-item:hover .featured-v2-item-img img {
    transform: scale(1.1);
}

.featured-v2-item-img.has-video i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-v2-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-v2-item-content h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.featured-v2-item:hover .featured-v2-item-content h4 {
    color: var(--primary);
}

.featured-v2-item-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Featured V2 Responsive */
@media (max-width: 1100px) {
    .featured-v2 {
        grid-template-columns: 1fr 320px;
    }
    
    .featured-v2-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .featured-v2 {
        grid-template-columns: 1fr;
    }
    
    .featured-v2-image {
        min-height: 300px;
    }
    
    .featured-v2-list {
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    
    .featured-v2-item {
        flex: 1 1 50%;
        border-right: 1px solid rgba(0,0,0,0.06);
    }
    
    .featured-v2-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .featured-v2-image {
        min-height: 240px;
    }
    
    .featured-v2-content {
        padding: 60px 20px 25px;
    }
    
    .featured-v2-title {
        font-size: 1.25rem;
    }
    
    .featured-v2-spot {
        display: none;
    }
    
    .featured-v2-list {
        flex-direction: column;
    }
    
    .featured-v2-item {
        flex: 1 1 100%;
        border-right: none;
        padding: 15px;
    }
    
    .featured-v2-item-img {
        width: 80px;
        height: 60px;
    }
    
    .featured-v2-item-content h4 {
        font-size: 0.875rem;
    }
}

/* ========================================
   MAGAZINE GRID - DERGİ TARZI
======================================== */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 8px;
}

.magazine-card {
    position: relative;
    overflow: hidden;
}

.magazine-card-old {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.magazine-card a {
    display: block;
    height: 100%;
}

.magazine-main {
    grid-column: span 2;
    grid-row: span 2;
}

.magazine-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.magazine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.magazine-card:hover .magazine-img img {
    transform: scale(1.08);
}

.magazine-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.magazine-main .magazine-play {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
}

.magazine-card:hover .magazine-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.magazine-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 18px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    color: white;
}

.magazine-main .magazine-overlay {
    padding: 100px 25px 25px;
}

.magazine-cat {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.magazine-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: white;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.magazine-main .magazine-title {
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
}

.magazine-spot {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Magazine Grid Responsive */
@media (max-width: 1024px) {
    .magazine-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 280px repeat(2, 160px);
    }
    
    .magazine-main {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .magazine-main .magazine-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .magazine-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 240px repeat(4, 140px);
        gap: 6px;
    }
    
    .magazine-main {
        grid-column: span 1;
    }
    
    .magazine-main .magazine-overlay {
        padding: 60px 18px 18px;
    }
    
    .magazine-main .magazine-title {
        font-size: 1.125rem;
        -webkit-line-clamp: 2;
    }
    
    .magazine-spot {
        display: none;
    }
    
    .magazine-title {
        font-size: 0.8125rem;
    }
}

/* Magazine Grid - Düz Kenarlar */
.magazine-card {
    border-radius: 0 !important;
}

.magazine-grid {
    gap: 4px;
}

/* ========================================
   TÜM HABER KARTLARI - DÜZ KENARLAR
======================================== */
.news-card,
.news-card-image,
.news-card-image img,
.category-card,
.category-card-image,
.category-card-image img,
.featured-card,
.featured-card-image,
.featured-card-image img,
.hero-slide,
.hero-slide-image,
.hero-slide-image img,
.slider-main-image,
.slider-main-image img,
.popular-news-item img,
.sidebar-widget img,
.author-card,
.author-card img,
.featured-v2-item-img,
.featured-v2-item-img img,
.featured-v2-image,
.featured-v2-image img,
.featured-side-image,
.featured-side-image img,
.featured-card-main,
.featured-card-image,
.featured-main,
.magazine-card,
.magazine-img,
.magazine-img img {
    border-radius: 0 !important;
}

/* Slider ana görsel */
.hero-slider,
.hero-slider-wrapper,
.slider-container {
    border-radius: 0 !important;
}

/* Widget ve sidebar görselleri */
.widget-news-image,
.widget-news-image img,
.popular-item-image,
.popular-item-image img {
    border-radius: 0 !important;
}

/* ========================================
   OVERLAY GRID - 5 HABER GRID
======================================== */
.overlay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 180px;
    gap: 3px;
}

.overlay-card {
    position: relative;
    overflow: hidden;
    display: block;
}

.overlay-card-0 {
    grid-column: span 2;
    grid-row: span 2;
}

.overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.overlay-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.8);
}

.overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    z-index: 3;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.overlay-card-0 .overlay-play {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
}

.overlay-card:hover .overlay-play {
    transform: translate(-50%, -50%) scale(1.15);
}

.overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    z-index: 2;
}

.overlay-card-0 .overlay-content {
    padding: 80px 25px 25px;
}

.overlay-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: white;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.overlay-card-0 .overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-line-clamp: 3;
}

/* Overlay Grid Responsive */
@media (max-width: 900px) {
    .overlay-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 260px 160px 160px;
    }
    
    .overlay-card-0 {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .overlay-card-0 .overlay-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 550px) {
    .overlay-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 140px 140px;
        gap: 2px;
    }
    
    .overlay-content {
        padding: 40px 12px 12px;
    }
    
    .overlay-card-0 .overlay-content {
        padding: 50px 15px 15px;
    }
    
    .overlay-content h3 {
        font-size: 0.75rem;
    }
    
    .overlay-card-0 .overlay-content h3 {
        font-size: 1rem;
        -webkit-line-clamp: 2;
    }
    
    .overlay-play {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
    
    .overlay-card-0 .overlay-play {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* ========================================
   HABER KARTLARI - RESİM TAM KAPLAMA
======================================== */
.news-card-image {
    width: 100% !important;
    overflow: hidden;
}

.news-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

.news-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Grid görünümde kartlar */
.news-grid .news-card {
    overflow: hidden;
}

.news-grid .news-card-image {
    aspect-ratio: 16/10;
    width: 100%;
}

/* Kategori badge düzeltme */
.news-card-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

/* Grid 3 sütun - resim tam kaplama */
.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-grid-3 .news-card {
    background: white;
    overflow: hidden;
}

.news-grid-3 .news-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-grid-3 .news-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-grid-3 .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Kategori badge'i kaldır veya düzelt */
.news-grid-3 .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    z-index: 2;
}

@media (max-width: 900px) {
    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 550px) {
    .news-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-grid-3 .news-card-image {
        height: 200px;
    }
}

/* ========================================
   SPOTLIGHT GRID - MODERN TASARIM
======================================== */
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

/* Sol - Ana Haber */
.spotlight-main {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.spotlight-main:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.spotlight-main a {
    display: block;
}

.spotlight-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-main:hover .spotlight-img img {
    transform: scale(1.05);
}

.spotlight-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.spotlight-main:hover .spotlight-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.spotlight-info {
    padding: 22px 25px 25px;
}

.spotlight-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 12px;
}

.spotlight-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.spotlight-main:hover .spotlight-info h3 {
    color: var(--primary);
}

.spotlight-info p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Sağ - Liste */
.spotlight-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #eee;
    background: #fff;
}

.spotlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

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

.spotlight-item:hover {
    background: #f8f9fa;
    padding-left: 25px;
}

.spotlight-item-img {
    width: 110px;
    height: 75px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.spotlight-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spotlight-item:hover .spotlight-item-img img {
    transform: scale(1.08);
}

.spotlight-item-img.has-video i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
}

.spotlight-item h4 {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.spotlight-item:hover h4 {
    color: var(--primary);
}

/* Spotlight Responsive */
@media (max-width: 900px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spotlight-img {
        height: 260px;
    }
}

@media (max-width: 550px) {
    .spotlight-img {
        height: 200px;
    }
    
    .spotlight-info {
        padding: 18px 20px 20px;
    }
    
    .spotlight-info h3 {
        font-size: 1.125rem;
    }
    
    .spotlight-info p {
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .spotlight-item {
        padding: 15px;
        gap: 14px;
    }
    
    .spotlight-item-img {
        width: 90px;
        height: 65px;
    }
    
    .spotlight-item h4 {
        font-size: 0.875rem;
    }
}

/* ========================================
   DEFAULT LAYOUT - VARSAYILAN YENİ TASARIM
======================================== */
.default-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

/* Sol - Ana Haber */
.default-main {
    display: block;
    position: relative;
    overflow: hidden;
}

.default-main-img {
    position: relative;
    height: 100%;
    min-height: 380px;
}

.default-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.default-main:hover .default-main-img img {
    transform: scale(1.05);
}

.default-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.default-main:hover .default-play {
    transform: translate(-50%, -50%) scale(1.15);
}

.default-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 25px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

.default-cat {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 12px;
}

.default-main-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    margin-bottom: 10px;
}

.default-main-overlay p {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sağ - Liste */
.default-side {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e8e8e8;
}

.default-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.default-item:hover {
    background: linear-gradient(90deg, #f8f9fa 0%, #fff 100%);
}

.default-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.25;
    flex-shrink: 0;
    width: 40px;
    line-height: 1;
}

.default-item:hover .default-num {
    opacity: 0.5;
}

.default-item-content {
    flex: 1;
    min-width: 0;
}

.default-item-content h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.default-item:hover .default-item-content h4 {
    color: var(--primary);
}

.default-video-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.default-item-img {
    width: 85px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
}

.default-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.default-item:hover .default-item-img img {
    transform: scale(1.1);
}

/* Default Layout Responsive */
@media (max-width: 900px) {
    .default-layout {
        grid-template-columns: 1fr;
    }
    
    .default-main-img {
        min-height: 280px;
    }
    
    .default-main-overlay h3 {
        font-size: 1.25rem;
    }
    
    .default-side {
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }
}

@media (max-width: 550px) {
    .default-main-img {
        min-height: 220px;
    }
    
    .default-main-overlay {
        padding: 70px 18px 18px;
    }
    
    .default-main-overlay h3 {
        font-size: 1.125rem;
    }
    
    .default-main-overlay p {
        display: none;
    }
    
    .default-item {
        padding: 14px 15px;
        gap: 12px;
    }
    
    .default-num {
        font-size: 1.25rem;
        width: 30px;
    }
    
    .default-item-content h4 {
        font-size: 0.875rem;
    }
    
    .default-item-img {
        width: 70px;
        height: 50px;
    }
}


.fa-x-twitter:hover {
    color: #fff !important;
    background: #000;
}


/* ========================================
   YAZARLAR BÖLÜMÜ - İYİLEŞTİRİLMİŞ
======================================== */
.author-card {
    min-width: 260px !important;
    max-width: 280px !important;
    padding: 18px 20px !important;
    gap: 15px !important;
}

.author-avatar {
    width: 55px !important;
    height: 55px !important;
}

.author-avatar span {
    font-size: 1.25rem !important;
}

.author-name {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    color: var(--text-primary) !important;
}

.author-bio {
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
    color: #555 !important;
    -webkit-line-clamp: 2 !important;
    opacity: 1 !important;
}

/* Sidebar'daki yazarlar */
.author-item-vertical {
    padding: 15px 0 !important;
}

.author-avatar-sm {
    width: 50px !important;
    height: 50px !important;
}

.author-info-vertical h4 {
    font-size: 1rem !important;
    margin-bottom: 4px !important;
}

.author-bio-sm {
    font-size: 0.8125rem !important;
    color: #555 !important;
    line-height: 1.5 !important;
}

.author-latest-article {
    font-size: 0.875rem !important;
    color: #333 !important;
    padding: 10px 14px !important;
    background: #f5f5f5 !important;
    line-height: 1.5 !important;
}

.author-latest-article:hover {
    background: var(--primary) !important;
    color: white !important;
}

.author-article-count {
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .author-card {
        min-width: 220px !important;
        max-width: 240px !important;
        padding: 15px !important;
    }
    
    .author-avatar {
        width: 48px !important;
        height: 48px !important;
    }
    
    .author-name {
        font-size: 0.9375rem !important;
    }
    
    .author-bio {
        font-size: 0.75rem !important;
    }
}

/* ========================================
   BÜLTEN WIDGET - OKUNABİLİRLİK DÜZELTMESİ
======================================== */
.newsletter-widget {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.newsletter-widget .widget-title {
    color: #fff !important;
}

.newsletter-widget .widget-title i {
    color: #fff !important;
}

.newsletter-widget .widget-title::before {
    background: #fff !important;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
}

.newsletter-widget input[type="email"] {
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    color: #1a1a2e !important;
    font-size: 0.9375rem !important;
    padding: 14px 18px !important;
}

.newsletter-widget input[type="email"]::placeholder {
    color: #666 !important;
}

.newsletter-widget .btn,
.newsletter-widget button[type="submit"] {
    background: #fff !important;
    color: #1a1a2e !important;
    font-weight: 700 !important;
    padding: 14px 24px !important;
    font-size: 0.9375rem !important;
}

.newsletter-widget .btn:hover,
.newsletter-widget button[type="submit"]:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
}

/* Alternatif: Kırmızı tema tercih edilirse */
.sidebar-widget.newsletter-widget-red {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
}

.sidebar-widget.newsletter-widget-red p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Footer Newsletter */
.footer-newsletter input {
    background: rgba(255,255,255,0.95) !important;
    color: #1a1a2e !important;
}

.footer-newsletter input::placeholder {
    color: #666 !important;
}

.footer-newsletter button {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ========================================
   BÜLTEN WIDGET - YENİ MODERN TASARIM
======================================== */
.newsletter-widget {
    background: #ffffff !important;
    border: 2px solid #e8e8e8 !important;
    position: relative;
    overflow: hidden;
}

.newsletter-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d32f2f, #b71c1c, #f093fb);
}

.newsletter-widget .widget-title {
    color: #1a1a2e !important;
    font-size: 1.25rem !important;
    margin-bottom: 15px !important;
    padding-top: 10px !important;
}

.newsletter-widget .widget-title::before {
    background: linear-gradient(180deg, #d32f2f, #b71c1c) !important;
}

.newsletter-widget .widget-title i {
    color: #d32f2f !important;
}

.newsletter-widget p,
.newsletter-widget > p {
    color: #333 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.newsletter-widget .newsletter-form,
.newsletter-widget form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-widget input[type="email"] {
    background: #f8f9fa !important;
    border: 2px solid #e8e8e8 !important;
    color: #1a1a2e !important;
    font-size: 1rem !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.newsletter-widget input[type="email"]:focus {
    border-color: #d32f2f !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
    outline: none;
}

.newsletter-widget input[type="email"]::placeholder {
    color: #888 !important;
}

.newsletter-widget .btn,
.newsletter-widget button[type="submit"] {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 16px 24px !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-widget .btn:hover,
.newsletter-widget button[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
}

.newsletter-widget .btn i,
.newsletter-widget button[type="submit"] i {
    font-size: 1rem;
}

/* Dark mode uyumu */
[data-theme="dark"] .newsletter-widget {
    background: #1e1e2e !important;
    border-color: #333 !important;
}

[data-theme="dark"] .newsletter-widget .widget-title {
    color: #fff !important;
}

[data-theme="dark"] .newsletter-widget p {
    color: #ddd !important;
    background: #252535 !important;
}

[data-theme="dark"] .newsletter-widget input[type="email"] {
    background: #252535 !important;
    border-color: #333 !important;
    color: #fff !important;
}

[data-theme="dark"] .newsletter-widget input[type="email"]::placeholder {
    color: #888 !important;
}

/* ========================================
   BUTON VE DROPDOWN YAZILARI - SİYAH
======================================== */
/* Tüm butonlarda siyah yazı */
.btn,
button {
    color: #1a1a2e !important;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    color: #fff !important;
}

/* Mavi butonlar - siyah yazı */
.btn-outline,
.btn-secondary,
.btn-info,
a.btn {
    color: #1a1a2e !important;
}

/* Dropdown ve açılır menüler */
.dropdown-menu,
.dropdown-item,
.dropdown-content {
    color: #1a1a2e !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1a1a2e !important;
    background: #f5f5f5 !important;
}

/* Modal içerikleri */
.modal-body,
.modal-content,
.modal-content p,
.modal-content span {
    color: #1a1a2e !important;
}

/* Popup ve tooltip */
.tooltip,
.popover,
.popover-body {
    color: #1a1a2e !important;
}

/* Accordion/Collapse */
.accordion-body,
.collapse-content,
.panel-body {
    color: #1a1a2e !important;
}

/* Form elemanları */
input,
textarea,
select,
.form-control {
    color: #1a1a2e !important;
}

/* Summernote dropdown */
.note-dropdown-menu,
.note-dropdown-item {
    color: #1a1a2e !important;
}

.note-btn {
    color: #333 !important;
}

.note-dropdown-menu a,
.note-dropdown-menu button {
    color: #1a1a2e !important;
}

/* Seçim kutuları */
.note-color-select,
.note-holder {
    color: #1a1a2e !important;
}
