/* Investigative Journalism Style */

/* Typography */
.investigative-article {
  font-family: 'Roboto Slab', serif;
  line-height: 1.9;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: left;
}

.investigative-article h1 {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

/* Main subtitle styling - appears directly under the title */
.article-main-subtitle {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #444;
  margin: 0.5rem 0 2rem 0;
  font-weight: 500;
  text-align: left;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.investigative-article h2 {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-weight: 600;
  font-size: 1.8rem;
  margin-top: 4.5rem;
  margin-bottom: 2rem;
  background-color: #f2f2f2;
  border-left: 5px solid #1a5276;
  padding: 1rem 1rem 1rem 1.5rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 0 5px 5px 0;
}

.investigative-article p {
  margin-bottom: 2.2rem;
  font-size: 1.15rem;
  line-height: 1.9;
}

/* Image spacing and styling */
.image-popout {
  margin: 3rem 0;
  padding: 1.2rem;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
}

.image-popout img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.image-popout img:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Caption styling */
.image-caption {
  display: block;
  text-align: left;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.5;
  padding: 0 0.5rem;
}

/* For backward compatibility */
.image-popout i {
  display: block;
  text-align: left;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.5;
  padding: 0 0.5rem;
}

/* Article date styling */
.article-date {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-bottom: 2px solid #ddd;
  letter-spacing: 0.05em;
}

/* Article subtitle styling */
.article-subtitle {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #444;
  margin: 1.5rem 0 2.5rem 0;
  font-weight: 500;
  text-align: left;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eaeaea;
}

/* First paragraph styling for better intro */
.investigative-article > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #444;
}

/* Improve readability with better spacing */
.investigative-article {
  letter-spacing: 0.015em;
  word-spacing: 0.08em;
}

/* Add subtle highlight to important paragraphs */
.investigative-article strong {
  color: #222;
  font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .investigative-article {
    padding: 0 1rem;
  }

  .investigative-article h1 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  
  .investigative-article h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 0.8rem 0.8rem 0.8rem 1.2rem;
  }
  
  .article-main-subtitle {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0.3rem 0 1.5rem 0;
    padding-bottom: 1rem;
  }
  
  .investigative-article p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
  }
  
  .image-popout {
    margin: 2rem 0;
    padding: 0.8rem;
  }
}

/* Blockquote styling */
.investigative-article blockquote {
  border-left: 4px solid #666;
  padding: 1rem 1.5rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: #555;
  background-color: #f9f9f9;
  border-radius: 0 6px 6px 0;
}

/* Links styling */
.investigative-article a {
  color: #1a5276;
  text-decoration: none;
  border-bottom: 1px solid #1a5276;
  transition: all 0.2s ease;
}

.investigative-article a:hover {
  color: #2980b9;
  border-bottom-color: #2980b9;
}

/* Lightbox improvements */
.lightbox-img {
  max-width: 95%;
  max-height: 95%;
}

@media (max-width: 768px) {
  .lightbox-img {
    max-width: 98%;
    max-height: 90%;
  }
  
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
}

/* Styling for H3 subheadings */
.investigative-article h3 {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 1.8rem;
  color: #1a5276;
  padding-left: 1rem;
  border-left: 3px solid #2980b9;
  line-height: 1.5;
}

/* Add space between paragraphs and lists */
.investigative-article ul,
.investigative-article ol {
  margin-bottom: 2.2rem;
  padding-left: 2rem;
}

.investigative-article li {
  margin-bottom: 0.8rem;
}

/* Reading progress indicator styling */
#reading-progress {
  background-color: #1a5276;
  height: 4px;
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  z-index: 9999;
  transition: width 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
