/**
 * Print Styles
 * Yazdırma için optimize edilmiş stiller
 *
 * @package HaberPro
 */

@media print {
    /* Hide unnecessary elements */
    .site-header,
    .site-footer,
    .widget-area,
    .sidebar,
    .haberpro-scroll-progress,
    .haberpro-newsletter-form,
    .entry-footer .share-buttons,
    .entry-footer .entry-tags,
    .comments-area,
    .haberpro-related-posts,
    .haberpro-category-news-section,
    nav,
    .pagination,
    .breadcrumb,
    button,
    .haberpro-video-wrapper,
    .haberpro-gallery-slider,
    #haberpro-scroll-progress {
        display: none !important;
    }
    
    /* Page setup */
    @page {
        margin: 2cm;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
        background: #fff;
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000;
    }
    
    p {
        orphans: 3;
        widows: 3;
    }
    
    /* Links */
    a {
        color: #000;
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
    }
    
    /* Content area */
    .site-main {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .entry-content {
        width: 100%;
        max-width: 100%;
    }
    
    /* Single post */
    .single .entry-header {
        margin-bottom: 20px;
    }
    
    .single .entry-title {
        font-size: 18pt;
        margin-bottom: 10px;
    }
    
    .single .entry-meta {
        font-size: 10pt;
        color: #666;
        margin-bottom: 15px;
    }
    
    /* Post content */
    .entry-content p {
        margin-bottom: 12pt;
    }
    
    .entry-content ul,
    .entry-content ol {
        margin-left: 20pt;
        margin-bottom: 12pt;
    }
    
    /* Avoid page breaks */
    .entry-content img,
    .entry-content blockquote,
    .entry-content table {
        page-break-inside: avoid;
    }
    
    /* Blockquotes */
    blockquote {
        border-left: 3pt solid #ccc;
        padding-left: 10pt;
        margin-left: 0;
        font-style: italic;
    }
    
    /* Tables */
    table {
        border-collapse: collapse;
        width: 100%;
    }
    
    table th,
    table td {
        border: 1pt solid #000;
        padding: 5pt;
    }
    
    /* Author box */
    .author-box {
        border-top: 1pt solid #ccc;
        padding-top: 15pt;
        margin-top: 20pt;
        page-break-inside: avoid;
    }
    
    /* Print URL */
    .print-url {
        font-size: 9pt;
        color: #666;
        margin-top: 20pt;
    }
    
    /* Page breaks */
    .entry-content h2 {
        page-break-before: auto;
    }
    
    /* Footer for print */
    .print-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 9pt;
        color: #666;
        text-align: center;
        padding: 10pt;
        border-top: 1pt solid #ccc;
    }
}

