/* ===== join_us.css - 人才招聘模块样式 ===== */

/* ---- Banner Section ---- */
.join-banner {
    position: relative;
    width: 100%;
    height: 460px;
    margin-top: 86px;
    overflow: hidden;
}

.join-banner .banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(43, 43, 43, 0.75) 0%, rgba(43, 43, 43, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.join-banner .banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 168px;
}

.join-banner .banner-title {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    line-height: 60px;
    letter-spacing: -3.75px;
    margin-bottom: 40px;
}

.join-banner .banner-desc {
    font-size: 22px;
    color: #fff;
    line-height: 22px;
    letter-spacing: 0.15px;
}

/* ---- Job Listings Section ---- */
.join-content {
    padding: 60px 0 80px;
    background: #fff;
}

.job-list {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-item {
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
}

.job-item:last-child {
    border-bottom: none;
}

.job-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-text);
    line-height: 28px;
    letter-spacing: -1.2px;
    margin-bottom: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-title .toggle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.job-item.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.job-detail {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    max-height: 2000px;
    opacity: 1;
}

.job-item.collapsed .job-detail {
    max-height: 0;
    opacity: 0;
}

.job-section-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-text);
    line-height: 20px;
    letter-spacing: -1.09px;
    margin-bottom: 16px;
}

.job-section-content {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 28px;
    margin-bottom: 30px;
}

.job-section-content p {
    margin: 0;
}

/* ---- Resume Channels ---- */
.resume-channels {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.resume-channels .channel-label {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 16px;
    letter-spacing: 0.25px;
    white-space: nowrap;
}

.resume-channels .channel-icon {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}

.resume-channels .channel-icon:hover {
    opacity: 0.8;
}

.resume-channels .channel-icon img {
    height: 38px;
    width: auto;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .join-banner .banner-content {
        padding-left: 80px;
    }

    .join-banner .banner-title {
        font-size: 48px;
    }

    .join-banner .banner-desc {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .join-banner {
        height: 360px;
    }

    .join-banner .banner-content {
        padding-left: 30px;
    }

    .join-banner .banner-title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .join-banner .banner-desc {
        font-size: 16px;
    }

    .job-title {
        font-size: 24px;
    }

    .job-section-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .join-banner {
        height: 280px;
    }

    .join-banner .banner-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .join-banner .banner-title {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .join-banner .banner-desc {
        font-size: 14px;
    }

    .join-content {
        padding: 30px 0 50px;
    }

    .job-item {
        padding: 24px 0;
    }

    .job-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .job-section-title {
        font-size: 16px;
    }

    .job-section-content {
        font-size: 14px;
        line-height: 24px;
    }

    .resume-channels {
        gap: 10px;
    }

    .resume-channels .channel-icon img {
        height: 32px;
    }
}
