.blog-content {
    margin-top: 20px;
  }
  
  .blog-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  
  .blog-content p::first-letter {
    font-size: 250%; /* Increase the size of the first letter */
    float: left; /* Float the first letter to the left */
    margin-right: 5px; /* Add a small margin to the right */
    font-family: Georgia, serif; /* Specify a serif font for the first letter */
  }
  
  .blog-content strong {
    font-weight: bold;
  }
  
  .blog-content em {
    font-style: italic;
  }

  .blog-content {
    display: flex; /* Use flexbox */
    flex-direction: row; /* Arrange items in a row */
    flex-wrap: wrap; /* Allow wrapping to next line if necessary */
  }
  
  .blog-content p {
    flex: 1; /* Distribute available space evenly among paragraphs */
    margin: 0 10px 20px 0; /* Add margin to separate paragraphs */
  }

  .blog-content {
    margin-top: 20px;
    display: flex; /* Use flexbox */
    flex-wrap: wrap; /* Allow wrapping to next line if necessary */
  }
  
  .blog-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 10px 20px 0; /* Add margin to separate paragraphs */
    flex: 1; /* Distribute available space evenly among paragraphs */
  }
  
  .blog-content p:first-child::first-word {
    font-size: 80%; /* Adjust the font size of the first word */
  }
  
  .blog-content p:last-child {
    margin-bottom: 0;
  }
  
  .blog-content p::first-letter {
    font-size: 80%; /* Reduce the size of the first letter */
    float: left; /* Float the first letter to the left */
    margin-right: 5px; /* Add a small margin to the right */
    font-family: Georgia, serif; /* Specify a serif font for the first letter */
  }
  
  .blog-content strong {
    font-weight: bold;
  }
  
  .blog-content em {
    font-style: italic;
  }