.job-product-info {
  position: relative;

  padding: 14px 70px 14px 16px;
  margin-top: 20px;
  margin-bottom: 74px;

  border-radius: 12px;
  background: var(--gray-bg-color);
}

.job-product-info .product-wrap {
  display: flex;
  gap: 20px;
}

/* 제품 이미지 */
.job-product-info .thumb {
  overflow: hidden;
  flex-shrink: 0;

  width: 84px;
  height: 104px;

  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}
.job-product-info .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 제품명 + 별점/브랜드 + 자세히 보기 */
.job-product-info .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  min-width: 0;
}
.job-product-info .info .name {
  margin-top: 7px;

  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: #181c34;
}
.job-product-info .info .meta {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 2px;
}
.job-product-info .info .score {
  display: flex;
  align-items: center;
  gap: 2px;

  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: var(--main-color);
}
.job-product-info .info .score::before {
  content: "";
  display: block;

  width: 16px;
  height: 16px;
  background: url("../../img/renew/icon/i_star1_on_blue_16.svg") no-repeat center / 16px 16px;
}
.job-product-info .info .score em {
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 20px;
  color: var(--gray-font-color);
}
.job-product-info .info .brand {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--gray-font-color);
}
.job-product-info .info .brand::before {
  content: "";
  display: block;

  width: 1px;
  height: 10px;
  background: var(--border-color);
}

/* 자세히 보기 — PC 는 카드 우측 세로중앙 고정 */
.job-product-info .btn-detail {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  top: 50%;
  right: 70px;

  padding: 8px 14px 8px 18px;
  border-radius: 900px;
  background: var(--main-color);

  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: #fff;

  transform: translateY(-50%);
}
.job-product-info .btn-detail::after {
  content: "";
  display: block;

  width: 16px;
  height: 16px;
  background: url("../../img/renew/icon/i_next_white_20.svg") no-repeat center / 16px 16px;
}

/* 후기 코멘트 — PC 는 이미지 우측 열 하단 고정 */
.job-product-info .review-comment {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  position: absolute;
  left: 120px;
  bottom: 21px;

  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: #181c34;
}
.job-product-info .review-comment::before {
  content: "";
  display: block;
  flex-shrink: 0;

  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: url("../../img/renew/icon/i_comment_gray_16.svg") no-repeat center / 16px 16px;
}

/* 후기 코멘트 한 줄 말줄임 (comment 1개) */
.job-product-info .review-comment:not(.rolling) {
  display: block;
  overflow: hidden;
  right: 70px;
  margin-right: 4px;

  white-space: nowrap;
  text-overflow: ellipsis;
}
.job-product-info .review-comment:not(.rolling)::before {
  display: inline-block;

  margin-top: 0;
  margin-right: 4px;

  vertical-align: middle;
}

/* 후기 코멘트 세로 롤링 (comment 2개 이상) */
.job-product-info .review-comment.rolling {
  right: 70px;
}
.job-product-info .review-comment .commentRollingSwiper {
  overflow: hidden;
  flex: 1 1;

  height: 20px;
  min-width: 0;
}
.job-product-info .review-comment .commentRollingSwiper .swiper-slide {
  overflow: hidden;

  margin: 0;

  white-space: nowrap;
  text-overflow: ellipsis;
}

/* -----------------------------------------------------------
  ------ mobile ------
--------------------------------------------------------------  */
.mobile .job-product-info {
  padding: 14px 16px;
  margin: 20px var(--inner-margin);
}
.mobile .job-product-info .product-wrap {
  gap: 12px;
}
.mobile .job-product-info .thumb {
  width: 92px;
  height: 114px;
}
.mobile .job-product-info .info .name {
  margin-top: 4px;

  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.3px;
}
.mobile .job-product-info .info .meta {
  margin-top: 4px;
}
.mobile .job-product-info .info .brand {
  font-size: 12px;
  letter-spacing: -0.12px;
}
.mobile .job-product-info .btn-detail {
  position: static;

  margin-top: 10px;
  padding: 6px 12px 6px 16px;

  font-size: 14px;
  letter-spacing: -0.14px;

  transform: none;
}
.mobile .job-product-info .btn-detail::after {
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
}
.mobile .job-product-info .review-comment {
  position: static;

  margin-top: 14px;
  margin-bottom: 0;
}
