/* Blog Detail Container */



.blog-detail {
    max-width: 800px;
    margin: 90px auto 60px auto;
    padding: 20px;
    background-color: #ffffff; /* Match the article background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Blog Post Container */
  .blog-post {
    line-height: 1.8;
    font-size: 1rem;
    color: #333333;
    background-color: transparent; /* Remove redundant background */
    padding: 0; /* Align content with the container */
    box-shadow: none; /* No extra shadow inside blog-detail */
  }
  
  .blog-title {
    font-size: 2rem;
    color: #0d47a1; /* Darker blue for emphasis */
    margin-bottom: 10px;
    text-align: center;
  }
  
  .blog-meta {
    font-size: 0.9rem;
    color: #616161; /* Subtle grey for meta info */
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Article Content */
  .blog-content h2 {
    font-size: 1.6rem;
    color: #0d47a1;
    margin-top: 20px;
    border-bottom: 2px solid #42a5f5;
    padding-bottom: 5px;
  }
  
  .blog-content h3 {
    font-size: 1.3rem;
    color: #1e88e5;
    margin-top: 15px;
  }
  
  .blog-content p {
    margin: 15px 0;
    color: #424242;
  }
  
  .blog-content ul {
    margin: 10px 0 20px 20px;
  }
  
  .blog-content li {
    margin-bottom: 10px;
  }
  
  .blog-content li strong {
    color: #2e7d32; /* Emphasize key points */
  }
  
  /* Image Styling */
  
  .blog-content img {
    width: 100%; /* Makes the image span the full width of the container */
    height: 250px; /* Sets a fixed height */
    object-fit: cover; /* Ensures the image maintains its proportions while filling the height */
    border-radius: 8px; /* Adds subtle rounding for a modern look */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Adds depth */
    margin-bottom: 20px; /* Adds space below the image */
  }
  
  .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .breadcrumb a {
    color: #42a5f5;
    text-decoration: none;
    font-weight: bold;
  }
  
  .breadcrumb a:hover {
    text-decoration: underline;
  }