/*
 * 口コミカード（ピックアップ＋通常）
 */
.teller-reviews-header { background:#bdbdbd; height:32px; display:flex; align-items:center; gap:6px; padding:6px 16px; }
.teller-reviews-header span { font-size:12px; font-weight:500; color:#fff; }

.teller-review-card { background:#fff; padding:20px 16px; display:flex; flex-direction:column; gap:12px; }
.teller-review-card.is-pickup { border-left:6px solid #bdbdbd; border-right:6px solid #bdbdbd; border-bottom:6px solid #bdbdbd; }
.teller-review-card.is-normal { border:1px solid #e0e0e0; }

.teller-review-card__header { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.teller-review-card__meta   { font-size:12px; color:#555; white-space:nowrap; }
.teller-review-card__badge  { display:inline-flex; align-items:center; padding:1px 6px; border-radius:3px; background:#eee; font-size:12px; font-weight:500; color:#555; white-space:nowrap; }

.teller-review-card__result-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.teller-review-card__result     { display:inline-flex; align-items:center; padding:4px 12px; border:1.5px solid #111; border-radius:4px; font-size:13px; font-weight:500; color:#111; white-space:nowrap; flex-shrink:0; }
.teller-review-card__topics     { display:flex; gap:6px; flex-wrap:wrap; }
.teller-review-card__topic      { display:inline-flex; align-items:center; padding:3px 10px; border-radius:100px; background:#f0f0f0; font-size:12px; font-weight:500; color:rgba(0,0,0,0.6); white-space:nowrap; }

.teller-review-card__detail        { display:flex; flex-direction:column; gap:2px; }
.teller-review-card__detail-row    { display:flex; align-items:center; font-size:12px; }
.teller-review-card__detail-label  { font-weight:500; color:#999; white-space:nowrap; }
.teller-review-card__detail-value  { font-weight:500; color:#333; white-space:nowrap; }

.teller-review-card__body { font-size:16px; color:rgba(0,0,0,0.87); line-height:1.7; margin:0; }
.teller-review-card__body-full { display:none; }
.teller-review-card__body-full.is-open { display:block; }
.teller-review-card__body-wrap.is-expanded .teller-review-card__body--short { display:none; }
.teller-review-card__more  { color:#0288d1; cursor:pointer; font-size:16px; }
.teller-review-card__close { color:#0288d1; cursor:pointer; font-size:14px; margin-top:4px; display:block; text-align:right; }
