.post-header {
    padding-left: 90px;
    padding-right: 90px;
    padding-top: 40px;
  }
  
  .post-header h2 {
    margin: 0;
    max-width: 90%;
    margin-top: 24px;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 90px;
    margin-bottom: 23px;
  }

  .post-header .article-excerpt {
    max-width: 90%;
  }
  
  .post-header .article-img img {
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
  }
  
  .post-header .article-date {
    color: var(--wp--preset--color--dark-gray);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .post-header .article-date p {
    margin: 0;
  }
  
  .post-header .article-excerpt p {
    font-size: 24px;
    font-weight: 400;
    line-height: 144%;
    margin-bottom: 24px;
  }
  
  .post-content-row {
    padding-left: 90px;
    padding-right: 90px;
  }
  
  .content-row {
    display: flex;
    margin-top: 40px;
  }
  
  .content-row .content-body {
    border-right: 1px solid var(--wp--preset--color--primary-black);
    padding-right: 30px;
  }
  .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
  }
  .article-tags .wp-block-post-terms a {
    min-width: fit-content;
    display: flex;
    color: var(--wp--preset--color--primary-black);
    border: 1px solid var(--wp--preset--color--green-black);
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
    text-transform: uppercase;
    border-radius: 100px;
    text-decoration: none;
    line-height: 100%;
    font-size: 12px;
    transition: background-color 0.5s ease, border-color 0.5s ease;
  }
  .article-tags .taxonomy-category.wp-block-post-terms a:hover {
    background-color: var(--wp--preset--color--acid-green);
    border-color: var(--wp--preset--color--acid-green);
  }
  .article-tags .taxonomy-post_tag.wp-block-post-terms a {
    pointer-events: none;
  }
  .article-tags .wp-block-post-terms {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
  }
  
  .article-tags .wp-block-post-terms__separator {
    display: none;
  }
  

  
  .wp-singular .latest-posts-grid {
    background-color: #F6F6F6;
  }
  
  .wp-singular .latest-posts-grid .latest-posts-title {
    border-top: none;
  }

  .wp-singular .post-content-row .body.content-col {
    max-height: 10000000px;
    transition: max-height 0.5s ease;
  }
  .wp-singular .post-content-row .body.content-col .article-load-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: white;
  }
  .wp-singular .post-content-row .body.content-col .article-load-more button {
    border-color: var(--wp--preset--color--acid-green);
    background-color: var(--wp--preset--color--acid-green);
    min-width: calc(100% - 40px);
    padding: 8px;
    padding-left: 24px;
    padding-right: 24px;
    font-weight: 600;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 800px) {
    .post-header {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .post-header .wp-block-post-title {
      font-size: 28px;
      line-height: 48px;
    }
  
    .post-header .article-excerpt p {
      font-size: 19px;
    }
  
    .post-header .article-img img {
      min-height: 254px;
    }
  
    .post-content-row {
      padding-left: 0;
      padding-right: 0;
    }
  
    .post-content-row .body.content-col {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .post-content-row .body.content-col .content-body {
      padding-right: 0;
      border: none;
    }
  }
  