/* Board layout overrides: preserve screenshots instead of cropping them. */
.post-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  max-width: 960px;
  margin-inline: auto;
}

.post-grid .post-media {
  aspect-ratio: auto;
  min-height: 280px;
}

.post-grid .post-media.has-image {
  min-height: 0;
}

.post-grid .post-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.post-grid .post-card:hover .post-media img {
  transform: none;
}

@media (max-width: 640px) {
  .post-grid .post-media {
    min-height: 210px;
  }
}
