.post-content.style-light.std-block-padding{
		padding: 0 !important;
	}		
		
.sidebar-top {
    padding-top: 50px;
}		
		
.myhts-facts-landing-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    /* Header layout */
    .heading {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 50px;
      margin-bottom: 120px; /* increased bottom margin */
      flex-wrap: wrap;
    }

    .heading-image {
      flex: 1 1 40%;
      text-align: center;
    }

    .heading-image img {
      width: 100%; /* max-width removed */
      border-radius: 10px;
		max-width: 700px;
    }

    .heading-content {
      flex: 1 1 55%;
    }

    .heading-content h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #2a2a2a;
      font-weight: 400;
    }

    .heading-content p {
      line-height: 1.6;
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: black;
		font-weight: 300;
    }

    /* Posts grid with maximum 3 columns */
    .body-realted-posts {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* max 3 per row */
      gap: 40px;
    }

    .body-realted-posts div {
      background-color: #fff;
      border-radius: 10px;
      text-align: center;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column; /* stack content vertically */
    }

    .body-realted-posts a img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      transition: transform 0.4s ease;
      -webkit-transition: transform 0.4s ease;
      will-change: transform;
      display: block;
      max-width:300px;
    }

    .body-realted-posts a img:hover {
      transform: scale(1.05);
      -webkit-transform: scale(1.05);
    }

    .body-realted-posts h3 {
      font-size: 1rem;
      line-height: 1.4;
      margin: 12px 0 8px;
      padding: 0 8px;
      color: #2a2a2a;
      flex-grow: 1; /* fill remaining space to push button down */
      font-weight: 300;
    }

    strong{
      font-weight: 600;
    }

    .body-realted-posts a.learn-more {
      display: inline-block;
      margin-top: auto; /* push button to bottom */
      text-decoration: none;
      background-color: #586d34;
      color: #fff;
      padding: 14px 14px;
      border-radius: 5px;
      transition: background-color 0.2s ease;
          max-width: 180px;
    margin: 0 auto;
    border-radius: 10px;
    }

    .body-realted-posts a.learn-more:hover {
      background-color: #72874e !important;
		color: white !important;
    }

    .post1, .post2, .post3, .post4, .post5, .post6, .post7, .post8{
      max-width:400px;
      margin: 0 auto;
      margin-bottom: 50px;
    }

    /* Responsive adjustments */
    @media (max-width: 1349px) {
      .body-realted-posts {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .heading {
        flex-direction: column;
        text-align: center;
      }

      .heading-content h1 {
        font-size: 2rem;
      }

      .body-realted-posts {
        grid-template-columns: 1fr;
      }
    }