/* ══════════════════════════════════════════════════════════
   JBUE — Consolidated Styles
   ══════════════════════════════════════════════════════════ */

.jbue-wrap,
.jbue-wrap * {
    box-sizing: border-box;
}

.jbue-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

/* Single job page extra wrapper */
.jbue-single-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Homepage Content Block Refinement */
.jbue-homepage-content {
    max-width: 840.7px !important;
    margin: 0 0 40px 0;
    /* Left aligned, no auto margin */
    padding: 0 15px;
    line-height: 1.8;
    font-size: 15px;
    color: #444;
    text-align: left;
}

.jbue-homepage-content ul,
.jbue-homepage-content ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.jbue-homepage-content li {
    margin-bottom: 12px;
    position: relative;
}

.jbue-homepage-content ul li::marker {
    color: #e8434f;
    font-size: 1.2em;
}

.jbue-homepage-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 25px 0;
}

.jbue-page-title {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin: 10px 0 25px 0;
    text-align: left;
    padding: 0;
}

.jbue-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.jbue-main {
    width: 840.7px;
    flex: 0 0 840.7px;
    min-width: 0;
}

.jbue-sidebar-col {
    width: 419.3px;
    flex: 0 0 419.3px;
    position: sticky;
    top: 20px;
}

@media (max-width: 1279px) {
    .jbue-wrap {
        max-width: 100%;
    }

    .jbue-main {
        width: 65.68%;
        flex: 0 0 65.68%;
    }

    .jbue-sidebar-col {
        width: 32.75%;
        flex: 0 0 32.75%;
    }
}

@media (max-width: 900px) {
    .jbue-row {
        flex-direction: column;
        gap: 20px;
    }

    .jbue-main,
    .jbue-sidebar-col {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .jbue-sidebar-col {
        position: static;
        margin-top: 20px;
        display: block !important;
    }
}

.jbue-search-wrap {
    width: 100%;
    height: 82px;
    background: #f0f0f0;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 15px 16px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.jbue-search-wrap input[type="text"] {
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    font-size: 14px;
    color: #444;
    background: #fff;
    outline: none;
    transition: border-color .15s;
    box-sizing: border-box;
}

.jbue-count {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.jbue-count strong {
    color: #222;
}

.jbue-cards-area {
    position: relative;
    min-height: 150px;
}

.jbue-loading {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.jbue-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #e0e0e0;
    border-top-color: #e8434f;
    border-radius: 50%;
    animation: jbue-spin .7s linear infinite;
}

@keyframes jbue-spin {
    to {
        transform: rotate(360deg);
    }
}

.jbue-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1.5px solid #d5d5d5;
    border-radius: 6px;
    padding: 21px 23px;
    margin-bottom: 10px;
    width: 100%;
    min-height: 190px;
    position: relative;
    text-decoration: none;
    color: inherit;
    align-items: center;
    transition: border-color .15s, box-shadow .15s;
}

.jbue-card:hover {
    border-color: #b0b0b0;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .10);
}

.jbue-featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #1ab066;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 0 5px 0 4px;
    text-transform: uppercase;
}

.jbue-logo-wrap {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    overflow: hidden;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jbue-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.jbue-card-body {
    flex: 1;
    min-width: 0;
}

.jbue-card-title {
    display: block;
    font-size: 16px;
    color: #1a5276;
    font-weight: 400;
    margin-bottom: 3px;
}

.jbue-card-company {
    font-size: 13.5px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.jbue-card-meta {
    line-height: 1.85;
}

.jbue-card-meta>div {
    font-size: 13px;
    color: #555;
}

.jbue-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.jbue-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
}

.jbue-card-category {
    background: #e8f0fe;
    color: #1a56db;
}

.jbue-card-type {
    background: #e6f7ef;
    color: #0a7045;
}

.jbue-filter-box {
    background: #f0f0f0;
    border-radius: 6px;
    padding: 26px 22px 30px;
    width: 100%;
}

.jbue-filter-title {
    font-size: 24px;
    font-weight: 700;
    color: #e8434f;
    margin-bottom: 20px;
}

.jbue-filter-group {
    margin-bottom: 18px;
}

.jbue-filter-box input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 22px;
    font-size: 13px;
}

.jbue-filter-box select {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #c5c5c5;
    border-radius: 4px;
}

.jbue-checkbox-list {
    list-style: none;
    padding: 0;
}

.jbue-checkbox-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}

.jbue-checkbox-list label {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.jbue-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.jbue-pagination .page-numbers {
    padding: 6px 13px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    text-decoration: none;
    color: #555;
    background: #fff;
}

.jbue-pagination .page-numbers.current,
.jbue-pagination .page-numbers:hover {
    background: #e8434f;
    color: #fff;
    border-color: #e8434f;
}

/* ── Single Job Layout ───────────────────────────── */
.jbue-single-hero {
    background: #111418;
    color: #fff;
    padding: 50px 0 60px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.jbue-single-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.jbue-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.jbue-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.jbue-single-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.jbue-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    list-style: none;
    padding: 0;
}

.jbue-single-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

@media (max-width: 900px) {
    .jbue-single-container {
        grid-template-columns: 1fr;
    }
}

.jbue-single-content {
    text-align: left;
    line-height: 1.7;
    font-size: 16px;
}


.jbue-apply-btn:hover {
    background: #e60000;
    color: #fff;
    transform: translateY(-1px);
}

.jbue-apply-btn:active {
    transform: translateY(0);
}

/* ── Restoration Sections Spacing ── */
.jbue-related-jobs,
.jbue-bottom-columns,
.jbue-subscribe-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.jbue-related-jobs {
    background: #fff;
}

.jbue-bottom-columns {
    background: #fcfcfc;
}

.jbue-subscribe-section {
    background: #f8f9fa;
}

.jbue-apply-btn {
    display: inline-block !important;
    background: #ff4d4d;
    color: #fff;
    text-align: center;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    width: auto !important;
    margin-top: 15px;
    transition: background 0.2s, transform 0.1s;
}

.jbue-apply-area-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: left;
}

.jbue-input-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

/* ── Restoration Sections Spacing ── */
.jbue-related-jobs,
.jbue-bottom-columns {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.jbue-related-jobs {
    background: #fff;
}

.jbue-bottom-columns {
    background: #fcfcfc;
}

.jbue-column-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.jbue-col-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.jbue-col-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ff4d4d;
}

/* ── Mini Cards ── */
.jbue-mini-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jbue-mini-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.jbue-mini-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.jbue-mini-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.jbue-mini-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.jbue-mini-init {
    font-size: 20px;
    font-weight: 700;
    color: #999;
}

.jbue-mini-info {
    flex: 1;
    min-width: 0;
}

.jbue-mini-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ff4d4d;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 5px;
}

.jbue-mini-meta {
    font-size: 12px;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jbue-mini-meta span {
    position: relative;
}

.jbue-mini-meta span:not(:last-child):after {
    content: "•";
    margin-left: 10px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .jbue-column-wrap {
        grid-template-columns: 1fr;
    }
}

.clsPostDate{
   text-align: right;
}

.clsJobCategory{
   font-weight: 700;
   font-size: 16px;
}
.jbue-title-badge{
  padding: 0 6px;
    line-height: 18px;
    margin: 0 0 0 6px;
    font-size: 10px;
    background-color: #ffb119;
    text-transform: uppercase;
    border-radius: 3px 3px 3px 3px;
    color: #fff;
    display: inline-block;
}



.clsJobsearch {
    text-align: center;
}