.place-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.place-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  overflow: hidden;
}

.place-photo {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 11px;
  overflow: hidden;
  background: #FBE3EA;
  border: 1px solid #D8AABC;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
}

.place-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.place-info {
  padding: 2px 4px 4px;
}

.place-item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.place-name {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.place-meta,
.place-comment {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}

.place-rating {
  display: flex;
  gap: 2px;
  white-space: nowrap;
}

.place-rating img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.place-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.place-badge {
  font-size: 10px;
  background: #F6D8E2;
  color: var(--rose-deep);
  border-radius: 20px;
  padding: 4px 7px;
}