
.review-section {
  padding: 40px 20px;
  background: #fdf1f6;
  text-align: center;
  padding-top:100px;
}

.review-section h2 {
  font-size: 22px;
  font-weight: bold;
}

.review-section h2 span {
  color: #d2378c;
}

.subtext {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.review-filters {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.review-filters button {
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  background: #fff;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
}

.review-filters .all {
  background: #d2378c;
  color: #fff;
  font-weight: bold;
}



.card-section {
    background: url('../img/common/bg.pink.jpg') no-repeat center top / cover;
    padding:50px 20px;
    display:flex;
    gap:20px;
    flex-direction:column;
}

.review-card {
  max-width: 600px;
  background: white;
  text-align: left;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  width:100%;
}

.review-card.pink {
  border-left: 5px solid #d2378c;
}

.review-card.blue {
  border-left: 5px solid #0070c0;
}

.review-card .badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #d2378c;
  color: white;
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 20px;
}

.review-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
}

.review-card p.text-content {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* 최대 4줄만 보여줌 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.review-card p.text-content.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.review-card a {
  color: #d2378c;
  text-decoration: underline;
  font-weight: 500;
}

.more-link {
  margin-top: 30px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.toggle-btn {
  margin-top: 5px;
  background: none;
  border: none;
  color: blue;
  cursor: pointer;
  font-size: 14px;
}
