.post-card {
  display: block;
  background:  #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.15s ease;

  /* ❌ width 주지 말 것 */
}

.post-card:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.post-card .thumb {
  width: 100%;
  height: 260px;   /* 🔥 핵심 */
   aspect-ratio: 1 / 1;   /* 🔥 1:1 → 4:5 */
  background: #f2f2f2;
  overflow: hidden;
}

.post-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* ⭐ 변경 */
  background: #f3f3f3;     /* 여백 색 */ 
  display: block;
}

.post-card .info {
  padding: 10px;
}

.post-card .title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-card .seller {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.post-card .distance {
  font-size: 12px;
  color: #999;
}

.post-card .meta-row {
  display: flex;
  justify-content: space-between; /* ⭐ 좌우 분리 */
  align-items: center;
  margin-top: 4px;
  font-size: 12px;
}

.post-card .date {
  color: #999;
  font-size: 11px;   /* 날짜는 살짝 작게 */
}
.post-card .price {
  font-weight: 600;
}

.post-card .seller-row {
  display: flex;
  justify-content: space-between; /* ⭐ 좌우 */
  align-items: center;
  margin-top: 2px;
  font-size: 11px;
}
.post-card .seller {
  font-size: 11px;        /* 닉네임 크기 */
  color: #777;
  margin-top: 4px;
}

.post-card .seller-zip {
  font-size: 10px;        /* 🔥 ZIP만 작게 */
  color: #aaa;
}

.post-card .title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.35;
}

.post-card .price {
  font-size: 15px;
  font-weight: 700;
  color: #92400e;
}

.post-card .seller {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}

.post-card .seller-zip {
  font-size: 11px;
  color: #9ca3af;
}

.post-card .date {
  font-size: 11px;
  color: #9ca3af;
}




/* 📱 모바일 카드 최적화 */
@media (max-width: 768px) {

  .post-card {
    border-radius: 14px;
    overflow: hidden;
  }

  /* 이미지 영역 */
  .post-card .thumb {
    width: 100%;
    aspect-ratio: 1 / 1;        /* ⭐ 정사각형 */
    overflow: hidden;
    background: #f2f2f2;
  }

  .post-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* ⭐ 핵심 */
    display: block;
  }

  /* 카드 내부 정보 영역 */
  .post-card .info {
    padding: 10px 12px;         /* ⭐ 여백 줄이기 */
  }

  .post-card .title {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .post-card .meta-row {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .seller-row {
    font-size: 13px;
    gap: 4px;
  }
}

