/* Section 2: Recruitment Routes */

#section-recruitment-routes {
    background-color: #F5F8FB;
}

#section-recruitment-routes .rss-routes {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

#section-recruitment-routes .route-item {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

/* Reverse layout: content left, image right */
#section-recruitment-routes .route-item.reverse {
    flex-direction: row-reverse !important;
}

#section-recruitment-routes .route-image {
    /* flex: 1; */
    max-width: 640px;
    min-width: 0;
    background: url("../../images/recruitment-support-system/foreign_talent_drop.png") no-repeat left bottom;
    background-size: 630px 350px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

#section-recruitment-routes .route-image img {
    width: 630px;
    height: auto;
    margin-left: 10px;
    margin-bottom: 10px;
}

#section-recruitment-routes .route-item.reverse .route-image {
    background-position: right bottom;
}

#section-recruitment-routes .route-item.reverse .route-image img {
    margin-right: 10px;
    margin-left: unset;
}

#section-recruitment-routes .route-content {
    flex: 1;
    min-width: 0;
    background-color: #fff;
    padding: 29px;
    position: relative;
    z-index: 2;
    margin-top: auto;
    transform: translateY(-40px);
    border-radius: 10px;
}

#section-recruitment-routes .route-item.reverse .route-content {
    margin-right: 0;
    margin-left: 0;
    transform: translateY(0);
}

#section-recruitment-routes .route-content h5 {
    font-size: 26px;
    font-weight: 700;
    color: #1A7BA5;
    margin-bottom: 20px;
    letter-spacing: 2.6pt;
    line-height: 55px;
    border-bottom: 1px solid #1A7BA5;
}

#section-recruitment-routes .route-item.reverse .route-content h5 {
    line-height: 36px;
}

#section-recruitment-routes .route-content p {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 1.6pt;
    color: #333;
}

