/* ========= GLOBAL ========= */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: #333;
  }
  
  section {
    width: 100%;
    box-sizing: border-box;
  }
  
  img {
    width: 100%;
    display: block;
    border-radius: 10px;
  }
  
  /* ========= HERO SECTION ========= */
  .blog-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
  
  .blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .blog-hero .hero-text {
    position: absolute;
    
    bottom: 20px;
    left: 30px;
    background: rgba(0,0,0,0.5);
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
  }
  
  .blog-hero h1 {
    margin: 0;
    font-size: 2.2rem;
  }
  
  /* ========= BLOG CONTENT ========= */
  .blog-content {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
  }
  
  .blog-content h2 {
    margin-top: 35px;
    font-size: 1.8rem;
    color: #222;
  }
  
  .blog-content .in-article {
    margin: 30px 0;
  }
  
  blockquote {
    margin: 20px 0;
    padding: 20px;
    border-left: 5px solid #ff6f61;
    background: #fff4f3;
    border-radius: 8px;
    font-style: italic;
    color: #555;
  }
  
  /* ========= COMMENTS SECTION ========= */
  .comments {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .comments h3 {
    margin-bottom: 20px;
  }
  
  .comments form input,
  .comments form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
  }
  
  .comments .btn {
    background: #ff6f61;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 17px;
  }
  
  .comments .btn:hover {
    background: #e85a4e;
  }
  
  /* Displayed comments */
  .comment-list {
    margin-top: 20px;
  }
  
  .comment-item {
    background: #fafafa;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-left: 4px solid #ff6f61;
    border-radius: 8px;
  }
  
  /* ========= RELATED ARTICLES ========= */
  .related-posts {
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
  }
  
  .related-posts h2 {
    margin-bottom: 25px;
  }
  
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .related-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .related-card:hover {
    transform: translateY(-5px);
  }
  
  .related-card h4 {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  /* ========= RESPONSIVE ========= */
  
  /* --- TABLET --- */
  @media (max-width: 992px) {
  
    .blog-hero {
      height: 45vh;
    }
  
    .blog-hero .hero-text h1 {
      font-size: 1.8rem;
    }
  
    .related-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* --- MOBILE --- */
  @media (max-width: 576px) {
  
    .blog-hero {
      height: 35vh;
    }
  
    .blog-hero .hero-text {
      left: 15px;
      right: 15px;
      padding: 12px 15px;
    }
  
    .blog-hero .hero-text h1 {
      font-size: 1.5rem;
    }
  
    .blog-content {
      width: 92%;
      font-size: 16px;
    }
  
    .related-grid {
      grid-template-columns: 1fr;
    }
  
    .related-card h4 {
      font-size: 1.1rem;
    }
  }
  