/**
 * Component Styles: Recruit Voice
 *
 * Employee voice section for recruitment page.
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

.recruit-voice-section {
    background-color: #fff;
}

/* ========================================
   Voice Item Layout
   ======================================== */

.voice-item {
    position: relative;
}

.voice-top-image-wrapper {
    position: relative;
    text-align: center;
}

.voice-top-image {
    width: 100%;
    max-width: 219px;
    height: auto;
    margin-top: -50px;
    margin-left: -30px;
}

/* ========================================
   Voice Card
   ======================================== */

.voice-card {
    background: var(--secondary-color-lightest);
    padding: 35px 30px;
    transition: transform 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-5px);
}

.voice-header {
    margin-top: 20px;
}

/* Voice Title (Optional) */
.voice-header--title {
    font-size: 14px;
    min-height: 22.4px;
}

/* Feature Image */
.voice-feature-image {
    margin-bottom: 25px;
    background-color: #ffffff;
}

.voice-feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
}

.voice-detail {
    background-color: #ffffff;
    padding: 25px 20px;
    border-bottom: 1px solid var(--dark-color);
}
/* Highlight Text */
.voice-detail--highlight {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Content */
.voice-detail--content {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Employee Name */
.voice-detail--employee {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: right;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 991px) {
    .recruit-voice-section {
        padding: 60px 0;
    }

    .voice-card {
        margin-bottom: 40px;
    }

    .voice-items > div:first-child {
        margin-bottom: 70px;
    }

    .voice-top-image {
        margin-top: -80px;
        margin-left: -30px;
    }
}

@media (max-width: 767px) {
    .recruit-voice-section {
        padding: 50px 0;
    }

    .voice-items {
        padding: 60px 0px 40px;
    }

    .voice-items > div:first-child {
        margin-bottom: 70px;
    }

    .voice-top-image {
        max-width: 220px;
        margin-top: -70px;
        margin-left: -20px;
    }

    .voice-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .recruit-voice-section {
        padding: 40px 0;
    }

    .voice-top-image {
        max-width: 240px;
    }

    .voice-card {
        padding: 20px 15px;
    }
}
