/* Print Styles - Yazdırma Dostu Stiller */

@media print {
    /* Genel Ayarlar */
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Sayfa Ayarları */
    @page {
        margin: 2cm;
        size: A4;
    }
    
    /* Gereksiz Elementleri Gizle */
    nav,
    header,
    footer,
    .no-print,
    button,
    .btn,
    .social-share,
    .comment-form,
    .newsletter-form,
    iframe,
    video,
    audio {
        display: none !important;
    }
    
    /* Body ve Container */
    body {
        font-size: 12pt;
        line-height: 1.5;
        font-family: 'Times New Roman', serif;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    /* Başlıklar */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
        color: black !important;
    }
    
    h1 {
        font-size: 24pt;
        margin-bottom: 12pt;
    }
    
    h2 {
        font-size: 18pt;
        margin-bottom: 10pt;
    }
    
    h3 {
        font-size: 14pt;
        margin-bottom: 8pt;
    }
    
    /* Paragraflar */
    p {
        margin-bottom: 8pt;
        orphans: 3;
        widows: 3;
    }
    
    /* Linkler */
    a {
        color: black !important;
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    /* Resimler */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
        display: block;
        margin: 10pt auto;
    }
    
    /* Tablolar */
    table {
        border-collapse: collapse;
        width: 100%;
        page-break-inside: avoid;
    }
    
    table th,
    table td {
        border: 1px solid #000;
        padding: 6pt;
    }
    
    /* Liste */
    ul, ol {
        margin-left: 20pt;
        margin-bottom: 10pt;
    }
    
    /* Blockquote */
    blockquote {
        border-left: 3px solid #000;
        padding-left: 12pt;
        margin: 10pt 0;
        font-style: italic;
    }
    
    /* Breadcrumbs */
    .breadcrumbs {
        margin-bottom: 12pt;
        padding-bottom: 8pt;
        border-bottom: 1px solid #000;
    }
    
    /* Haber İçeriği */
    .haber-content {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    /* Sayfa Kırılmaları */
    .page-break-before {
        page-break-before: always;
    }
    
    .page-break-after {
        page-break-after: always;
    }
    
    .no-break {
        page-break-inside: avoid;
    }
    
    /* URL ve Tarih Bilgisi */
    .print-footer {
        margin-top: 20pt;
        padding-top: 10pt;
        border-top: 1px solid #000;
        font-size: 10pt;
        color: #666;
        text-align: center;
    }
}
