/* Reset & Base Styles */
:root {
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
    --color-primary: #b20f1d;
    --color-primary-dark: #8f0d18;
    --color-bg: #eef1f4;
    --color-text: #1d2229;
    --color-surface: #ffffff;
    --color-border: #d8dee6;
}

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

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.55;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Top Bar - Son Dakika & Kripto */
.top-bar {
    background: #2c2c2c;
    color: #fff;
    font-size: 12px;
    overflow: hidden;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.top-bar-content {
    display: flex;
    align-items: stretch;
}

/* Son Dakika Haberleri - Sol */
.breaking-news-bar {
    flex: 1;
    display: flex;
    align-items: center;
    background: #2c2c2c;
    position: relative;
    gap: 5px;
}

.breaking-label {
    background: #c1121f;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.breaking-nav {
    background: #444;
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.breaking-nav:hover {
    background: #666;
    transform: scale(1.1);
}

.breaking-nav.prev {
    margin-left: 10px;
}

.breaking-nav.next {
    margin-right: 10px;
}

.breaking-container {
    flex: 1;
    position: relative;
    height: 40px;
    overflow: visible;
}

.breaking-news-item {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: white;
    text-decoration: none;
    padding: 0 15px;
    display: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.breaking-news-item.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.breaking-news-item span.breaking-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.breaking-news-item:hover {
    color: #ffd700;
}

/* Breaking News Icon - Heartbeat/Pulse */
.breaking-icon {
    display: inline-block !important;
    width: 24px;
    height: 16px;
    min-width: 24px;
    min-height: 16px;
    position: relative;
    flex-shrink: 0;
    margin-right: 10px;
    z-index: 10;
    background: transparent;
}

.breaking-icon::before,
.breaking-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #ff4444;
    border-radius: 2px;
    animation: heartbeat 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 68, 68, 0.8);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.breaking-icon::before {
    left: 3px;
    height: 12px;
    top: 2px;
    animation-delay: 0s;
}

.breaking-icon::after {
    right: 3px;
    height: 16px;
    top: 0;
    animation-delay: 0.4s;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    25% {
        transform: scaleY(0.4);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
    75% {
        transform: scaleY(0.6);
        opacity: 0.8;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Market Ticker - Döviz & Kripto - Sağ Taraf */
.market-ticker {
    display: flex;
    background: #2c2c2c;
    border-left: 1px solid #444;
    flex-shrink: 0;
    overflow-x: auto;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    border-left: 1px solid #444;
    white-space: nowrap;
    flex-shrink: 0;
}

.market-item:first-child {
    border-left: none;
}

.market-item.crypto {
    background: #1a1a1a;
}

.market-label {
    color: #999;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.market-value {
    color: white;
    font-weight: bold;
    font-size: 13px;
}

.market-change {
    font-size: 10px;
}

.market-change.up {
    color: #27ae60;
}

.market-change.down {
    color: #e74c3c;
}

/* Header */
.main-header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Header Widgets - Arama & Hava Durumu */
.header-widgets {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Arama Kutusu */
.search-box {
    position: relative;
}

.search-box form {
    display: flex;
    align-items: center;
}

.search-input {
    width: 220px;
    padding: 10px 45px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #c1121f;
    box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.1);
    width: 260px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #c1121f;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #a00f1a;
    transform: translateY(-50%) scale(1.1);
}

/* Hava Durumu Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

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

.weather-city {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.weather-temp {
    font-size: 15px;
    font-weight: 700;
    color: #c1121f;
}

.weather-status {
    font-size: 12px;
    color: #666;
}

.city-select {
    border: none;
    background: transparent;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    outline: none;
    padding: 0;
}

.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;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.logo:hover {
    opacity: 0.9;
}

.logo:active {
    opacity: 0.8;
}

.logo-image {
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 32px;
    font-weight: 800;
    color: #c1121f;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Navigation */
.main-nav {
    background: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

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

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 18px;
    color: white;
    font-weight: 500;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-menu li a:hover {
    background: #34495e;
    color: #fff;
}

.nav-icon {
    font-size: 14px;
}

.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.15);
}

/* Hamburger Menu Button */
.hamburger-menu-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    margin-left: 15px;
}

.hamburger-menu-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.hamburger-menu-btn span {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger-menu-btn.active {
    background: #c1121f;
    border-color: #c1121f;
}

.hamburger-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

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

.hamburger-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Mega Menu Dropdown */
.mega-menu-dropdown {
    background: #3a3a3a;
    color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-top: 1px solid #2c3e50;
}

.mega-menu-dropdown.active {
    max-height: 450px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 30px 0;
}

.mega-col h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #c1121f;
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    margin-bottom: 8px;
}

.mega-col ul li a {
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.mega-col ul li a:hover {
    color: #c1121f;
    padding-left: 10px;
}

/* Main Content */
.main-content {
    padding: 20px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
}

/* News Slider - 14'lü Slider */
.news-slider-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-slider {
    position: relative;
    width: 100%;
    height: 560px;
    background: #0d0f24;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 30px;
    color: #333;
    z-index: 15;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0d0f24;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
    background: #0d0f24;
}

.slider-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slider-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 40px 30px;
    color: white;
    pointer-events: none;
    z-index: 1;
}

.slider-overlay h2 {
    font-size: 26px;
    line-height: 1.4;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Slider Pagination - Sayfa Numaraları */
.slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    pointer-events: none;
}

.slider-pagination .page-dot {
    pointer-events: auto;
}

.page-dot {
    background: rgba(255,255,255,0.6);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

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

.page-dot.active {
    background: #c1121f;
    color: white;
    transform: scale(1.15);
}

/* Sekmeli Haber Bölümü (1 Büyük + 4 Küçük) */
.tabbed-news-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-tabs {
    display: flex;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 25px;
}

.news-tab {
    padding: 18px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: none;
}

.news-tab:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #e0e0e0;
}

.news-tab:hover {
    color: #000;
}

.news-tab.active {
    color: #c1121f;
    border-bottom-color: #c1121f;
}

.tab-content {
    display: none;
    padding: 25px;
    animation: fadeInContent 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

.tab-news-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
}

/* Sol - Büyük Haber */
.tab-main-news {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.tab-main-news:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.tab-main-news a {
    display: block;
    text-decoration: none;
}

.tab-main-news img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.tab-main-content {
    padding: 20px;
}

.tab-main-content h2 {
    font-size: 22px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 12px;
}

.tab-main-news:hover h2 {
    color: #c1121f;
}

.tab-main-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Sağ - 4 Küçük Haber */
.tab-side-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-small-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.tab-small-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(3px);
}

.tab-small-item a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 10px;
}

.tab-small-image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.tab-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tab-small-item:hover img {
    transform: scale(1.05);
}

.tab-small-item h3 {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.tab-small-item:hover h3 {
    color: #c1121f;
}

/* Kategori Haberleri - 3'lü Grid */
.category-news-section {
    background: var(--color-surface);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c1121f;
}

.category-header-bar h2 {
    font-size: 22px;
    color: #1f2937;
    margin: 0;
}

.view-all-btn {
    background: #c1121f;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: #a00f1a;
    transform: translateX(3px);
}

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

.grid-news-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.grid-news-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.grid-news-item a {
    display: block;
    text-decoration: none;
}

.grid-news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.grid-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.grid-news-image.no-image {
    background: linear-gradient(135deg, #c1121f 0%, #a00f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-news-image.no-image span {
    font-size: 72px;
    font-weight: 900;
    color: rgba(255,255,255,0.3);
}

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

.grid-news-content {
    padding: 15px;
}

.grid-news-content h3 {
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.35;
    color: #333;
    margin-bottom: 8px;
}

.grid-news-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 8px;
}

.grid-news-item:hover h3 {
    color: #c1121f;
}

.grid-news-time {
    font-size: 13px;
    color: #666;
}

/* Featured Section */
.featured-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.featured-main {
    position: relative;
    height: 450px;
    overflow: hidden;
}

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

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.featured-category {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.featured-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-overlay p {
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.news-time {
    font-size: 13px;
    opacity: 0.8;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.news-card {
    display: block;
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid #eee;
}

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

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

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px 15px;
    color: white;
}

.news-category {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

/* News List Section */
.news-list-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c1121f;
}

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

.news-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

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

.news-item-link {
    display: flex;
    gap: 20px;
}

.news-item-image {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 8px;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.news-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.news-item:hover h3 {
    color: #c1121f;
}

.news-item-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.widget {
    background: var(--color-surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-title {
    background: #1f2a37;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.rates-widget {
    padding: 15px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
}

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

.rate-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.rate-value {
    font-weight: 700;
    font-size: 14px;
    color: #1e8449;
}

.popular-news {
    padding: 15px;
}

.popular-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

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

.popular-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #c1121f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.popular-content h4 {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 5px;
    color: #333;
}

.popular-item:hover h4 {
    color: #c1121f;
}

.popular-views {
    font-size: 12px;
    color: #999;
}

/* Güncel Konular Widget */
.current-topics {
    padding: 0;
    background: white;
}

.topic-item {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.topic-item:hover {
    background: #f9f9f9;
    color: #c1121f;
    padding-left: 25px;
}

/* Güncel Konular başlığı için özel stil */
.widget-current-topics .widget-title-current {
    background: transparent;
    color: #999;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
}

/* Sponsorlu/Reklam Slider Widget */
.sponsored-widget {
    overflow: visible;
}

.sponsored-slider-wrapper {
    position: relative;
    padding: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Reklam Slider Navigation */
.ad-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 24px;
    color: #c1121f;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ad-slider-nav:hover {
    background: #c1121f;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.ad-slider-nav.prev {
    left: 10px;
}

.ad-slider-nav.next {
    right: 10px;
}

/* Slider Container */
.sponsored-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.sponsored-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.sponsored-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.sponsored-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.sponsored-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsored-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px 20px;
    color: white;
}

.sponsored-overlay h4 {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Reklam Pagination */
.ad-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    padding: 0 15px 15px;
    flex-wrap: wrap;
}

.ad-dot {
    background: #ddd;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-dot:hover {
    background: #999;
    color: white;
}

.ad-dot.active {
    background: #c1121f;
    color: white;
    transform: scale(1.1);
}

/* News Detail Page */
.news-detail {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.breadcrumb {
    padding: 10px 0;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #c1121f;
}

.breadcrumb span {
    margin: 0 8px;
}

.news-detail-category a {
    display: inline-block;
    background: #c1121f;
    color: white;
    padding: 6px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-detail-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

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

.news-detail-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-summary {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #c1121f;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.news-detail-content p {
    margin-bottom: 15px;
}

.news-source {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 25px;
}

/* Page Content (Hakkımızda, İletişim vb.) */
.page-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    padding-bottom: 15px;
    border-bottom: 2px solid #c1121f;
}

.page-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page-text p {
    margin-bottom: 20px;
}

.page-text h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.page-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.page-text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-text ul li strong {
    color: #c1121f;
}

.page-text a {
    color: #c1121f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-text a:hover {
    color: #a00e1a;
    text-decoration: underline;
}

.page-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-style: italic;
    color: #666;
    text-align: center;
}

.news-source a {
    color: #c1121f;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 30px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

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

.share-btn.facebook {
    background: #4267B2;
}

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

.share-btn:hover {
    opacity: 0.9;
}

.related-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.related-news h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

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

.related-item {
    display: block;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-content {
    padding: 15px;
}

.related-content h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

/* Category Page Slider */
.category-slider-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-slider-header {
    background: linear-gradient(135deg, #c1121f 0%, #a00f1a 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-slider-header h1 {
    font-size: 26px;
    margin: 0;
}

.category-slider-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.category-slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.cat-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 28px;
    color: #333;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.cat-slider-nav.prev {
    left: 15px;
}

.cat-slider-nav.next {
    right: 15px;
}

.cat-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.cat-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.cat-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.cat-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.cat-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-slide-no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c1121f 0%, #a00f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-slide-no-img span {
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,0.2);
}

.cat-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px;
    color: white;
}

.cat-slide-overlay h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cat-slide-time {
    font-size: 13px;
    opacity: 0.8;
}

.cat-slider-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.cat-page-dot {
    background: rgba(255,255,255,0.6);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.cat-page-dot:hover {
    background: rgba(255,255,255,0.8);
}

.cat-page-dot.active {
    background: #c1121f;
    color: white;
    transform: scale(1.1);
}

/* Category Page */
.category-header {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-header h1 {
    font-size: 28px;
    color: #c1121f;
    margin-bottom: 5px;
}

.category-header p {
    color: #666;
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 30px 0;
}

.page-btn {
    padding: 8px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: #c1121f;
    color: white;
    border-color: #c1121f;
}

/* Sidebar News */
.latest-news-sidebar .sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.latest-news-sidebar .sidebar-news-item:last-child {
    border-bottom: none;
}

.latest-news-sidebar .sidebar-news-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.latest-news-sidebar .sidebar-news-item h4 {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
}

.latest-news-sidebar .sidebar-news-item:hover h4 {
    color: #c1121f;
}

/* Footer */
.main-footer {
    background: #2c2c2c;
    color: #b0b0b0;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

/* Footer Logo - İlk sütun sola kaydırıldı */
.footer-grid .footer-col:first-child {
    margin-left: -35px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo-img {
    max-height: 140px;
    width: auto;
    height: auto;
    display: block;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #999;
}

.footer-tagline {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: grid;
    grid-template-columns: repeat(4, 45px);
    gap: 10px;
    margin-left: 45px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #000; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-icon.linkedin { background: #0077b5; }
.social-icon.youtube { background: #ff0000; }
.social-icon.pinterest { background: #e60023; }
.social-icon.whatsapp { background: #25d366; }

/* Footer Sections */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col h4,
.footer-title {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #c1121f;
    padding-left: 5px;
}

/* Footer News */
.footer-news {
    list-style: none;
}

.footer-news li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #3a3a3a;
}

.footer-news li:last-child {
    border-bottom: none;
}

.footer-news a {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
    transition: color 0.3s;
}

.footer-news a:hover {
    color: #c1121f;
}

/* Etiket Bulutu */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    align-content: flex-start;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #3a3a3a;
    color: #b0b0b0;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.tag:hover {
    background: #c1121f;
    color: white;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
}

.footer-bottom p {
    margin: 0;
    color: #888;
}

/* Yukarı Çık Butonu */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #c1121f;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #c1121f;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.scroll-top.show {
    display: flex;
    animation: bounceIn 0.5s;
}

.scroll-top:hover {
    background: #c1121f;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(193,18,31,0.4);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }
    
    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-news-layout {
        grid-template-columns: 1fr;
    }
    
    .tab-main-news img {
        height: 300px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
    }
    
    .breaking-news-bar {
        width: 100%;
    }
    
    .breaking-nav {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .market-ticker {
        width: 100%;
        overflow-x: auto;
        border-left: none;
        border-top: 1px solid #444;
        flex-wrap: nowrap;
    }
    
    .market-item {
        min-width: auto;
        font-size: 11px;
    }
    
    .market-label {
        font-size: 10px;
    }
    
    .market-value {
        font-size: 11px;
    }
    
    /* Slider Mobil */
    .news-slider {
        height: 420px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .sponsored-slider-container {
        height: 300px;
    }
    
    .ad-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .ad-slider-nav.prev {
        left: 5px;
    }
    
    .ad-slider-nav.next {
        right: 5px;
    }
    
    .sponsored-overlay {
        padding: 20px 15px;
    }
    
    .sponsored-overlay h4 {
        font-size: 16px;
    }
    
    .ad-dot {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .slider-overlay {
        padding: 20px 15px;
    }
    
    .slider-overlay h2 {
        font-size: 18px;
    }
    
    .slider-pagination {
        bottom: 10px;
        gap: 5px;
        flex-wrap: wrap;
        max-width: 90%;
        justify-content: center;
    }
    
    .page-dot {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    /* 3'lü Grid Mobil */
    .news-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-header-bar h2 {
        font-size: 20px;
    }
    
    .grid-news-image {
        height: 180px;
    }
    
    /* Sekmeli Bölüm Mobil */
    .tab-news-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-main-news img {
        height: 250px;
    }
    
    .tab-small-item a {
        padding: 8px;
    }
    
    .tab-small-image {
        width: 100px;
        height: 70px;
    }
    
    .tab-small-item h3 {
        font-size: 13px;
    }
    
    /* Kategori Slider Mobil */
    .category-slider {
        height: 350px;
    }
    
    .cat-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .cat-slide-overlay {
        padding: 20px 15px;
    }
    
    .cat-slide-overlay h2 {
        font-size: 18px;
    }
    
    .cat-slider-pagination {
        gap: 5px;
        flex-wrap: wrap;
        max-width: 90%;
    }
    
    .cat-page-dot {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .logo-image {
        max-height: 90px;
    }
    
    .logo {
        margin-left: 15px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mega-menu.active {
        max-height: 800px;
    }
    
    .header-widgets {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .search-input:focus {
        width: 100%;
    }
    
    .weather-widget {
        width: 100%;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a,
    .nav-menu li button {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li:not(:last-child) a::after {
        display: none;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-main {
        height: 350px;
    }
    
    .featured-overlay h2 {
        font-size: 20px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item-link {
        flex-direction: column;
    }
    
    .news-item-image {
        width: 100%;
        height: 200px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-icons {
        grid-template-columns: repeat(7, 45px);
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .news-detail-title {
        font-size: 24px;
    }
    
    .news-detail {
        padding: 20px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        max-height: 70px;
    }
    
    .logo {
        margin-left: 10px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo p {
        font-size: 12px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mega-menu.active {
        max-height: 1000px;
    }
    
    .featured-main {
        height: 250px;
    }
    
    .featured-overlay {
        padding: 20px;
    }
    
    .featured-overlay h2 {
        font-size: 18px;
    }
    
    .news-card {
        height: 200px;
    }
    
    .news-list-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .sponsored-slider-container {
        height: 250px;
    }
    
    .ad-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .sponsored-overlay {
        padding: 15px 10px;
    }
    
    .sponsored-overlay h4 {
        font-size: 14px;
    }
    
    .ad-dot {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .ad-slider-pagination {
        gap: 3px;
        padding: 0 10px 10px;
    }
    
    .news-item-content h3 {
        font-size: 16px;
    }
    
    .news-detail-title {
        font-size: 20px;
    }
    
    .news-detail-content {
        font-size: 15px;
    }
}

/* =========================================================
   New Portal Skin (high-visibility redesign)
   ========================================================= */
:root {
    --color-primary: #0057b8;
    --color-primary-dark: #003f86;
    --color-bg: #e9eef5;
    --color-text: #142033;
    --color-surface: #ffffff;
    --color-border: #cdd8e6;
}

.top-bar,
.breaking-news-bar,
.market-ticker {
    background: #0f1724;
}

.breaking-label {
    background: linear-gradient(135deg, #0057b8 0%, #0077e6 100%);
}

.main-nav {
    background: #13263f;
}

.nav-menu li a:hover {
    background: #1d3658;
}

.widget-title {
    background: linear-gradient(135deg, #13263f 0%, #1e3b61 100%);
}

.category-header-bar,
.section-title {
    border-bottom-color: #0057b8;
}

.view-all-btn,
.page-btn:hover,
.page-btn.active,
.popular-number,
.news-tab.active {
    background: #0057b8;
    border-color: #0057b8;
}

.view-all-btn:hover {
    background: #003f86;
}

.news-slider-section,
.tabbed-news-section,
.category-news-section,
.widget,
.news-detail,
.page-content {
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(16, 36, 64, 0.08);
}

.slider-overlay h2,
.tab-main-content h2,
.news-item-content h3,
.grid-news-content h3 {
    font-family: var(--font-serif);
    letter-spacing: 0.1px;
}

/* =========================================================
   Modern Refresh (icons removed, cleaner layout)
   ========================================================= */
:root {
    --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-serif: "Source Serif 4", Georgia, serif;
}

body {
    font-family: var(--font-sans);
}

.nav-icon,
.breaking-icon {
    display: none !important;
}

.search-btn {
    border-radius: 10px;
    width: auto;
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
}

.weather-status {
    font-size: 11px;
    letter-spacing: 0.1px;
}

.category-news-section {
    border: 1px solid #d9e2ef;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.category-header-bar h2 {
    font-family: var(--font-serif);
    font-size: 25px;
}

.news-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.grid-news-item {
    border: 1px solid #d6dfec;
    border-radius: 14px;
}

.grid-news-content h3 {
    font-size: 19px;
    line-height: 1.32;
}

.main-footer {
    background: #0f1726;
    padding-top: 64px;
}

.footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
    gap: 24px;
}

.footer-grid .footer-col:first-child {
    margin-left: 0;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 0;
}

.social-icon {
    width: auto;
    min-width: 88px;
    height: 34px;
    border-radius: 999px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.social-icon:hover {
    transform: translateY(-1px);
}

.scroll-top {
    min-width: 92px;
    height: 38px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .news-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   User Color Theme Override
   Background: #151635
   Content colors: #e75c05 and #9da0a5
   ========================================================= */
:root {
    --color-bg: #151635;
    --color-surface: #151635;
    --color-primary: #e75c05;
    --color-primary-dark: #c24d04;
    --color-text: #9da0a5;
    --color-border: #2a2c55;
}

html,
body,
.top-bar,
.main-header,
.main-nav,
.main-content,
.main-footer,
.widget,
.news-slider-section,
.tabbed-news-section,
.category-news-section,
.news-detail,
.page-content,
.rates-widget,
.popular-news {
    background: #151635 !important;
}

body,
p,
span,
small,
li,
label,
.news-item-content p,
.grid-news-content p,
.weather-city,
.weather-status,
.footer-bottom p,
.footer-links a,
.footer-news a,
.tag,
.meta-item,
.news-time,
.grid-news-time,
.cat-slide-time {
    color: #9da0a5 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.category-header-bar h2,
.tab-main-content h2,
.grid-news-content h3,
.news-item-content h3,
.widget-title,
.footer-title,
.logo h1,
.featured-overlay h2,
.slider-overlay h2,
.cat-slide-overlay h2 {
    color: #e75c05 !important;
}

.view-all-btn,
.search-btn,
.page-btn:hover,
.page-btn.active,
.popular-number,
.news-tab.active,
.breaking-label,
.badge,
.social-icon {
    background: #e75c05 !important;
    border-color: #e75c05 !important;
    color: #151635 !important;
}

.page-btn,
.grid-news-item,
.tab-main-news,
.tab-small-item,
.news-item,
.related-item,
.news-detail,
.page-content,
.widget,
.category-news-section {
    border-color: #2a2c55 !important;
    box-shadow: none !important;
}

a:hover,
.footer-links a:hover,
.footer-news a:hover,
.tag:hover,
.news-item:hover h3,
.grid-news-item:hover h3,
.popular-item:hover h4 {
    color: #e75c05 !important;
}

/* =========================================================
   Final Mega Menu + Footer Fix
   ========================================================= */
.mega-trigger-btn {
    background: transparent !important;
    color: #e75c05 !important;
    border: 1px solid rgba(231, 92, 5, 0.65) !important;
    border-radius: 10px !important;
    height: 38px !important;
    padding: 0 16px !important;
    letter-spacing: 0.4px;
}

.mega-trigger-btn:hover,
.mega-trigger-btn.active {
    background: #e75c05 !important;
    color: #151635 !important;
    box-shadow: 0 8px 24px rgba(231, 92, 5, 0.25) !important;
}

.mega-menu-dropdown {
    background: rgba(21, 22, 53, 0.98) !important;
    border-top: 1px solid rgba(157, 160, 165, 0.35) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(4px);
}

.mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    padding: 18px 0 20px !important;
}

.mega-col {
    background: #1d1f49;
    border: 1px solid #2f3366;
    border-radius: 12px;
    padding: 14px 14px 10px;
}

.mega-col h4 {
    color: #e75c05 !important;
    border-bottom: 1px solid #3a3f78 !important;
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
}

.mega-col ul li a {
    color: #d0d3d8 !important;
    border-radius: 8px;
    padding: 8px 10px !important;
}

.mega-col ul li a:hover {
    color: #151635 !important;
    background: #9da0a5 !important;
    padding-left: 10px !important;
}

.main-footer {
    background: #0b0c24 !important;
    border-top: 2px solid #e75c05 !important;
}

.footer-title,
.footer-bottom p,
.footer-links a,
.footer-news a,
.tag {
    color: #e7e9ed !important;
}

.footer-links a:hover,
.footer-news a:hover {
    color: #e75c05 !important;
    background: transparent !important;
}

.tag {
    background: #232653 !important;
    border: 1px solid #343a79 !important;
}

.tag:hover {
    background: #e75c05 !important;
    color: #151635 !important;
}

/* Inline mega menu (no hamburger trigger) */
.mega-inline-item {
    position: relative !important;
}

.mega-inline-item > a {
    font-weight: 700 !important;
    color: #e75c05 !important;
}

.mega-inline-item .mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(900px, 90vw);
    max-height: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    display: block;
    z-index: 300;
}

.mega-inline-item:hover .mega-menu-dropdown,
.mega-inline-item:focus-within .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega menu acilmama sorunu (clip/stacking fix) */
.main-nav,
.nav-wrapper,
.nav-menu,
.nav-menu li {
    overflow: visible !important;
}

.main-nav {
    z-index: 1200 !important;
}

.mega-inline-item {
    z-index: 1300;
}

.mobile-menu-toggle {
    display: none !important;
}

.main-footer {
    background: linear-gradient(180deg, #1a1d44 0%, #121431 100%) !important;
}

/* Footer logo gorunurluk fix */
.footer-logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #d9dde5;
    border-radius: 12px;
    padding: 10px 14px;
}

.footer-logo-img {
    filter: none !important;
    opacity: 1 !important;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.3fr !important;
}

.footer-title {
    color: #e75c05 !important;
    letter-spacing: 0.3px;
}

.footer-tagline {
    color: #d4d7dd !important;
    max-width: 340px;
    line-height: 1.7;
}

.footer-links a,
.footer-news a,
.footer-bottom p {
    color: #c7ccd5 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(157, 160, 165, 0.35) !important;
}

/* =========================================================
   Footer + Mega Menu Redesign
   ========================================================= */
.main-footer {
    background: linear-gradient(135deg, #e75c05 0%, #b84704 45%, #2a2c55 100%) !important;
    border-top: 3px solid #9da0a5;
}

.footer-title,
.footer-bottom p,
.footer-links a,
.footer-news a,
.tag {
    color: #f2f2f2 !important;
}

.footer-links a:hover,
.footer-news a:hover,
.tag:hover {
    color: #151635 !important;
    background: #9da0a5 !important;
}

.mega-trigger-btn {
    background: #e75c05;
    color: #151635;
    border: 1px solid #e75c05;
    border-radius: 999px;
    height: 40px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mega-trigger-btn:hover,
.mega-trigger-btn.active {
    background: #9da0a5;
    border-color: #9da0a5;
    color: #151635;
}

.mega-menu-dropdown {
    background: #1b1d44 !important;
    border-top: 2px solid #e75c05 !important;
}

.mega-menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.mega-col h4 {
    border-bottom-color: #e75c05 !important;
    color: #e75c05 !important;
}

/* Homepage Magazine Variants */
.home-mag-empty {
    text-align: center;
    padding: 36px 18px;
    color: #9da0a5;
}

.home-mag-spotlight {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}

.home-mag-lead {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
}

.home-mag-lead img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.home-mag-fallback {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: rgba(231, 92, 5, 0.3);
    background: #151635;
}

.home-mag-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.home-mag-overlay h3 {
    color: #ffffff !important;
    font-size: 24px;
    line-height: 1.3;
}

.home-mag-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-mag-list-item a {
    display: block;
    background: #151635;
    border: 1px solid rgba(231, 92, 5, 0.16);
    border-radius: 10px;
    padding: 14px;
}

.home-mag-list-item h4 {
    font-size: 16px;
    line-height: 1.35;
    color: #e7e9ed !important;
    margin-bottom: 8px;
}

.home-mag-list-item span {
    color: #9da0a5 !important;
    font-size: 12px;
}

.home-mag-quad {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-mag-quad-item {
    background: #151635;
    border: 1px solid rgba(231, 92, 5, 0.16);
    border-radius: 10px;
    overflow: hidden;
}

.home-mag-quad-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.home-mag-quad-item h4 {
    padding: 12px;
    font-size: 15px;
    line-height: 1.35;
    color: #e7e9ed !important;
}

.home-mag-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.home-mag-split-lead {
    background: #151635;
    border: 1px solid rgba(231, 92, 5, 0.16);
    border-radius: 12px;
    overflow: hidden;
}

.home-mag-split-lead img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.home-mag-split-lead h3 {
    color: #e7e9ed !important;
    font-size: 22px;
    line-height: 1.32;
    padding: 14px 14px 8px;
}

.home-mag-split-lead p {
    color: #9da0a5 !important;
    padding: 0 14px 14px;
    font-size: 14px;
}

.home-mag-split-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-mag-split-item a {
    display: block;
    background: #151635;
    border: 1px solid rgba(231, 92, 5, 0.16);
    border-radius: 10px;
    padding: 12px;
}

.home-mag-split-item h4 {
    font-size: 15px;
    color: #e7e9ed !important;
    line-height: 1.35;
}

.home-mag-timeline {
    list-style: none;
    counter-reset: magline;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-mag-timeline li {
    counter-increment: magline;
}

.home-mag-timeline a {
    display: block;
    background: #151635;
    border: 1px solid rgba(231, 92, 5, 0.16);
    border-radius: 10px;
    padding: 12px 12px 12px 48px;
    position: relative;
}

.home-mag-timeline a::before {
    content: counter(magline);
    position: absolute;
    left: 12px;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e75c05;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.home-mag-timeline h4 {
    color: #e7e9ed !important;
    font-size: 15px;
    line-height: 1.34;
    margin-bottom: 7px;
}

.home-mag-timeline span {
    color: #9da0a5 !important;
    font-size: 12px;
}

@media (max-width: 1200px) {
    .home-mag-quad {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .home-mag-spotlight,
    .home-mag-split,
    .home-mag-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-mag-quad {
        grid-template-columns: 1fr;
    }

    .home-mag-lead,
    .home-mag-lead img,
    .home-mag-fallback {
        min-height: 240px;
    }
}

/* Homepage Visual Fixes (slider + category cards) */
.news-slider-section {
    border: 1px solid rgba(231, 92, 5, 0.22) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.news-slider {
    height: 580px !important;
    background: #0d0f24 !important;
}

.slider-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 9, 28, 0.92) 0%, rgba(8, 9, 28, 0.35) 38%, transparent 68%);
    z-index: 0;
    pointer-events: none;
}

.slider-item img {
    object-fit: contain !important;
    object-position: center center !important;
    filter: saturate(1.08) contrast(1.03);
}

.slider-overlay {
    z-index: 4 !important;
    padding: 24px 24px 58px !important;
    background: transparent !important;
}

.slider-overlay h2 {
    font-size: clamp(22px, 2.6vw, 34px) !important;
    line-height: 1.22 !important;
    color: #ffffff !important;
    max-width: 88%;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45) !important;
}

.slider-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.slider-category-badge {
    background: #e75c05;
    color: #151635;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.slider-time {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
}

.slider-summary {
    margin-top: 10px;
    max-width: 72%;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.slider-nav {
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px !important;
    background: rgba(10, 12, 35, 0.58) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.26) !important;
    backdrop-filter: blur(3px);
}

.slider-nav:hover {
    background: #e75c05 !important;
    border-color: #e75c05 !important;
    color: #151635 !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.slider-pagination {
    bottom: 14px !important;
    background: rgba(10, 12, 35, 0.52);
    border-radius: 999px;
    padding: 6px 10px;
    backdrop-filter: blur(3px);
}

.page-dot {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.28) !important;
    color: #fff !important;
    font-size: 11px !important;
}

.page-dot.active {
    background: #e75c05 !important;
    color: #151635 !important;
}

.home-mag-quad-item {
    min-height: 300px;
    display: flex;
}

.home-mag-quad-item a {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.home-mag-quad-item img {
    height: 190px !important;
}

.home-mag-quad-item h4 {
    font-size: 17px !important;
    line-height: 1.35 !important;
}

.category-slug-ekonomi.category-variant-quad .home-mag-quad-item,
.category-slug-magazin.category-variant-quad .home-mag-quad-item {
    min-height: 340px;
}

.category-slug-ekonomi.category-variant-quad .home-mag-quad-item img,
.category-slug-magazin.category-variant-quad .home-mag-quad-item img {
    height: 220px !important;
}

.category-slug-ekonomi.category-variant-quad .home-mag-quad-item h4,
.category-slug-magazin.category-variant-quad .home-mag-quad-item h4 {
    font-size: 18px !important;
}

@media (max-width: 992px) {
    .news-slider {
        height: 500px !important;
    }

    .slider-overlay h2 {
        max-width: 100%;
    }

    .home-mag-quad-item,
    .category-slug-ekonomi.category-variant-quad .home-mag-quad-item,
    .category-slug-magazin.category-variant-quad .home-mag-quad-item {
        min-height: 290px;
    }

    .home-mag-quad-item img,
    .category-slug-ekonomi.category-variant-quad .home-mag-quad-item img,
    .category-slug-magazin.category-variant-quad .home-mag-quad-item img {
        height: 180px !important;
    }
}

@media (max-width: 768px) {
    .news-slider {
        height: 420px !important;
    }

    .slider-overlay {
        padding: 16px 14px 48px !important;
    }

    .slider-overlay h2 {
        font-size: 20px !important;
    }

    .slider-meta-top {
        margin-bottom: 8px;
    }

    .slider-category-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .slider-time {
        font-size: 11px;
    }

    .slider-summary {
        margin-top: 8px;
        max-width: 100%;
        font-size: 13px;
        line-height: 1.4;
    }

    .slider-nav {
        width: 38px !important;
        height: 38px !important;
    }

    .home-mag-quad-item,
    .category-slug-ekonomi.category-variant-quad .home-mag-quad-item,
    .category-slug-magazin.category-variant-quad .home-mag-quad-item {
        min-height: 250px;
    }

    .home-mag-quad-item img,
    .category-slug-ekonomi.category-variant-quad .home-mag-quad-item img,
    .category-slug-magazin.category-variant-quad .home-mag-quad-item img {
        height: 160px !important;
    }
}

/* =========================================================
   Haber detay — okunabilirlik (global soluk metin override)
   ========================================================= */
article.news-detail {
    background: #1a1c44 !important;
    border: 1px solid #2f3366 !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35) !important;
}

article.news-detail .breadcrumb {
    color: #b4b8c4 !important;
}

article.news-detail .breadcrumb a {
    color: #ffb078 !important;
    text-decoration: none;
}

article.news-detail .breadcrumb a:hover {
    color: #ffd4b8 !important;
    text-decoration: underline;
}

article.news-detail .breadcrumb span {
    color: #7a7e8a !important;
}

article.news-detail .news-detail-category a {
    background: linear-gradient(135deg, #e75c05 0%, #c94b02 100%) !important;
    color: #151635 !important;
}

article.news-detail h1.news-detail-title {
    color: #f4f5f8 !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

article.news-detail .news-detail-meta {
    color: #b8bcc8 !important;
    border-bottom-color: #2f3366 !important;
}

article.news-detail .news-detail-meta .meta-item {
    color: #b8bcc8 !important;
}

article.news-detail .news-detail-summary {
    background: rgba(231, 92, 5, 0.12) !important;
    border-left-color: #e75c05 !important;
    color: #eef0f4 !important;
}

article.news-detail .news-detail-summary strong {
    color: #f8f9fb !important;
    font-weight: 600;
}

/* Gövde: RSS/HTML içindeki çoğu etiket */
article.news-detail .news-detail-content {
    font-size: 17px !important;
    line-height: 1.85 !important;
    color: #e4e8f0 !important;
    max-width: 72ch;
}

article.news-detail .news-detail-content p,
article.news-detail .news-detail-content span,
article.news-detail .news-detail-content div,
article.news-detail .news-detail-content li,
article.news-detail .news-detail-content td,
article.news-detail .news-detail-content th,
article.news-detail .news-detail-content font,
article.news-detail .news-detail-content article,
article.news-detail .news-detail-content section {
    color: #e4e8f0 !important;
}

article.news-detail .news-detail-content strong,
article.news-detail .news-detail-content b {
    color: #f4f6fa !important;
    font-weight: 600;
}

article.news-detail .news-detail-content em,
article.news-detail .news-detail-content i {
    color: #dce1ea !important;
}

article.news-detail .news-detail-content a {
    color: #ffb078 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

article.news-detail .news-detail-content a:hover {
    color: #ffd4b8 !important;
}

article.news-detail .news-detail-content h2,
article.news-detail .news-detail-content h3,
article.news-detail .news-detail-content h4,
article.news-detail .news-detail-content h5,
article.news-detail .news-detail-content h6 {
    color: #ffc9a0 !important;
    margin-top: 1.35em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

article.news-detail .news-detail-content ul,
article.news-detail .news-detail-content ol {
    margin: 1em 0;
    padding-left: 1.35em;
    color: #e4e8f0 !important;
}

article.news-detail .news-detail-content blockquote {
    margin: 1.25em 0;
    padding: 14px 18px;
    border-left: 4px solid #e75c05;
    background: rgba(0, 0, 0, 0.2);
    color: #dce1ea !important;
    font-style: normal;
}

article.news-detail .news-detail-content pre,
article.news-detail .news-detail-content code {
    font-family: ui-monospace, Consolas, monospace;
    font-size: 0.92em;
}

article.news-detail .news-detail-content pre {
    background: #0f1028;
    color: #e8ecf4 !important;
    padding: 14px 16px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #2f3366;
}

article.news-detail .news-detail-content code {
    background: rgba(255, 255, 255, 0.08);
    color: #ffd4b8 !important;
    padding: 2px 6px;
    border-radius: 4px;
}

article.news-detail .news-detail-content img,
article.news-detail .news-detail-content video,
article.news-detail .news-detail-content iframe {
    max-width: 100%;
    height: auto;
}

article.news-detail .news-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25em 0;
    font-size: 0.95em;
}

article.news-detail .news-detail-content th,
article.news-detail .news-detail-content td {
    border: 1px solid #3a3f78;
    padding: 10px 12px;
}

article.news-detail .news-detail-content th {
    background: #151635 !important;
    color: #f0f2f7 !important;
}

article.news-detail .share-buttons {
    background: #232653 !important;
    border: 1px solid #343a79;
    color: #e4e8f0 !important;
}

article.news-detail .share-buttons strong {
    color: #f4f5f8 !important;
}

article.news-detail .related-news {
    border-top-color: #2f3366 !important;
}

article.news-detail .related-news h2 {
    color: #f4f5f8 !important;
}

article.news-detail .related-item {
    background: #232653 !important;
    border-color: #343a79 !important;
}

article.news-detail .related-content h3 {
    color: #eef0f4 !important;
}

article.news-detail .related-content .news-time {
    color: #b4b8c4 !important;
}

/* =========================================================
   Sidebar — Öne çıkan haberler (özel blok)
   ========================================================= */
.widget.widget--featured-sidebar {
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(231, 92, 5, 0.3) !important;
    border-radius: 14px !important;
    background: linear-gradient(168deg, #1e2148 0%, #16183a 45%, #14122c 100%) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38) !important;
}

.widget.widget--featured-sidebar .featured-sidebar-head {
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(231, 92, 5, 0.22);
    background: radial-gradient(100% 120% at 0% 0%, rgba(231, 92, 5, 0.14), transparent 58%);
}

.widget.widget--featured-sidebar .featured-sidebar-kicker {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffb078 !important;
}

.widget.widget--featured-sidebar .featured-sidebar-main-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #f4f5f8 !important;
}

.widget.widget--featured-sidebar .featured-sidebar-list {
    padding: 12px 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget.widget--featured-sidebar .featured-sidebar-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    padding: 10px 10px 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.widget.widget--featured-sidebar .featured-sidebar-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: transparent;
    transition: background 0.2s ease;
}

.widget.widget--featured-sidebar .featured-sidebar-card:hover {
    background: rgba(231, 92, 5, 0.11);
    border-color: rgba(231, 92, 5, 0.42);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.widget.widget--featured-sidebar .featured-sidebar-card:hover::before {
    background: linear-gradient(180deg, #e75c05, #ff8f4a);
}

.widget.widget--featured-sidebar .featured-sidebar-card--lead {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(231, 92, 5, 0.38);
    background: #0d0f24;
}

.widget.widget--featured-sidebar .featured-sidebar-card--lead::before {
    display: none;
}

.widget.widget--featured-sidebar .featured-sidebar-card--lead .featured-sidebar-media {
    width: 100%;
    height: 162px;
    border-radius: 0;
    border: none;
}

.widget.widget--featured-sidebar .featured-sidebar-card--lead .featured-sidebar-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget.widget--featured-sidebar .featured-sidebar-card--lead .featured-sidebar-body {
    padding: 14px 14px 16px;
}

.widget.widget--featured-sidebar .featured-sidebar-card--lead .featured-sidebar-item-title {
    font-size: 1.06rem;
    line-height: 1.32;
}

.widget.widget--featured-sidebar .featured-sidebar-media {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    border-radius: 11px;
    overflow: hidden;
    background: #12142e;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget.widget--featured-sidebar .featured-sidebar-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.widget.widget--featured-sidebar .featured-sidebar-media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #e75c05 !important;
    background: linear-gradient(145deg, #252850, #151635);
}

.widget.widget--featured-sidebar .featured-sidebar-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    padding: 2px 0;
}

.widget.widget--featured-sidebar .featured-sidebar-cat {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #e75c05 !important;
}

.widget.widget--featured-sidebar .featured-sidebar-item-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.38;
    color: #eef0f4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.widget.widget--featured-sidebar .featured-sidebar-time {
    font-size: 12px;
    font-weight: 600;
    color: #9da3b0 !important;
}

.widget.widget--featured-sidebar .featured-sidebar-card:hover .featured-sidebar-item-title {
    color: #ffffff !important;
}

.widget.widget--featured-sidebar .featured-sidebar-card:hover .featured-sidebar-time {
    color: #c5cad6 !important;
}

@media (max-width: 768px) {
    .widget.widget--featured-sidebar .featured-sidebar-card--lead .featured-sidebar-media {
        height: 200px;
    }
}

