/* =============================================
   Haberay Benzeri Haber Sitesi CSS
   ============================================= */
.news-meta-social a{
	background: white !important;
    color: black !important;
    border: 1px solid !important;
}
:root {
    --primary-red: #e74c3c;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-top {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.logo h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    font-size: 14px;
    color: var(--text-gray);
}

.social-links a:hover {
    background: var(--primary-red);
    color: #fff;
}

.search-toggle {
    margin-left: 10px;
}

/* Navigation */
.main-nav {
    background: var(--dark-bg);
}

.nav-menu {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
}

/* =============================================
   MAIN CONTENT
   ============================================= */

.main-content {
    padding: 10px 0;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* =============================================
   BİG NEWS CARDS (Üstteki Büyük Kartlar)
   ============================================= */

.big-news-section {
    margin-bottom: 30px;
}

.big-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.big-news-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.big-news-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.big-news-card .news-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
}

.big-news-card .news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.big-news-card:hover .news-image img {
    transform: scale(1.05);
}

.big-news-card .category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-red);
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.big-news-card .news-content {
    padding: 15px;
}

.big-news-card h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
}

.big-news-card h3 a:hover {
    color: var(--primary-red);
}

.big-news-card .meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-gray);
}

/* =============================================
   NEWS LIST (Ana Haber Listesi)
   ============================================= */

.news-list-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-red);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item .news-thumb {
    width: 200px;
    height: 130px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.news-list-item .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-list-item:hover .news-thumb img {
    transform: scale(1.05);
}

.news-list-item .news-info {
    flex: 1;
}

.news-list-item .category {
    display: inline-block;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-list-item h4 {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-list-item h4 a:hover {
    color: var(--primary-red);
}

.news-list-item .excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

.news-list-item .meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-gray);
}

/* =============================================
   SIDEBAR
   ============================================= */

.right-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
}

/* Son Dakika Widget */
.breaking-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.breaking-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breaking-news-item .thumb {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.breaking-news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breaking-news-item .info h5 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 600;
}

.breaking-news-item .info h5 a:hover {
    color: var(--primary-red);
}

.breaking-news-item .info .meta {
    font-size: 11px;
    color: var(--text-gray);
}

/* Popüler Widget */
.popular-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-item .number {
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.popular-item .info h5 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 600;
}

.popular-item .info h5 a:hover {
    color: var(--primary-red);
}

.popular-item .info .views {
    font-size: 11px;
    color: var(--text-gray);
}

/* =============================================
   REKLAM ALANLARI
   ============================================= */

.ad-space {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

.ad-space img {
    margin: 0 auto;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: #fff;
}

/* =============================================
   ARAMA MODAL
   ============================================= */

.search-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.search-modal-content {
    position: relative;
    margin: 15% auto;
    max-width: 600px;
    padding: 20px;
}

.search-close {
    position: absolute;
    right: 20px;
    top: -40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.search-form button {
    padding: 15px 30px;
    background: var(--primary-red);
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

/* =============================================
   SCROLL TO TOP
   ============================================= */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    
    .right-sidebar {
        position: static;
    }
    
    .big-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: visible;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .news-list-item {
        flex-direction: column;
    }
    
    .news-list-item .news-thumb {
        width: 100%;
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
}

/* Haber Ayırıcı */
.news-separator {
    height: 2px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 60px 0;
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 30px;
    font-size: 18px;
    color: var(--text-gray);
}

.loading-indicator i {
    margin-right: 10px;
    color: var(--primary-red);
}
/* =============================================
   HABER DETAY SAYFASI - HABERAY.COM TARZI
   ============================================= */

/* Haber Detay Container */
.news-detail-item {
    background: #fff;
    margin-bottom: 0;
}

.news-detail-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

/* Breadcrumb - Küçük ve minimal */
.news-detail-content .breadcrumb {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    padding: 0;
}

.news-detail-content .breadcrumb a {
    color: #999;
}

.news-detail-content .breadcrumb a:hover {
    color: var(--primary-red);
}

/* Kategori Badge */
.news-detail-content .category-badge {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Haber Başlığı - Haberay tarzı BÜYÜK */
.news-detail-content .news-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Meta Bilgiler */
.news-detail-content .news-meta {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.news-detail-content .news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-detail-content .news-meta i {
    color: #999;
    font-size: 13px;
}

/* Spot Metni - Kalın ve gri */
.news-detail-content .news-spot {
    font-size: 19px;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

/* Ana Görsel */
.news-detail-content .news-image {
    margin: 30px 0;
}

.news-detail-content .news-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* İçerik - HABERAY TARZI: Büyük font, geniş satır aralığı */
.news-detail-content .news-body {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.news-detail-content .news-body p {
    margin-bottom: 22px;
}

.news-detail-content .news-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 35px 0 20px;
    color: #1a1a1a;
}

.news-detail-content .news-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px;
    color: #2c2c2c;
}

.news-detail-content .news-body h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
}

.news-detail-content .news-body ul,
.news-detail-content .news-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.news-detail-content .news-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.news-detail-content .news-body strong,
.news-detail-content .news-body b {
    font-weight: 600;
    color: #1a1a1a;
}

.news-detail-content .news-body a {
    color: var(--primary-red);
    text-decoration: underline;
}

.news-detail-content .news-body a:hover {
    color: #c0392b;
}

.news-detail-content .news-body blockquote {
    border-left: 4px solid var(--primary-red);
    padding: 20px 25px;
    margin: 30px 0;
    background: #f9f9f9;
    font-style: italic;
    color: #555;
    font-size: 17px;
}

.news-detail-content .news-body img {
    margin: 30px auto;
    border-radius: 8px;
    display: block;
}

/* Etiketler */
.news-detail-content .news-tags {
    margin: 40px 0 30px;
    padding: 25px 0;
    border-top: 1px solid #eee;
}

.news-detail-content .news-tags .tag {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 8px 15px;
    margin: 0 8px 8px 0;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.news-detail-content .news-tags .tag:hover {
    background: var(--primary-red);
    color: #fff;
}

/* Paylaş Butonları */
.news-detail-content .news-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
}

.news-detail-content .news-share span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.news-detail-content .news-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s;
}

.news-detail-content .news-share a.facebook {
    background: #1877f2;
    color: #fff;
}

.news-detail-content .news-share a.twitter {
    background: #1da1f2;
    color: #fff;
}

.news-detail-content .news-share a.whatsapp {
    background: #25d366;
    color: #fff;
}

.news-detail-content .news-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Haber Ayırıcı Çizgi */
.news-separator {
    height: 1px;
    background: #e0e0e0;
    margin: 50px 0;
}

/* Yükleniyor Göstergesi */
.loading-indicator {
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #999;
}

.loading-indicator i {
    margin-right: 8px;
    color: var(--primary-red);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .news-detail-content {
        padding: 20px 15px 40px;
    }
    
    .news-detail-content .news-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .news-detail-content .news-spot {
        font-size: 17px;
    }
    
    .news-detail-content .news-body {
        font-size: 17px;
        line-height: 1.75;
    }
    
    .news-detail-content .news-body h2 {
        font-size: 24px;
    }
    
    .news-detail-content .news-body h3 {
        font-size: 21px;
    }
}
/* =============================================
   HABER DETAY - HABERAY.COM GERÇEK TASARIM
   ============================================= */

/* Container */
.news-detail-item {
    background: #fff;
    position: relative;
}

.news-detail-item .container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Haber İçeriği */
.news-detail-content {
    max-width: 780px;
    margin: 0 auto;
}

/* Kategori Badge - Haberay Tarzı */
.news-detail-content .category-badge {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Başlık - Haberay Tarzı */
.news-detail-content .news-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Spot Metni */
.news-detail-content .news-spot {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Meta - Sadece Tarih (Spot'tan Sonra) */
.news-detail-content .news-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Görsel */
.news-detail-content .news-image {
    margin: 25px 0 30px;
}

.news-detail-content .news-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* İçerik - Haberay Font */
.news-detail-content .news-body {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.news-detail-content .news-body p {
    margin-bottom: 20px;
}

.news-detail-content .news-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 35px 0 18px;
    color: #000;
}

.news-detail-content .news-body h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.news-detail-content .news-body ul,
.news-detail-content .news-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.news-detail-content .news-body li {
    margin-bottom: 10px;
}

.news-detail-content .news-body strong {
    font-weight: 600;
    color: #000;
}

.news-detail-content .news-body a {
    color: #d32f2f;
    text-decoration: underline;
}

/* Etiketler */
.news-detail-content .news-tags {
    margin: 40px 0 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.news-detail-content .news-tags .tag {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border-radius: 3px;
    font-size: 13px;
    transition: all 0.3s;
}

.news-detail-content .news-tags .tag:hover {
    background: #d32f2f;
    color: #fff;
}

/* PAYLAŞIM BUTONLARI - SAĞDA YÜZER (STICKY) */
.news-share-sticky {
    position: fixed;
    right: calc((100vw - 1200px) / 2 + 40px);
    top: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.news-share-sticky .share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-share-sticky .share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.news-share-sticky .share-btn.facebook {
    background: #3b5998;
}

.news-share-sticky .share-btn.twitter {
    background: #1da1f2;
}

.news-share-sticky .share-btn.copy {
    background: #666;
}

.news-share-sticky .share-btn.more {
    background: #999;
}

/* Haber Ayırıcı */
.news-separator {
    height: 1px;
    background: #e0e0e0;
    margin: 50px auto;
    max-width: 780px;
}

/* Responsive */
@media (max-width: 1280px) {
    .news-share-sticky {
        right: 20px;
    }
}

@media (max-width: 992px) {
    .news-share-sticky {
        display: none; /* Mobilde gizle */
    }
    
    .news-detail-content {
        padding: 30px 20px 50px;
    }
}

@media (max-width: 768px) {
    .news-detail-content .news-title {
        font-size: 8vw;
        line-height: 1.125;
    }
    
    .news-detail-content .news-spot {
        font-size: 16px;
    }
    
    .news-detail-content .news-body {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* META VE SOSYAL MEDYA YAN YANA */
.news-meta-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.news-meta-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.news-meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta-info i {
    color: #bbb;
    font-size: 12px;
}

.news-meta-social {
    display: flex;
    gap: 8px;
}

.news-meta-social .social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.news-meta-social .social-btn:hover {
    transform: translateY(-2px);
}

.news-meta-social .social-btn.facebook {
    background: #3b5998;
}

.news-meta-social .social-btn.twitter {
    background: #1da1f2;
}

.news-meta-social .social-btn.link {
    background: #666;
}

.news-meta-social .social-btn.more {
    background: #999;
}

/* Sticky share'i kaldır */
.news-share-sticky {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .news-meta-share {
        align-items: flex-start;
        gap: 15px;
    }
}

/* Max-width düzeltmesi */
.news-detail-content {
    max-width: 1400px !important;
}
/* =============================================
   HEADER - HABERAY TARZI
   ============================================= */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 40px;
}

/* Logo - Sol */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.logo h1 span {
    color: #e53935;
}

/* Ana Menü - Ortada */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    color: #000;
    font-size: 20px !important;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700;
    text-transform: Capitalize;
}

.nav-menu li a:hover {
    color: #e53935;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e53935;
    transition: width 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Dropdown ok */
.nav-menu li a i {
    font-size: 10px;
    margin-left: 5px;
}

/* Arama - Sağda */
.header-search {
    flex-shrink: 0;
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s;
}

.search-toggle:hover {
    background: #f5f5f5;
    color: #e53935;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 26px;
    }
    
    .logo img {
        height: 35px;
    }
}

/* Mobil Menü Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Arama Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.search-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.search-close:hover {
    color: #e53935;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-form input:focus {
    border-color: #e53935;
}

.search-form button {
    padding: 15px 30px;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #c62828;
}

/* Mobil Menü Düzeltmesi */
@media (max-width: 992px) {
    .header-main {
        position: relative;
    }
    
    .main-nav {
        display: none;
        position: fixed !important;
        top: 75px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        display: block !important;
    }
}

/* MOBİL HEADER DÜZENİ - MENÜ SOL, LOGO ORTADA, ARAMA SAĞ */
@media (max-width: 992px) {
    .header-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }
    
    /* Hamburger Menü - Sol */
    .mobile-menu-toggle {
        order: 1;
        display: flex !important;
    }
    
    /* Logo - Ortada */
    .logo {
        order: 2;
        flex: 1;
        text-align: center;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    /* Arama - Sağda */
    .header-search {
        order: 3;
    }
    
    /* Ana Menüyü Gizle (Hamburger açınca görünür) */
    .main-nav {
        order: 4;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .logo img {
        height: 30px;
    }
}
/* =============================================
   MOBİL MENÜ - SOLDAN KAYAN OVERLAY
   ============================================= */

@media (max-width: 992px) {
    /* Mobil Menü Overlay */
    .main-nav {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: block !important;
        padding: 0;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    /* Menü Header - Logo ve X Butonu */
    .nav-menu::before {
        content: '';
        display: block;
        padding: 20px;
        border-bottom: 1px solid #eee;
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 1;
    }
    
    /* Menü İçeriği */
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #f5f5f5;
    }
    
    .nav-menu li a {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        transition: all 0.3s;
    }
    
    .nav-menu li a:hover {
        background: #f5f5f5;
        color: #e53935;
        padding-left: 25px;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    /* Sosyal Medya - Menü Altında */
    .nav-menu::after {
        content: 'CONNECT WITH US';
        display: block;
        padding: 30px 20px 10px;
        font-size: 11px;
        font-weight: 700;
        color: #999;
        letter-spacing: 1px;
    }
    
    /* Overlay Arka Plan */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* X Butonu (Hamburger Active) */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* MOBİL MENÜ HEADER & FOOTER */
@media (max-width: 992px) {
    /* Mobil Menü Header - Logo ve X */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .mobile-logo h2 {
        font-size: 26px;
        font-weight: 700;
        color: #000;
        margin: 0;
    }
    
    .mobile-logo h2 span {
        color: #e53935;
    }
    
    .mobile-logo img {
        height: 35px;
    }
    
    .mobile-menu-close {
        font-size: 32px;
        color: #999;
        cursor: pointer;
        line-height: 1;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-close:hover {
        color: #e53935;
    }
    
    /* Mobil Menü Footer - Sosyal Medya */
    .mobile-menu-footer {
        padding: 40px 20px 30px;
        text-align: center;
        border-top: 1px solid #eee;
        margin-top: auto;
    }
    
    .connect-text {
        font-size: 11px;
        font-weight: 700;
        color: #999;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .mobile-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
        border-radius: 50%;
        color: #666;
        font-size: 16px;
        transition: all 0.3s;
    }
    
    .mobile-social a:hover {
        background: #e53935;
        color: #fff;
        transform: translateY(-3px);
    }
    
    /* Nav Menu Düzeltmesi */
    .nav-menu::before,
    .nav-menu::after {
        display: none;
    }
}
/* =============================================
   MOBİL MENÜ - DOĞRU TASARIM
   ============================================= */

@media (max-width: 992px) {
    /* Mobil Menü Overlay */
    .main-nav {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: flex !important;
        flex-direction: column;
        padding: 0;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    /* Mobil Menü Header - Logo ve X */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: #2c3e50;
        flex-shrink: 0;
    }
    
    .mobile-logo h2 {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }
    
    .mobile-logo h2 span {
        color: #e53935;
    }
    
    .mobile-logo img {
        height: 35px;
    }
    
    .mobile-menu-close {
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        line-height: 1;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Menü Listesi - Üstte */
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        margin: 0;
        flex: 1;
    }
    
    .nav-menu li {
        border: none;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 25px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        transition: all 0.3s;
    }
    
    .nav-menu li a:hover {
        background: #f8f8f8;
        color: #e53935;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    /* Sosyal Medya - En Altta (Footer) */
    .mobile-menu-footer {
        padding: 30px 20px;
        text-align: center;
        background: #2c3e50;
        margin-top: auto;
        flex-shrink: 0;
    }
    
    .connect-text {
        font-size: 10px;
        font-weight: 700;
        color: rgba(255,255,255,0.6);
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .mobile-social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: #fff;
        font-size: 15px;
        transition: all 0.3s;
    }
    
    .mobile-social a:hover {
        background: #e53935;
        transform: translateY(-3px);
    }
    
    /* Overlay Arka Plan - BEYAZ DEĞIL KOYU */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/* =============================================
   MENÜ DÜZELTMESİ - DESKTOP NORMAL, MOBİL TOGGLE
   ============================================= */

/* DESKTOP - Normal yatay menü */
@media (min-width: 993px) {
    .main-nav {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
        transition: none !important;
        flex-direction: row !important;
        padding: 0 !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 35px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav-menu li {
        border: none !important;
    }
    
    .nav-menu li a {
        padding: 0 !important;
        font-weight: 700 !important;
        color: #000 !important;
        background: transparent !important;
    }
    
    .nav-menu li a:hover {
        color: #e53935 !important;
        background: transparent !important;
        padding-left: 0 !important;
    }
    
    /* Desktop'ta mobil elemanları gizle */
    .mobile-menu-header,
    .mobile-menu-footer,
    .menu-overlay {
        display: none !important;
    }
}

/* MOBİL - Toggle menü (sadece 992px ve altı) */
@media (max-width: 992px) {
    /* Mobil Menü Overlay */
    .main-nav {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: flex !important;
        flex-direction: column;
        padding: 0;
    }
    
    .main-nav.active {
        left: 0 !important;
    }
    
    /* Mobil Menü Header */
    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: #2c3e50;
        flex-shrink: 0;
    }
    
    .mobile-logo h2 {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }
    
    .mobile-logo h2 span {
        color: #e53935;
    }
    
    .mobile-menu-close {
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        line-height: 1;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Menü Listesi */
    .nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 20px 0 !important;
        margin: 0 !important;
        flex: 1;
    }
    
    .nav-menu li {
        border: none !important;
    }
    
    .nav-menu li a {
        display: block !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #000 !important;
        transition: all 0.3s !important;
    }
    
    .nav-menu li a:hover {
        background: #f8f8f8 !important;
        color: #e53935 !important;
    }
    
    .nav-menu li a::after {
        display: none !important;
    }
    
    /* Sosyal Medya Footer */
    .mobile-menu-footer {
        display: flex !important;
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        background: #2c3e50;
        margin-top: auto;
        flex-shrink: 0;
    }
    
    .connect-text {
        font-size: 10px;
        font-weight: 700;
        color: rgba(255,255,255,0.6);
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .mobile-social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: #fff;
        font-size: 15px;
        transition: all 0.3s;
    }
    
    .mobile-social a:hover {
        background: #e53935;
        transform: translateY(-3px);
    }
    
    /* Overlay */
    .menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/* =============================================
   MOBİL MENÜ - TAM BEYAZ ARKA PLAN
   ============================================= */

@media (max-width: 992px) {
    /* Mobil Menü - TAM BEYAZ */
    .main-nav {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff !important; /* TAM BEYAZ */
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: flex !important;
        flex-direction: column;
        padding: 0;
    }
    
    .main-nav.active {
        left: 0 !important;
    }
    
    /* Mobil Menü Header - Sadece logo, X ve altındaki yazı */
    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: transparent !important; /* ARKA PLAN YOK */
        flex-shrink: 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-logo h2 {
        font-size: 26px;
        font-weight: 700;
        color: #000 !important; /* SİYAH */
        margin: 0;
    }
    
    .mobile-logo h2 span {
        color: #e53935;
    }
    
    .mobile-menu-close {
        font-size: 28px;
        color: #000 !important; /* SİYAH X */
        cursor: pointer;
        line-height: 1;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Menü Listesi - Beyaz */
    .nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 20px 0 !important;
        margin: 0 !important;
        flex: 1;
        background: transparent !important; /* BEYAZ */
    }
    
    .nav-menu li {
        border: none !important;
    }
    
    .nav-menu li a {
        display: block !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #000 !important;
        transition: all 0.3s !important;
        background: transparent !important;
    }
    
    .nav-menu li a:hover {
        background: #f8f8f8 !important;
        color: #e53935 !important;
    }
    
    /* Sosyal Medya Footer - Sadece yazı ve ikonlar, arka plan YOK */
    .mobile-menu-footer {
        display: flex !important;
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        background: transparent !important; /* ARKA PLAN YOK */
        margin-top: auto;
        flex-shrink: 0;
        border-top: 1px solid #eee;
    }
    
    .connect-text {
        font-size: 10px;
        font-weight: 700;
        color: #999 !important; /* GRİ YAZI */
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .mobile-social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5 !important; /* AÇIK GRİ */
        border-radius: 50%;
        color: #666 !important;
        font-size: 15px;
        transition: all 0.3s;
    }
    
    .mobile-social a:hover {
        background: #e53935 !important;
        color: #fff !important;
        transform: translateY(-3px);
    }
}
/* =============================================
   MOBİL MENÜ - EKRAN GÖRÜNTÜSÜNDEKİ GİBİ
   ============================================= */

@media (max-width: 992px) {
    /* Mobil Menü - TAM EKRAN BEYAZ */
    .main-nav {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 100% !important; /* TAM EKRAN */
        height: 100vh;
        background: #fff !important;
        box-shadow: none !important;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: flex !important;
        flex-direction: column;
        padding: 0;
    }
    
    .main-nav.active {
        left: 0 !important;
    }
    
    /* Header - Logo ve X */
    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 20px 20px;
        background: #fff !important;
        flex-shrink: 0;
        border-bottom: none !important;
    }
    
    .mobile-logo h2 {
        font-size: 28px;
        font-weight: 700;
        color: #000 !important;
        margin: 0;
    }
    
    .mobile-logo h2 span {
        color: #e53935;
    }
    
    .mobile-logo img {
        height: 40px;
    }
    
    .mobile-menu-close {
        font-size: 32px;
        color: #000 !important;
        cursor: pointer;
        line-height: 1;
        width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-weight: 300;
    }
    
    /* Menü Listesi */
    .nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 30px 0 !important;
        margin: 0 !important;
        flex: 1;
        background: #fff !important;
    }
    
    .nav-menu li {
        border: none !important;
    }
    
    .nav-menu li a {
        display: block !important;
        padding: 18px 20px !important;
        font-size: 17px !important;
        font-weight: 400 !important;
        color: #000 !important;
        transition: all 0.2s !important;
        background: transparent !important;
    }
    
    .nav-menu li a:hover {
        background: transparent !important;
        color: #e53935 !important;
    }
    
    .nav-menu li a::after {
        display: none !important;
    }
    
    /* Footer - Sosyal Medya */
    .mobile-menu-footer {
        display: flex !important;
        flex-direction: column;
        padding: 30px 20px 40px !important;
        text-align: center;
        background: #fff !important;
        margin-top: auto;
        flex-shrink: 0;
        border-top: none !important;
    }
    
    .connect-text {
        font-size: 10px !important;
        font-weight: 600 !important;
        color: #999 !important;
        letter-spacing: 2px !important;
        margin-bottom: 20px !important;
        text-transform: uppercase;
    }
    
    .mobile-social {
        display: flex !important;
        justify-content: center;
        gap: 12px;
    }
    
    .mobile-social a {
        width: 42px !important;
        height: 42px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f0f0f0 !important;
        border-radius: 50% !important;
        color: #666 !important;
        font-size: 16px !important;
        transition: all 0.3s;
    }
    
    .mobile-social a:hover {
        background: #e53935 !important;
        color: #fff !important;
        transform: scale(1.1);
    }
    
    /* Overlay - Koyu */
    .menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5) !important;
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/* =============================================
   MOBİL MENÜ - TRANSFORM İLE AÇILMA
   ============================================= */

@media (max-width: 992px) {
    /* Mobil Menü - TAM EKRAN */
    .main-nav {
        position: fixed !important;
        top: 0;
        left: 0 !important; /* Sol tarafa sabitlendi */
        width: 100% !important;
        height: 100vh;
        background: #fff !important;
        box-shadow: none !important;
        z-index: 9999;
        overflow-y: auto;
        display: flex !important;
        flex-direction: column;
        padding: 0;
        transform: translateX(-100%) !important; /* Solda gizli */
        transition: transform 0.3s ease !important;
    }
    
    .main-nav.active {
        transform: translateX(0) !important; /* Görünür */
    }
}


/* Paylaşım Butonları Container */
.news-meta-social {
    position: relative;
}

/* Dropdown Toggle Butonu (3 nokta) */
.share-more-toggle {
    position: relative;
}

/* Dropdown Menü */
.share-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #000;
    border-radius: 4px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.share-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Üçgen Ok */
.share-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #000;
}

/* Dropdown Liste */
.share-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.share-dropdown li {
    margin: 0;
}

.share-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.share-dropdown a:hover {
    background: rgba(255,255,255,0.1);
}

.share-dropdown a i {
    font-size: 16px;
    opacity: 0.9;
}

/* Dropdown Overlay (mobilde dışına tıklayınca kapatmak için) */
.share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999;
    display: none;
}

.share-overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .share-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 180px;
    }
    
    .share-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }
    
    .share-dropdown::before {
        left: 50%;
        right: auto;
        margin-left: -6px;
    }
}