.post-image-container {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  flex-direction: column;
  text-align: center; /* Ensure text is centered */
}
.post-image-container .post-image-caption {
  margin: 0;
  padding: 0;
  text-align: center; /* Center the caption text */
  font-style: italic;
  font-size: 0.7rem;
}
.post-image-container .post-image-parent {
  display: flex;
  justify-content: center; /* Horizontally center content inside */
  align-items: center; /* Vertically center content inside */
  flex-direction: column;
}
.post-image-container .post-image-parent .post-image-small {
  width: 20%;
}
.post-image-container .post-image-parent .post-image-medium {
  width: 50%;
}
.post-image-container .post-image-parent .post-image-large {
  width: 100%;
}

.post-section {
  margin-bottom: 3rem;
}