/* Hero split */
.crs-hero {
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.crs-left {
    min-height: 320px;
    background: #eef5ff;
    border-right: 1px solid #e6efff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crs-ph {
    width: 140px;
    height: 100px;
    border: 2px dashed #bcd3ff;
    border-radius: 6px;
}

.crs-right {
    padding: 36px 24px;
}

.crs-breadcrumb {
    color: #1e63e6;
    font-size: 13px;
    margin-bottom: 8px;
}

.crs-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 42px;
    line-height: 1.15;
}

.crs-lead {
    color: #5b87d1;
    margin-top: 10px;
    max-width: 520px;
}

/* Core Values */
.crs-values {
    padding: 36px 0;
}

.crs-values h3 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 16px;
}

.crs-vrow {
    padding: 16px 0;
    border-bottom: 1px solid #e9f0ff;
}

.crs-num {
    color: #7aa7ff;
    font-weight: 800;
}

.crs-vname {
    color: var(--primary-color);
    font-weight: 800;
}

.crs-vdesc {
    color: #5b87d1;
}

/* Experts with gallery */
.crs-experts {
    padding: 20px 0 40px;
}

.crs-experts h3 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 10px;
}

.crs-big {
    height: 240px;
    background: #eef5ff;
    border: 1px solid #e6efff;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crs-thumb {
    height: 90px;
    background: #eef5ff;
    border: 1px solid #e6efff;
    border-radius: 0px;
}

/* Vacancy Listing */
.crs-vac {
    padding: 10px 0 46px;
}

.crs-vac h3 {
    color: var(--primary-color);
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
}

.crs-job {
    background: #fff;
    border: 1px solid #e6efff;
    border-radius: 0px;
    padding: 16px;
}

.crs-job h5 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
}

.crs-date {
    color: #8eb1ff;
    font-size: 12px;
}

.crs-jdesc {
    color: #5b87d1;
    font-size: 14px;
}

.crs-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

/* Resume form */
.crs-form {
    padding: 30px 0 60px;
}

.crs-form h3 {
    color: var(--primary-color);
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
}

.form-control,
.form-select {
    background: #F2F8FF;
    height: 46px;
    border-radius: 0px;
    border: none;
}

textarea.form-control {
    height: 140px;
}

.crs-upload {
    display: flex;
    gap: 10px;
    align-items: center;
}

.crs-file {
    display: none;
}

.crs-file-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F2F8FF;
    padding: 8px 12px;
    border-radius: 0px;
    cursor: pointer;
    color: #1e63e6;
    font-weight: 700;
}

.crs-file-name {
    color: #1e63e6;
}

.crs-submit {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    height: 40px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .crs-title {
        font-size: 34px;
    }

    .crs-left {
        min-height: 220px;
    }
}