/* Newspaper View Styles */

.newspaper-view {
  background: #F5F1E8;
  padding: 40px;
  font-family: Georgia, 'Times New Roman', serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 100vh;
  border-radius: 18px;
}

/* Hero articles - full width */
.article-hero-wrapper {
  width: 100%;
  grid-column: 1 / -1;
}

/* Flexible row layout */
.newspaper-row-flex {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}

/* Ensure all images in a row have the same height - calculate based on widest container */
.newspaper-row-flex .article-image-wrapper {
  /* Use padding-bottom trick for consistent 16:9 aspect ratio */
  height: 0 !important;
  padding-bottom: 56.25% !important; /* 16:9 aspect ratio (9/16 = 0.5625 = 56.25%) */
  aspect-ratio: 16 / 9 !important;
  position: relative !important;
  width: 100% !important;
}

.article-two-thirds,
.article-one-third,
.article-half,
.article-third,
.article-full {
  flex: 1;
  min-width: 0;
  padding-top: 0 !important;
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
}

.article-two-thirds {
  flex: 2;
}

/* Newspaper Footer */
.newspaper-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #000;
  width: 100%;
}

.newspaper-footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 12px;
  color: #666;
}

.newspaper-footer-company {
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newspaper-footer-separator {
  color: #999;
}

.newspaper-footer-date {
  color: #666;
  font-style: italic;
}

/* Badge hiding rules moved to end of file for maximum priority */

.newspaper-header {
  grid-column: 1 / -1;
  position: relative;
  text-align: center;
  border-bottom: 3px solid #000;
  padding-bottom: 20px;
  margin-bottom: 30px;
  padding-top: 60px; /* Space for action buttons */
}

.newspaper-actions {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 10px;
}

.action-dropdown {
  position: relative;
}

.action-btn {
  background: #F5F1E8;
  color: #2c2c2c;
  border: 1px solid #d4d0c7;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.action-btn:hover {
  background: #e8e4d9;
  border-color: #b8b4ab;
}

.action-btn i {
  width: 20px;
  height: 20px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 5px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 200px;
  display: none;
  z-index: 1000;
  overflow: hidden;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu button {
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2c2c2c;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
}

.dropdown-menu button:hover {
  background: #f5f5f5;
}

.dropdown-menu button i {
  width: 18px;
  height: 18px;
}

.newspaper-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Playfair Display', Georgia, serif;
  margin: 20px 0 10px 0;
  color: #000;
}

.newspaper-claim {
  font-size: 16px;
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
  font-family: Georgia, serif;
}

.newspaper-meta {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

/* View Toggle Buttons - Removed (always show newspaper view) */

/* Article Styles */
.newspaper-row {
  display: contents;
}

.article-hero {
  width: 100%;
  border-bottom: 3px solid #000;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

/* Articles in flexible containers */
.article-two-thirds .article-large,
.article-two-thirds .article-medium,
.article-one-third .article-large,
.article-one-third .article-medium,
.article-one-third .article-small,
.article-half .article-large,
.article-half .article-medium,
.article-third .article-small,
.article-full .article-large,
.article-full .article-medium,
.article-full .article-small {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Ensure all article images start at same vertical position */
.article-large,
.article-medium,
.article-small {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.article-large .article-image-wrapper,
.article-medium .article-image-wrapper,
.article-small .article-image-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.article-image-wrapper {
  width: 100% !important;
  margin-bottom: 15px;
  overflow: hidden !important;
  aspect-ratio: 16 / 9 !important;
  position: relative !important;
  /* Ensure consistent height - padding-bottom for 16:9 aspect ratio */
  height: 0 !important;
  padding-bottom: 56.25% !important; /* 16:9 aspect ratio (9/16 = 0.5625 = 56.25%) */
}

.article-image,
.article-image-link img,
.article-image-link .article-image {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.article-hero .article-image-wrapper {
  margin-bottom: 20px;
}

.article-large .article-image-wrapper {
  margin-bottom: 15px;
}

.article-medium .article-image-wrapper {
  margin-bottom: 10px;
}

/* Badges removed */

.article-hero .article-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #000;
}

.article-hero .article-description {
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
  margin: 15px 0;
}

.article-hero .article-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  flex-wrap: wrap;
}

.article-large {
  grid-column: span 1;
  border-left: 3px solid #000;
  padding-left: 20px;
  margin-bottom: 25px;
}

.article-large-placeholder {
  grid-column: span 1;
}

/* Badges removed */

.article-large .article-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
}

.article-large .article-description {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 10px 0;
}

.article-large .article-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.article-medium {
  grid-column: span 1;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #ddd;
}

.article-medium-placeholder {
  grid-column: span 1;
}

.article-small-column-placeholder {
  grid-column: span 1;
}

.article-small-placeholder {
  grid-column: span 1;
}

/* Badges removed */

.article-medium .article-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 8px 0;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
}

.article-medium .article-description {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 8px 0;
}

.article-medium .article-meta {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

.article-small-column {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-small {
  padding: 0 0 8px 15px;
  border-left: 2px solid #ccc;
  margin-bottom: 12px;
  margin-top: 0 !important;
}

.article-compact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.article-small .bullet {
  font-size: 20px;
  color: #666;
  line-height: 1;
  margin-top: 2px;
}

.article-small .article-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 5px 0;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
}

.article-small .article-source {
  font-size: 12px;
  color: #666;
}

/* Badges removed - no longer used */

/* Article Links - Newspaper Style */
/* Only titles are underlined, not descriptions */
.article-title .article-link {
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.article-title .article-link:hover {
  opacity: 0.7;
  text-decoration-thickness: 2px;
}

/* Description text without underline */
.article-description {
  color: #2c2c2c;
  text-decoration: none;
}

.article-image-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.article-image-link:hover {
  opacity: 0.9;
}

.article-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Analytics Sidebar - Newspaper Design */
/* High specificity to override main.css styles */
#news-content .key-metrics.news-analytics-sidebar {
  background: #F5F1E8 !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  border: 2px solid #000 !important;
  padding: 20px !important;
  color: #000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow-y: auto !important;
  max-height: calc(100vh - 100px) !important;
}

#news-content .key-metrics.news-analytics-sidebar .section-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  color: #000 !important;
  border-bottom: 2px solid #000 !important;
  padding-bottom: 10px !important;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

#news-content .key-metrics.news-analytics-sidebar .news-analytics-card {
  background: #fff !important;
  border: 1px solid #000 !important;
  padding: 15px !important;
  margin-bottom: 15px !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

#news-content .key-metrics.news-analytics-sidebar .news-analytics-card:hover {
  background: #fff !important;
  border-color: #000 !important;
  transform: none !important;
  box-shadow: none !important;
}

#news-content .key-metrics.news-analytics-sidebar .analytics-card-header {
  border-bottom: 1px solid #000 !important;
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
}

#news-content .key-metrics.news-analytics-sidebar .analytics-title {
  font-weight: 700 !important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
}

#news-content .key-metrics.news-analytics-sidebar .analytics-value {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #000 !important;
  font-family: Georgia, serif !important;
}

#news-content .key-metrics.news-analytics-sidebar .analytics-trend {
  font-size: 11px !important;
  color: #666 !important;
  font-style: italic !important;
  margin-top: 5px !important;
}

#news-content .key-metrics.news-analytics-sidebar .analytics-icon {
  color: #000 !important;
}

#news-content .key-metrics.news-analytics-sidebar .analytics-icon i {
  color: #000 !important;
}

#news-content .key-metrics.news-analytics-sidebar .analytics-chart-container {
  margin-top: 10px !important;
  border-top: 1px solid #ddd !important;
  padding-top: 10px !important;
}

/* Metric Cards in News Analytics Sidebar - Newspaper Design */
#news-content .key-metrics.news-analytics-sidebar .metric-card,
#news-content .key-metrics.news-analytics-sidebar .metric-card-enhanced {
  background: #fff !important;
  border: 2px solid #000 !important;
  padding: 15px !important;
  margin-bottom: 15px !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-card:hover,
#news-content .key-metrics.news-analytics-sidebar .metric-card-enhanced:hover {
  background: #fff !important;
  border-color: #000 !important;
  transform: none !important;
  box-shadow: none !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-card-header {
  border-bottom: 1px solid #000 !important;
  padding-bottom: 8px !important;
  margin-bottom: 12px !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-label {
  font-weight: 700 !important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  letter-spacing: 0.5px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-value,
#news-content .key-metrics.news-analytics-sidebar .metric-value-total,
#news-content .key-metrics.news-analytics-sidebar .metric-value-period {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #000 !important;
  font-family: Georgia, serif !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-value-separator {
  color: #666 !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-trend,
#news-content .key-metrics.news-analytics-sidebar .metric-analysis {
  font-size: 11px !important;
  color: #666 !important;
  font-style: italic !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-trend .trend-arrow {
  color: #28A745 !important;
  font-weight: 700 !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-trend .trend-value {
  color: #000 !important;
  font-weight: 600 !important;
}

/* Make mini-graphs visible */
#news-content .key-metrics.news-analytics-sidebar .metric-mini-graph,
#news-content .key-metrics.news-analytics-sidebar .metric-progress-bar {
  display: block !important;
  visibility: visible !important;
  height: 40px !important;
  margin: 10px 0 !important;
  background: transparent !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-progress-bar {
  background: rgba(0, 0, 0, 0.1) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  height: 6px !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-progress-fill {
  background: #000 !important;
  height: 100% !important;
  transition: width 0.3s ease !important;
}

/* Canvas charts - Override colors for newspaper design */
#news-content .key-metrics.news-analytics-sidebar canvas {
  width: 100% !important;
  height: 40px !important;
  display: block !important;
  filter: grayscale(100%) contrast(1.2) !important;
}

/* SVG charts (pie charts) */
#news-content .key-metrics.news-analytics-sidebar .metric-pie-chart {
  display: block !important;
  visibility: visible !important;
  margin: 15px 0 !important;
  width: 100% !important;
  height: 120px !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-pie-chart svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-pie-chart svg text {
  font-family: Georgia, serif !important;
  font-size: 8px !important;
  fill: #000 !important;
  font-weight: 700 !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-icon {
  color: #000 !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-icon i {
  color: #000 !important;
}

#news-content .key-metrics.news-analytics-sidebar .intelligence-score-big {
  background: #fff !important;
  border: 2px solid #000 !important;
  padding: 20px !important;
  border-radius: 0 !important;
}

#news-content .key-metrics.news-analytics-sidebar .intelligence-value,
#news-content .key-metrics.news-analytics-sidebar .intelligence-rating {
  color: #000 !important;
  font-family: Georgia, serif !important;
}

#news-content .key-metrics.news-analytics-sidebar .intelligence-sub-value,
#news-content .key-metrics.news-analytics-sidebar .intelligence-sub-label {
  color: #000 !important;
  font-family: Georgia, serif !important;
}

#news-content .key-metrics.news-analytics-sidebar .analytics-badge {
  background: #fff !important;
  border: 2px solid #000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

#news-content .key-metrics.news-analytics-sidebar .metrics-list {
  background: #fff !important;
  border: 2px solid #000 !important;
  padding: 15px !important;
  border-radius: 8px !important;
}

#news-content .key-metrics.news-analytics-sidebar .metric-row-label,
#news-content .key-metrics.news-analytics-sidebar .metric-row-value {
  color: #000 !important;
  font-family: Georgia, serif !important;
}

#news-content .key-metrics.news-analytics-sidebar .top-sources {
  background: #fff !important;
  border: 2px solid #000 !important;
  padding: 15px !important;
  border-radius: 8px !important;
}

#news-content .key-metrics.news-analytics-sidebar .top-sources .section-title {
  color: #000 !important;
  border-bottom: 1px solid #000 !important;
}

/* Top Sources List Items - Newspaper Design */
#news-content .key-metrics.news-analytics-sidebar .source-item-enhanced {
  background: #F5F1E8 !important;
  border: 1px solid #000 !important;
  padding: 12px !important;
  margin-bottom: 10px !important;
  border-radius: 4px !important;
}

#news-content .key-metrics.news-analytics-sidebar .source-header {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
}

#news-content .key-metrics.news-analytics-sidebar .source-icon-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #000 !important;
}

#news-content .key-metrics.news-analytics-sidebar .source-icon {
  width: 16px !important;
  height: 16px !important;
  color: #000 !important;
}

#news-content .key-metrics.news-analytics-sidebar .source-rank {
  background: #000 !important;
  color: #fff !important;
  padding: 2px 6px !important;
  border-radius: 3px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

#news-content .key-metrics.news-analytics-sidebar .source-name-enhanced {
  flex: 1 !important;
  color: #000 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

#news-content .key-metrics.news-analytics-sidebar .source-count-enhanced {
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

#news-content .key-metrics.news-analytics-sidebar .source-bar-container {
  width: 100% !important;
  height: 6px !important;
  background: rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important;
  overflow: hidden !important;
}

#news-content .key-metrics.news-analytics-sidebar .source-bar-fill {
  height: 100% !important;
  background: #000 !important;
  transition: width 0.6s ease !important;
}

/* Print Styles - Show ONLY newspaper-view */
@media print {
  /* Hide EVERYTHING except newspaper-view */
  body > *:not(.newspaper-view),
  header,
  footer,
  .sidebar,
  .icon-bar,
  .main-content-wrapper > *:not(#news-top10),
  .main-content,
  .recent-intel,
  .key-metrics,
  .news-analytics-sidebar,
  .newspaper-actions,
  .section-title,
  h2.section-title {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Show only newspaper-view */
  .newspaper-view,
  #newspaper-view {
    display: grid !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 20px !important;
    background: #F5F1E8 !important;
    border-radius: 0 !important;
    min-height: auto !important;
  }
  
  /* Ensure newspaper-view is positioned correctly */
  #news-top10 {
    display: block !important;
    visibility: visible !important;
  }
  
  #news-top10 .newspaper-view {
    display: grid !important;
    visibility: visible !important;
  }
  
  .article-link {
    color: #000 !important;
    text-decoration: underline !important;
  }
  
  .article-image-link {
    page-break-inside: avoid;
  }
  
  /* Ensure images are visible and grayscale */
  .article-image {
    display: block !important;
    visibility: visible !important;
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  
  .article-image-wrapper {
    display: block !important;
    visibility: visible !important;
  }
}

/* Load More Text - Simple White Text on Background */
#news-content #news-load-more {
  background: transparent !important;
  color: #fff !important;
  border: none !important;
  padding: 20px !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  cursor: default !important;
  transition: none !important;
  margin: 30px auto !important;
  display: block !important;
  text-align: center !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  opacity: 0.6 !important;
}

/* Responsive Design */
/* Tablet: Already 2 columns, no change needed */

@media (max-width: 768px) {
  .newspaper-view {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .newspaper-title {
    font-size: 32px;
    letter-spacing: 2px;
  }
  
  .article-hero,
  .article-large,
  .article-medium,
  .article-small-column {
    grid-column: 1 / -1;
  }
  
  .article-large {
    border-left: none;
    border-top: 3px solid #000;
    padding-left: 0;
    padding-top: 15px;
  }
  
  .newspaper-actions {
    position: static;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .newspaper-header {
    padding-top: 20px;
  }
}

/* ============================================
   CRITICAL: Hide ALL badges in newspaper view
   Placed at END of file for maximum priority
   Overrides main.css and badge-components.css
   ============================================ */
#newspaper-view .badge,
#newspaper-view .score-badge,
#newspaper-view .event-badge,
#newspaper-view .amount-badge,
#newspaper-view .rank-badge,
#newspaper-view .article-badges,
#newspaper-view [class*="badge"],
#newspaper-view article .badge,
#newspaper-view article .score-badge,
#newspaper-view article .event-badge,
#newspaper-view article .amount-badge,
#newspaper-view article .rank-badge,
#newspaper-view article [class*="badge"],
#newspaper-view .article-hero .badge,
#newspaper-view .article-hero .score-badge,
#newspaper-view .article-hero .event-badge,
#newspaper-view .article-hero .amount-badge,
#newspaper-view .article-large .badge,
#newspaper-view .article-large .score-badge,
#newspaper-view .article-large .event-badge,
#newspaper-view .article-large .amount-badge,
#newspaper-view .article-medium .badge,
#newspaper-view .article-medium .score-badge,
#newspaper-view .article-medium .event-badge,
#newspaper-view .article-medium .amount-badge,
#newspaper-view .article-small .badge,
#newspaper-view .article-small .score-badge,
#newspaper-view .article-small .event-badge,
#newspaper-view .article-small .amount-badge,
.newspaper-view .badge,
.newspaper-view .score-badge,
.newspaper-view .event-badge,
.newspaper-view .amount-badge,
.newspaper-view .rank-badge,
.newspaper-view .article-badges,
.newspaper-view [class*="badge"],
.newspaper-view article .badge,
.newspaper-view article .score-badge,
.newspaper-view article .event-badge,
.newspaper-view article .amount-badge,
.newspaper-view article .rank-badge,
.newspaper-view article [class*="badge"],
.newspaper-view .article-hero .badge,
.newspaper-view .article-hero .score-badge,
.newspaper-view .article-hero .event-badge,
.newspaper-view .article-hero .amount-badge,
.newspaper-view .article-large .badge,
.newspaper-view .article-large .score-badge,
.newspaper-view .article-large .event-badge,
.newspaper-view .article-large .amount-badge,
.newspaper-view .article-medium .badge,
.newspaper-view .article-medium .score-badge,
.newspaper-view .article-medium .event-badge,
.newspaper-view .article-medium .amount-badge,
.newspaper-view .article-small .badge,
.newspaper-view .article-small .score-badge,
.newspaper-view .article-small .event-badge,
.newspaper-view .article-small .amount-badge {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  pointer-events: none !important;
}

