@charset "utf-8";

.swiper {
  width: calc(354px * 3 + 58px);
  height: auto;
  padding: 20px 0;
}

.swiper-slide {
  width: 320px;
  height: auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

/* 카드 내부 */
.review_card {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review_top {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* 말풍선 아이콘 */
.review_icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 후기 본문 */
.review_cont {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  display: block;
  min-height: 60px;
}

/* 하단 날짜 + 이름 */
.review_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #eee;
  margin-top: auto;
  color: #3d3d5c;
  font-size: 14px;
}

.review_date {
  font-size: 14px;
  color: #999;
}
.review_branch {
  font-size: 13px;
  color: #3d7fc1;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.review_name {
  font-size: 13px;
  color: #555;
  font-weight: 600;
}