  .post-content-body img {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      margin: 20px 0;
  }

  .post-content-body h2,
  .post-content-body h3 {
      color: var(--brown);
      margin-top: 30px;
      font-weight: bold;
  }

  .post-content-body blockquote {
      border-right: 5px solid var(--brown);
      padding: 15px 25px;
      background: #f9f9f9;
      font-style: italic;
      margin: 30px 0;
  }

  .transition {
      transition: all 0.3s ease;
  }

  .hover-shadow:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-3px);
  }

  .blog-hero {
      height: 138px;
      background-color: var(--white-ceream);
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: var(--white-shiri);
      padding-top: 35px;
      z-index: -1;
  }

  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(30, 30, 30, 0.4), var(--brown));
  }

  .blog-hero h1 {
      font-family: 'gohar';
      font-size: 3rem;
      position: relative;
      z-index: 2;
  }
