#blog-post {
  margin: 50px 0;
  font-family: Arial, sans-serif;
}

#blog-post .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#blog-post .content {
  margin-bottom: 30px;
}

#blog-post .blog-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

#blog-post .blog-body {
  overflow: hidden; /* Ensures the float is cleared */
}

#blog-post .image {
  float: right; /* Float image to the right */
  margin-left: 20px; /* Space between the image and the text */
  width: 40%;
}

#blog-post .image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

#blog-post .blog-description {
  font-size: 1.2em;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  #blog-post .blog-title {
    font-size: 2em;
  }

  .blog-description {
    font-size: 1em;
  }

  #blog-post .image {
    float: none; /* Remove floating for smaller screens */
    width: 100%; /* Make image full width */
    margin: 0;
    margin-bottom: 20px;
  }

}