/* =====================================================
   Vidoco Recruitment — Styles
   ===================================================== */

/* ----- Danh sách tuyển dụng ----- */
.vr-recruitment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 30px;
}

.vr-recruitment-item {
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.25s ease;
}

.vr-recruitment-item:hover {
    box-shadow: 0 4px 16px rgba(0, 172, 236, 0.12);
}

.vr-recruitment-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    gap: 20px;
}

.vr-recruitment-content {
    flex: 1;
    min-width: 0;
}

.vr-recruitment-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.4;
}

.vr-recruitment-title a {
    color: #00ACEC;
    text-decoration: none;
}

.vr-recruitment-title a:hover {
    color: #0090c8;
}

.vr-recruitment-quantity {
    font-size: 15px;
    color: #333;
    margin: 0 0 10px;
}

.vr-recruitment-short-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

.vr-recruitment-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vr-meta-expire {
    font-size: 13px;
    color: #6B6B6B;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vr-meta-expire i {
    color: #00ACEC;
}

/* ----- Nút xem chi tiết ----- */
.vr-btn-detail {
    display: inline-block;
    background-color: #00ACEC;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.25s ease;
}

.vr-btn-detail:hover {
    background-color: #0090c8;
    color: #fff !important;
}

/* ----- Nút xem thêm ----- */
.vr-load-more-wrap {
    text-align: center;
    margin: 10px 0 30px;
}

.vr-btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #00ACEC;
    border: 2px solid #00ACEC;
    font-size: 15px;
    font-weight: 700;
    padding: 0 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 0;
}

.vr-btn-load-more:hover {
    background-color: #00ACEC;
    color: #fff;
}

.vr-btn-load-more:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.vr-no-jobs {
    color: #6B6B6B;
    font-style: italic;
    text-align: center;
    padding: 40px 0;
}

/* ----- Trang chi tiết ----- */
.vr-single-wrapper {
    padding: 40px 0;
}

.vr-job-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e9ecef;
}

.vr-job-title {
    font-size: 28px;
    font-weight: 700;
    color: #09102D;
    margin: 0 0 16px;
    line-height: 1.3;
}

.vr-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.vr-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6B6B6B;
}

.vr-meta-item i {
    color: #00ACEC;
}

.vr-job-short-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    background: #f8f9fa;
    padding: 16px 20px;
    border-left: 4px solid #00ACEC;
    border-radius: 0 6px 6px 0;
}

.vr-job-content {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 48px;
}

/* ----- Form ứng tuyển ----- */
.vr-apply-form {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 32px 36px;
    margin-bottom: 48px;
}

.vr-apply-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #09102D;
    margin: 0 0 24px;
}

/* ----- Bài tuyển dụng liên quan ----- */
.vr-related-jobs {
    margin-top: 20px;
}

.vr-related-title {
    font-size: 22px;
    font-weight: 700;
    color: #09102D;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

/* ----- Responsive ----- */
@media(max-width: 1000px) {
    .vr-apply-form {
        padding: 20px;
    }
}

@media (max-width: 640px) {

    .vr-recruitment-item-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .vr-recruitment-action {
        width: 100%;
    }

    .vr-btn-detail {
        width: 100%;
        text-align: center;
    }

    .vr-single-wrapper {
        padding: 20px 0;
    }

    .vr-job-title {
        font-size: 22px;
    }

    .vr-apply-form {
        padding: 20px;
    }
}