/* #LP-A 満足の声 */
.voice-section {
    padding: 21.33vw 5.33vw;
    background: url('../../assets/images/lp-a/voice_bg.webp') no-repeat center center/cover;
    display: grid;
    gap: 13.33vw;
}

.voice-header {
    display: grid;
    gap: 4.27vw;
    justify-items: center;
    text-align: center;
}

.voice-ribbon {
    display: inline-block;
    color: #4B6E91;
    /* Approximate blue from screenshot perception */
    font-weight: 700;
    font-size: 5.1vw;
    position: relative;
    padding-bottom: 2.13vw;
    margin-bottom: 2.13vw;
    text-shadow: var(--text-shadow-sm);
}

.voice-ribbon::after {
    content: "";
    display: block;
    width: 60%;
    height: 1.07vw;
    background: #eec685;
    /* Approximate gold underline */
    margin: 2.13vw auto 0;
    border-radius: 0.53vw;
    box-shadow: 0.53vw 0.53vw 0.53vw rgba(0, 0, 0, 0.25);
}

.voice-header h3 {
    margin: 0;
    font-size: 7vw;
    color: var(--text);
    line-height: 1.5;
    font-weight: 500;
    font-family: var(--font-main);
    /* "内定者の声" usually implies a slightly more formal feel, checking user pref */
    letter-spacing: 0.05em;
    text-shadow: var(--text-shadow-sm);
    /* Readability against clouds */
}

.voice-grid {
    display: grid;
    gap: 6.4vw;
    width: 100%;
    margin: 0 auto;
}

.voice-card {
    border: 0.27vw solid var(--border);
    border-radius: 4.27vw;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    padding: 6.4vw;
    display: grid;
    gap: 4.27vw;
    transition: transform 0.3s, box-shadow 0.3s;
}

.voice-card:hover {
    transform: translateY(-1.07vw);
    box-shadow: var(--shadow-md);
}

.voice-quote {
    margin: 0;
    line-height: 1.8;
    font-weight: 500;
    color: var(--text);
}

.voice-meta {
    margin: 0;
    color: var(--muted);
    font-size: 3.8vw;
    text-align: right;
    font-weight: 700;
}