/* Container */
.blog-article {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }
  
  /* Header */
  .blog-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .blog-header h1 {
    font-size: 2rem;
    color: #2a658f;
    margin-bottom: 0.5rem;
  }
  
  .blog-header .meta {
    font-size: 0.95rem;
    color: #777;
  }
  
  /* Blog Image */
  .blog-image {
    text-align: center;
    margin: 2rem 0;
  }
  
  .blog-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  /* Content Body */
  .blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
  }
  
  .blog-content p {
    margin-bottom: 1.5rem;
  }
  
  .blog-content h2,
  .blog-content h3 {
    color: #3f87a6;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .blog-content ul,
  .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .blog-content blockquote {
    border-left: 4px solid #3f87a6;
    background-color: #f9f9f9;
    padding: 0.8rem 1.2rem;
    font-style: italic;
    margin: 2rem 0;
    color: #555;
    border-radius: 6px;
  }
  
  /* Back link */
  .back-link {
    margin-top: 2rem;
    text-align: left;
  }
  
  .back-link a {
    color: #3f87a6;
    text-decoration: none;
    font-weight: 600;
  }
  
  .back-link a:hover {
    text-decoration: underline;
  }
  