.post-rating-card {
  margin: 32px 0 10px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.post-disclosure {
  margin: 24px 0 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.18);
  position: relative;
  overflow: hidden;
}

.post-disclosure-text {
  font-size: 13px;
  font-weight: 700;
  color: #92400e;
  line-height: 1.5;
  padding-left: 10px;
  border-left: 3px solid #f59e0b;
  text-align: center;
}

.post-place-block {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.post-place-name {
  font-weight: 800;
  font-size: 20px;
  color: #111827;
  margin-bottom: 6px;
  text-align: center;
}

.post-place-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-align: center;
}

.post-place-map {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 220px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

@media (max-width: 720px) {
  .post-place-map {
    width: min(100%, 300px);
    min-height: 200px;
  }
}

.post-rating-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.post-rating-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.post-rating-subtitle {
  font-size: 13px;
  color: #6b7280;
}

.post-rating-grid {
  display: grid;
  gap: 10px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #eef2f7;
}

.post-rating-row {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.post-rating-row .label {
  font-weight: 700;
  color: #374151;
}

.post-rating-row .value {
  grid-column: 2 / -1;
  font-weight: 700;
  color: #111827;
}

.post-rating-row .stars {
  display: inline-flex;
  gap: 2px;
}

.post-rating-star {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1;
}

.post-rating-star.is-filled {
  color: #f59e0b;
}

.post-rating-row .stars.is-penalty .post-rating-star.is-filled {
  color: #ef4444;
}

.post-rating-row .score {
  text-align: right;
  font-weight: 800;
  color: #4b5563;
}

.post-rating-reason,
.post-rating-review {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  font-size: 13px;
  line-height: 1.45;
  color: #7c2d12;
}

.post-rating-review {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.post-rating-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.post-rating-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-weight: 700;
  font-size: 12px;
}

.post-rating-total {
  font-weight: 800;
  font-size: 14px;
  color: #111827;
}

.post-rating-total span {
  margin-left: 6px;
  color: #2563eb;
}

@media (max-width: 720px) {
  .post-rating-card {
    padding: 16px;
  }
  .post-rating-row {
    grid-template-columns: 92px 1fr 46px;
  }
  .post-rating-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
.post-review-wrapper {
  margin: 24px 0 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.post-review-wrapper .post-disclosure {
  margin-top: 0;
}

.post-review-wrapper .post-rating-card {
  margin-bottom: 0;
}

.post-review-wrapper img {
  max-width: 100%;
  height: auto;
}
