/* Magazine-Style Single Blog Page CSS */
:root {
    --mag-primary: #111111;
    --mag-accent: #d4a85a;
    --mag-light: #ffffff;
    --mag-dark: #333333;
    --mag-gray: #f7f7f7;
    --mag-text: #444444;
    --mag-serif: 'Playfair Display', 'Times New Roman', serif;
    --mag-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  }
  
  /* General Body Styling */
  body {
    font-family: var(--mag-sans);
    line-height: 1.6;
    color: var(--mag-text);
    margin: 0;
    padding: 0;
    background-color: var(--mag-light);
    letter-spacing: 0.2px;
  }
  
  /* Replace Poppins with our magazine style fonts */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Single Blog Post Styling */
  .single-blog-post {
    padding: 120px 0 80px;
  }
  
  .blog-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 50px;
  }
  
  .blog-title {
    font-family: var(--mag-serif);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--mag-primary);
    line-height: 1.2;
    letter-spacing: 0.5px;
  }
  
  .blog-meta {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-bottom: 60px;
    font-family: var(--mag-sans);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .blog-meta span {
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
  }
  
  .blog-meta i {
    margin-right: 6px;
    color: var(--mag-accent);
  }
  
  .blog-content {
    background: var(--mag-light);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  
  /* First paragraph styling with drop cap */
  .blog-content p:first-of-type {
    position: relative;
  }
  
  .blog-content p:first-of-type::first-letter {
    font-family: var(--mag-serif);
    float: left;
    font-size: 3.5em;
    line-height: 0.8;
    margin-right: 12px;
    color: var(--mag-primary);
    font-weight: 700;
    padding-top: 4px;
  }
  
  .blog-content h3 {
    font-family: var(--mag-serif);
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--mag-primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
  }
  
  .blog-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: var(--mag-accent);
  }
  
  .blog-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
  }
  
  .blog-content strong {
    color: var(--mag-primary);
    font-weight: 600;
  }
  
  .blog-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 30px;
  }
  
  .blog-content ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
  }
  
  .blog-content ul li:before {
    content: "—";
    color: var(--mag-accent);
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .blog-content a {
    color: var(--mag-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--mag-accent);
    padding-bottom: 1px;
    transition: all 0.3s ease;
  }
  
  .blog-content a:hover {
    color: var(--mag-accent);
    text-decoration: none;
  }
  
  .back-to-blogs {
    text-align: center;
    margin-top: 60px;
  }
  
  .back-to-blogs a {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--mag-primary);
    border: 1px solid var(--mag-primary);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--mag-sans);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .back-to-blogs a:hover {
    background-color: var(--mag-primary);
    color: var(--mag-light);
    transform: translateY(-2px);
  }
  
  .back-to-blogs a i {
    margin-right: 10px;
  }
  
  /* Add a subtle divider between sections */
  .single-blog-post:after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    margin: 0 auto;
    margin-top: 40px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .single-blog-post {
      padding: 100px 0 60px;
    }
    
    .blog-hero-image {
      height: 400px;
    }
    
    .blog-title {
      font-size: 36px;
    }
  }
  
  @media (max-width: 768px) {
    .single-blog-post {
      padding: 90px 0 50px;
    }
    
    .blog-hero-image {
      height: 320px;
      margin-bottom: 40px;
    }
    
    .blog-title {
      font-size: 30px;
    }
    
    .blog-meta {
      margin-bottom: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }
    
    .blog-meta span {
      margin: 0;
    }
    
    .blog-content p:first-of-type::first-letter {
      font-size: 3em;
    }
    
    .blog-content h3 {
      font-size: 24px;
    }
  }
  
  @media (max-width: 480px) {
    .single-blog-post {
      padding: 80px 0 40px;
    }
    
    .blog-hero-image {
      height: 220px;
      margin-bottom: 30px;
    }
    
    .blog-title {
      font-size: 26px;
    }
    
    .blog-content p:first-of-type::first-letter {
      font-size: 2.5em;
    }
    
    .blog-content h3 {
      font-size: 22px;
    }
    
    .blog-content p {
      font-size: 16px;
    }
  }