/* Single Voice Styles - Based on Figma Design */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force scrolled state styles for voice single page */
.site-header.always-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.site-header.always-scrolled .main-navigation a {
    color: #333333 !important;
    text-shadow: none !important;
    font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
}

.site-header.always-scrolled .site-branding a {
    color: #333333 !important;
    font-family: 'Cinzel', serif !important;
}

/* Main Container */
.single-voice {
    width: 100%;
    background: #ffffff;
    padding: 100px 0;
}

.voice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main Content Area */
.voice-main-content {
    display: flex;
    gap: 60px;
    align-items: flex-end;
    margin-bottom: 100px;
}

/* Left Side - Image */
.voice-image-section {
    flex: 0 0 35%;
}

.voice-featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.voice-image-placeholder {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
}

/* Right Side - Rating Box */
.voice-rating-box {
    flex: 1;
    background: #F5F5F5;
    padding: 48px;
}

/* Rating Display */
.rating-display {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.star-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.rating-score {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 400;
    color: #c00707;
}

/* Main Title */
.voice-title {
    font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
    font-size: 22px;
    font-weight: 700;
    color: #8B0000;
    line-height: 1.4;
    margin-bottom: 24px;
}

/* Description */
.voice-description {
    font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Customer Info */
.customer-info {
    font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

/* FAQ Section */
.voice-faq-section {
    background: #ffffff;
}

.faq-item {
    margin-bottom: 48px;
    padding-left: 40px;
    position: relative;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 40px;
    background: #8B0000;
}

.faq-question {
    font-family: 'Yu Mincho', 'YuMincho', '游明朝', serif !important;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.5;
}

.faq-answer {
    font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .voice-container {
        padding: 0 40px;
    }
    
    .voice-main-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .single-voice {
        padding: 60px 0;
    }
    
    .voice-container {
        padding: 0 20px;
    }
    
    .voice-main-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .voice-image-section {
        flex: 1;
        width: 100%;
    }
    
    .voice-rating-box {
        padding: 32px 24px;
    }
    
    .rating-display {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .star-image {
        width: 24px;
        height: 24px;
    }
    
    .rating-score {
        font-size: 36px;
    }
    
    .voice-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .voice-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .customer-info {
        font-size: 12px;
        text-align: right;
    }
    
    .faq-item {
        margin-bottom: 32px;
        padding-left: 24px;
    }
    
    .faq-question {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}