/* =========================================
   9. Voices (参加メンバーのリアルな声・リッチ版)
========================================= */
.voices {
    padding: 80px 20px;
    background-color: var(--bg-surface, #f9f9f9);
}

/* PCなら2列〜3列、スマホなら1列に自動調整される最強グリッド */
.voice-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* カード本体 */
.voice-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* 左上のクオートマーク（重厚感アップ） */
.voice-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(255, 122, 0, 0.1); /* オレンジを薄く */
    line-height: 1;
    z-index: 0;
}

/* --- カード上部（アイコン・星・年齢） --- */
.voice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    position: relative;
    z-index: 1;
}

/* アバター（モザイク風ぼかし） */
.voice-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eee;
    flex-shrink: 0;
}

.voice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 【重要】ここで画像をぼかしてプライバシー＆リアル感を出す */
    filter: blur(4px) brightness(1.1); 
    transform: scale(1.1); /* ぼかしの端っこの違和感を消す */
}

/* 星とユーザー情報 */
.voice-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.voice-stars {
    color: #ffb400; /* レビューの星色 */
    font-size: 14px;
    letter-spacing: 2px;
}

.voice-user {
    font-size: 13px;
    font-weight: 900;
    color: #333;
    margin: 0;
}

/* --- カード下部（本文とマーカー） --- */
.voice-text {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* 蛍光マーカー風のハイライト（コンバージョン爆上げポイント） */
.voice-text .highlight {
    font-weight: 900;
    color: #000;
    /* オレンジのマーカーを下半分に引く */
    background: linear-gradient(transparent 50%, rgba(255, 122, 0, 0.3) 50%);
}