.post {
  display: grid;
  grid-template-rows: 1fr auto;
  height: calc(100vh - 115px);

  .post-body {
    overflow-y: auto;
    display: grid;
    grid-template-rows: auto auto 1fr;
    grid-row-gap: 1rem;
  }

  .post-actions {
    padding-top: 1rem;
  }
}

.post-image-container {
  max-height: 450px;
  overflow: hidden;
  border-radius: 1rem;
}

.post-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}