/* Image Banner */
.image-banner {
    width: 100%;
    min-height: 30rem;
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }
  
  /* .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
  } */
  
  .banner-content {
    position: relative;
    z-index: 1;
    padding: 20px;
  }
  
  .banner-content h1 {
    font-size: 3rem; /* Adjust font size as needed */
    margin: 0;
  }
  
  .banner-content .post-date {
    font-size: 1.2rem; /* Adjust font size as needed */
    margin: 10px 0 0;
  }
  
  /* Excerpt */
  .excerpt-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .excerpt {
    font-size: 1.2rem; /* Adjust font size as needed */
    font-style: italic;
    color: #555;
    line-height: 1.6;
  }
  
  /* Content */
  .content-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
    font-size: 1.1rem; /* Adjust font size as needed */
    line-height: 1.8;
    color: #333;
  }
  
  .content-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
  }

  @media (max-width: 768px) {
    .image-banner {
      height: 300px;
    }
  
    .banner-content h1 {
      font-size: 2rem;
    }
  
    .banner-content .post-date {
      font-size: 1rem;
    }
  
    .excerpt, .content-container {
      font-size: 1rem;
    }
  }

  .content-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .content-container ul, .content-container ol {
    margin: 20px 0;
    padding-left: 40px;
  }
  
  .content-container blockquote {
    border-left: 4px solid #ccc;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
  }