/* =========================================================
   Story Gallery
   ========================================================= */

.tpocs-story-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tpocs-story-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tpocs-story-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.tpocs-story-card__comment {
  font-size: 14px;
  line-height: 1.6;
}

.tpocs-story-gallery-empty {
  font-size: 14px;
  color: #666;
}

@media (min-width: 768px) {
  .tpocs-story-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
