/* 萨省雇主担保整体容器 */
.saskatchewan-skilled-worker {
    width: 100%;
}

/* 萨省雇主担保介绍区域 */
.skilled-worker-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 75px 0px;
    min-height: 600px;
    background-image: url('/v2/img/event_saskatchewan/bg-intro.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.skilled-worker-content {
    max-width: 500px;
}

.skilled-worker-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.skilled-worker-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.skilled-worker-image {
    max-width: 500px;
    position: relative;
    z-index: 10;
    margin-bottom: -74px; /* 让图片超出父容器底部，延伸到下一版块 */
}

.skilled-worker-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== 四大专属人才通道 ==================== */
.talent-streams {
    background-color: #f5f5f5;
    padding: 80px 20px 10px;
}

.talent-streams-header {
    text-align: center;
}

.talent-streams-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.talent-streams-subtitle {
    font-size: 22px;
}

.talent-streams-list {
    max-width: 1000px;
    margin: 0 5%;
    display: flex;
    flex-direction: column;
}

.talent-stream-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ==================== 现成资源 ==================== */
.job-resources {
    padding: 40px 20px 20px;
}

.job-resources-header {
    text-align: center;
}

.job-resources-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.job-resources-subtitle {
    font-size: 22px;
}

.job-resources-grid {
    max-width: 1000px;
    margin: 0 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.job-resources-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-resources-item img {
    width: 100%;
    height: auto;
    display: block;
}

.job-resources-desc {
    padding: 15px 20px;
    background-color: #1f6fb2;
}

.job-resources-desc p {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    margin: 0;
}

.job-resources-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==================== 申请流程 ==================== */
.application-process {
    background-color: #f5f5f5;
    padding: 20px 5%;
}

.application-process-header {
    text-align: center;
    margin-bottom: 30px;
}

.application-process-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.application-process-subtitle {
    font-size: 22px;
}

.application-process-image {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.application-process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== 移动端适配 ==================== */
@media screen and (max-width: 640px) {
    /* 萨省雇主担保介绍区域移动端适配 */
    .skilled-worker-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
        min-height: auto;
    }

    .skilled-worker-content {
        max-width: 100%;
        text-align: center;
    }

    .skilled-worker-image {
        max-width: 100%;
    }

    .skilled-worker-title {
        font-size: 24px;
    }

    .skilled-worker-intro {
        font-size: 14px;
    }

    /* 四大专属人才通道移动端适配 */
    .talent-streams {
        padding: 25px 15px;
    }

    .talent-streams-title {
        font-size: 24px;
    }

    .talent-streams-subtitle {
        font-size: 14px;
    }

    /* 现成资源移动端适配 */
    .job-resources {
        padding: 25px 25px;
    }

    .job-resources-title {
        font-size: 24px;
    }

    .job-resources-subtitle {
        font-size: 14px;
    }

    .job-resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 0;
    }

    .job-resources-desc {
        padding: 10px 12px;
    }

    .job-resources-desc p {
        font-size: 12px;
        line-height: 1.6;
    }

    /* 申请流程移动端适配 */
    .application-process {
        padding: 25px 15px;
    }

    .application-process-title {
        font-size: 24px;
    }

    .application-process-subtitle {
        font-size: 14px;
    }
}
