/* Premium Blog Article Base Styles */
.blog-page-wrapper {
  background-color: #ffffff;
}

.blog-container {
  max-width: 800px; /* Optimal reading width for articles */
  margin: 0 auto;
  color: #1e293b; /* Slate 800 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.8;
}

.blog-content p {
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  color: #334155; /* Slate 700 */
}

.blog-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a; /* Slate 900 */
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.4;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 0.5rem;
}

.blog-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.blog-content ul {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* Animation Helper for AOS simulation */
.blog-container .aos-target {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.blog-container .aos-target.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Plain Editorial Placeholders */
.editorial-placeholder {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
