/* Print Stylesheet for Newspaper View */

@media print {
  /* Hide all UI elements */
  .sidebar,
  .header,
  .footer,
  .view-toggle,
  .print-btn,
  .newspaper-actions,
  .news-view-toggle,
  .key-metrics,
  .icon-bar,
  .main-header {
    display: none !important;
  }
  
  /* Full width newspaper */
  .newspaper-view {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 20px !important;
    background: #F5F1E8 !important;
  }
  
  /* Prevent page breaks inside articles */
  .article-hero,
  .article-large,
  .article-medium,
  .article-small {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  
  /* Ensure articles don't split across pages */
  .article-hero {
    page-break-after: avoid;
  }
  
  /* Print colors */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
  
  /* Remove shadows and effects for print */
  .article-hero,
  .article-large,
  .article-medium,
  .article-small {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
  
  /* Ensure text is readable */
  .article-title,
  .article-description {
    color: #000 !important;
  }
  
  /* Footer with URL */
  .newspaper-view::after {
    content: "www.your-tenant.com";
    display: block;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 10px;
    color: #666;
  }
}


