/* THANNECT Voice Manager Styles */

.voice-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.voice-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.voice-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.voice-card-link:hover .voice-card {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.voice-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.voice-image {
    flex-shrink: 0;
}

.voice-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4A574;
}

.voice-customer-info {
    flex: 1;
}

.voice-customer-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.voice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.voice-age-gender,
.voice-service {
    font-size: 0.9rem;
    color: #666;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 12px;
}

.voice-service {
    background: #e8f4f8;
    color: #2c5f7c;
}

.voice-rating {
    display: flex;
    gap: 2px;
}

.voice-rating .star {
    color: #ddd;
    font-size: 1.2rem;
}

.voice-rating .star.filled {
    color: #ffa500;
}

.voice-comment {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #D4A574;
}

.voice-comment p {
    margin: 0;
    color: #444;
    line-height: 1.8;
    font-size: 0.9rem;
}

.voice-read-more {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    color: #D4A574;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.voice-card-link:hover .read-more-btn {
    color: #c49563;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .voice-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px;
    }

    .voice-card {
        padding: 20px;
    }

    .voice-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .voice-image img {
        width: 100px;
        height: 100px;
    }

    .voice-customer-name {
        font-size: 1.2rem;
    }

    .voice-meta {
        justify-content: center;
    }

    .voice-rating {
        justify-content: center;
    }
}
