.tosshin__review-item {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}
.tosshin__review-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.tosshin__avatar-placeholder {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2199e8, #1577b5);
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border-radius: 4px;
}
.tosshin__review-author {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a0a0a;
}
.tosshin__review-date {
  color: #8a8a8a;
  font-size: 0.9rem;
}
.tosshin__review-date i {
  margin-right: 0.25rem;
}
.tosshin__rating-wrapper {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  font-weight: 500;
  gap: 0.25rem;
  border-radius: 4px;
}
.tosshin__rating-1 {
  background: #fae6e6;
  color: #cc4b37;
}
.tosshin__rating-2 {
  background: #fff0d9;
  color: #ffae00;
}
.tosshin__rating-3 {
  background: #fff9d9;
  color: #8a6d0e;
}
.tosshin__rating-4 {
  background: #e1f0da;
  color: #3adb76;
}
.tosshin__rating-5 {
  background: #d6f0e0;
  color: #22bb5b;
}
.tosshin__rating-stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.tosshin__rating-text {
  font-size: 0.8rem;
  text-transform: uppercase;
}
.tosshin__review-text {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6e6e6;
  line-height: 1.6;
  color: #0a0a0a;
}
.tosshin__review-photos {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6e6e6;
}
.tosshin__photos-title {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
}
.tosshin__photos-title i {
  margin-right: 0.25rem;
}
.tosshin__photo-link {
  display: block;
  border: 1px solid #e6e6e6;
  transition: transform 0.2s ease;
}
.tosshin__photo-link:hover {
  transform: scale(1.02);
  border-color: #2199e8;
}
.tosshin__photo-thumb {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
@media screen and (max-width: 40em) {
  .tosshin__review-item {
    padding: 1rem;
  }
  .tosshin__avatar-placeholder {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .tosshin__rating-wrapper {
    padding: 0.1rem 0.5rem;
  }
  .tosshin__photo-thumb {
    height: 60px;
  }
}
