.post-container {
  display: flex;
  flex-direction: row;
  gap: 5rem;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 8rem;
  max-width: 1200px;
}

@media (max-width: 1200px) {
  .post-container {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
}

.post-container .text-container .text-section {
  display: flex;
  gap: .25rem;
  flex-direction: column;
}

.post-image-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 3.5rem 0;
  width: 100%;
  gap: 1rem;
}

.post-image-container .sku-button, 
.post-image-container .post-image {
  max-width: 300px;
}

.post-image-container h2 {
  font-size: 28px;
}

.post-image-container h3 {
  font-size: 24px;
}

@media (max-width: 1200px) {
  .post-image-container h2 {
    font-size: 23px;
  }

  .post-image-container h3 {
    font-size: 17px;
  }
}