.job-posts-body-section-1 .content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 60px;
  align-items: start;
}
.job-posts-body-section-1 .wysiwyg-styles h1,
.job-posts-body-section-1 .wysiwyg-styles h2,
.job-posts-body-section-1 .wysiwyg-styles h3,
.job-posts-body-section-1 .wysiwyg-styles h4,
.job-posts-body-section-1 .wysiwyg-styles h5,
.job-posts-body-section-1 .wysiwyg-styles h6 {
  color: var(--color-type-body);
  margin-bottom: 15px;
}
.job-posts-body-section-1 .section-side-one {
  grid-column: 1/span 3;
}
.job-posts-body-section-1 .section-side-two {
  grid-column: 5/span 8;
}
.job-posts-body-section-1 .job-post-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--inner-spacing-lg);
}
.job-posts-body-section-1 .job-post-section .body-copy {
  margin-bottom: 0;
}
.job-posts-body-section-1 .job-post-section .body-copy p {
  margin-top: 0;
  max-width: 696px;
}
.job-posts-body-section-1 .job-post-section .body-copy p:last-child {
  margin-bottom: 0;
}
.job-posts-body-section-1 .job-post-section .body-copy p:has(> img) {
  max-width: none;
}
.job-posts-body-section-1 .job-post-section .body-copy img {
  max-width: 100%;
  height: auto;
}
.job-posts-body-section-1 .button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
.job-posts-body-section-1 .job-apply-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.job-posts-body-section-1 .job-apply-icon {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 1024px) {
  .job-posts-body-section-1 .content {
    grid-template-columns: 1fr;
  }
  .job-posts-body-section-1 .section-side-one {
    display: none;
  }
  .job-posts-body-section-1 .section-side-two {
    grid-column: 1/-1;
  }
}