/* ========================================================================
   IT Contractors UK — IT Contract Jobs directory stylesheet
   File: /css/jobs.css
   Extracted from ITC-JOBS-SINGLE-FILE-V50.29-MICRO-POLISH-20260831
   IMPORTANT: declarations are preserved in their original source order.
   ======================================================================== */

/* ========================================================================== 
   ITC Jobs Front End V1
   Entirely scoped to .itcjobs-v1-app to prevent conflicts with the live site.
   ========================================================================== */
.itcjobs-v1-app,
.itcjobs-v1-app * { box-sizing: border-box; }

/* Preserve the site's existing sticky/fixed behaviour while keeping its menu above this interface. */
#itc-headerwrapper { z-index: 1000 !important; }

.itcjobs-v1-app {
    --itcjobs-green: #2c6128;
    --itcjobs-green-dark: #1f4d1c;
    --itcjobs-green-soft: #eef5ed;
    --itcjobs-green-pale: #f7fbf6;
    --itcjobs-ink: #18221a;
    --itcjobs-text: #3f4941;
    --itcjobs-muted: #6f786f;
    --itcjobs-line: #dfe7df;
    --itcjobs-line-dark: #cbd8cb;
    --itcjobs-white: #ffffff;
    --itcjobs-soft: #f5f7f5;
    --itcjobs-amber: #a36409;
    --itcjobs-amber-soft: #fff7e8;
    --itcjobs-blue: #315f78;
    --itcjobs-blue-soft: #edf5f8;
    position: relative;
    z-index: 1;
    width: 100%;
    color: var(--itcjobs-text);
}

.itcjobs-v1-app button,
.itcjobs-v1-app input,
.itcjobs-v1-app select { font: inherit; }

.itcjobs-v1-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.itcjobs-v1-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin: 6px 0 24px;
}

.itcjobs-v1-header h1 {
    margin: 0 0 9px;
    color: #173617;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.itcjobs-v1-header-copy {
    max-width: 800px;
    margin: 0;
    color: #526055;
    font-size: 16px;
    line-height: 1.65;
}

.itcjobs-v1-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 150px;
    padding: 12px 15px;
    border: 1px solid #d7e5d6;
    border-radius: 14px;
    background: #f8fbf8;
    color: #315132;
    font-weight: 750;
    white-space: nowrap;
}

.itcjobs-v1-live-pill::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--itcjobs-green);
    box-shadow: 0 0 0 5px rgba(44,97,40,.10);
}

.itcjobs-v1-search-panel {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding: 22px;
    border: 1px solid #dbe5da;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf8 100%);
    box-shadow: 0 14px 34px rgba(31,77,28,.075);
}

.itcjobs-v1-search-row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.itcjobs-v1-search-wrap { position: relative; min-width: 0; }

.itcjobs-v1-search-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #667267;
}

.itcjobs-v1-search-input {
    width: 100%;
    min-height: 54px;
    padding: 13px 48px 13px 48px;
    border: 1px solid #cdd9cd;
    border-radius: 13px;
    background: #fff;
    color: var(--itcjobs-ink);
    font-size: 16px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.itcjobs-v1-search-input:focus {
    border-color: var(--itcjobs-green);
    box-shadow: 0 0 0 4px rgba(44,97,40,.11);
}

.itcjobs-v1-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    display: none;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #5d685e;
    cursor: pointer;
}

.itcjobs-v1-search-clear:hover { background: #eef3ee; }
.itcjobs-v1-search-clear.is-visible { display: inline-grid; place-items: center; }

.itcjobs-v1-autocomplete {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 7px);
    z-index: 40;
    display: none;
    max-height: 330px;
    overflow-y: auto;
    border: 1px solid #d5dfd5;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(26,45,27,.16);
}

.itcjobs-v1-autocomplete.is-open { display: block; }

.itcjobs-v1-suggestion {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid #edf1ed;
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.itcjobs-v1-suggestion:last-child { border-bottom: 0; }
.itcjobs-v1-suggestion:hover,
.itcjobs-v1-suggestion.is-active { background: #f2f7f1; }
.itcjobs-v1-suggestion strong { display: block; color: #213823; font-size: 14px; }
.itcjobs-v1-suggestion span { display: block; margin-top: 3px; color: #747d74; font-size: 12.5px; }

.itcjobs-v1-filter-toggle {
    min-height: 52px;
    padding: 0 17px;
    border: 1px solid #cbd7cb;
    border-radius: 12px;
    background: #fff;
    color: #294b2a;
    font-weight: 800;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease;
}

.itcjobs-v1-filter-toggle:hover,
.itcjobs-v1-filter-toggle[aria-expanded="true"] {
    border-color: var(--itcjobs-green);
    background: var(--itcjobs-green-soft);
}

.itcjobs-v1-primary-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 15px;
}

.itcjobs-v1-filter-chip {
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid #d4ded4;
    border-radius: 999px;
    background: #fff;
    color: #4e5a50;
    font-size: 13.5px;
    font-weight: 750;
    cursor: pointer;
}

.itcjobs-v1-filter-chip:hover { border-color: #aac2a9; }
.itcjobs-v1-filter-chip.is-active {
    border-color: var(--itcjobs-green);
    background: var(--itcjobs-green);
    color: #fff;
}

.itcjobs-v1-filter-panel {
    display: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e1e8e1;
}
.itcjobs-v1-filter-panel.is-open { display: block; }

.itcjobs-v1-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.itcjobs-v1-field label,
.itcjobs-v1-filter-group-title {
    display: block;
    margin: 0 0 7px;
    color: #344337;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.itcjobs-v1-select {
    width: 100%;
    min-height: 44px;
    padding: 9px 35px 9px 12px;
    border: 1px solid #cfdacf;
    border-radius: 10px;
    background: #fff;
    color: #28352a;
    outline: none;
}

.itcjobs-v1-select:focus { border-color: var(--itcjobs-green); box-shadow: 0 0 0 3px rgba(44,97,40,.1); }

.itcjobs-v1-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.itcjobs-v1-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid #d7e0d7;
    border-radius: 9px;
    background: #fff;
    color: #49554b;
    font-size: 13px;
    cursor: pointer;
}

.itcjobs-v1-check:has(input:checked) {
    border-color: #8eaf8d;
    background: #eef6ed;
    color: #244a24;
    font-weight: 750;
}

.itcjobs-v1-check input { accent-color: var(--itcjobs-green); }

.itcjobs-v1-specialism-block {
    grid-column: 1 / -1;
    padding-top: 3px;
}

.itcjobs-v1-filter-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
}

.itcjobs-v1-reset {
    border: 0;
    background: transparent;
    color: var(--itcjobs-green);
    font-weight: 800;
    cursor: pointer;
}
.itcjobs-v1-reset:hover { text-decoration: underline; }

.itcjobs-v1-interpretation {
    min-height: 20px;
    margin: 11px 0 0;
    color: #667067;
    font-size: 12.5px;
}
.itcjobs-v1-interpretation strong { color: #2f5130; }

.itcjobs-v1-active-filters {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
}
.itcjobs-v1-active-filters.is-visible { display: flex; }

.itcjobs-v1-active-token {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid #cee0cd;
    border-radius: 999px;
    background: #f1f7f0;
    color: #305331;
    font-size: 12.5px;
    font-weight: 750;
}

.itcjobs-v1-active-token button {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(44,97,40,.10);
    color: #2c6128;
    cursor: pointer;
}

.itcjobs-v1-results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 22px 0 14px;
}

.itcjobs-v1-results-summary {
    margin: 0;
    color: #5e685f;
    font-size: 14px;
}
.itcjobs-v1-results-summary strong { color: #223a24; }

.itcjobs-v1-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.itcjobs-v1-mini-button {
    min-height: 39px;
    padding: 8px 12px;
    border: 1px solid #d0dad0;
    border-radius: 9px;
    background: #fff;
    color: #465147;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}
.itcjobs-v1-mini-button:hover,
.itcjobs-v1-mini-button.is-active { border-color: #8eaf8d; background: #f0f6ef; color: #265027; }

.itcjobs-v1-sort {
    min-height: 39px;
    padding: 8px 34px 8px 11px;
    border: 1px solid #d0dad0;
    border-radius: 9px;
    background: #fff;
    color: #3e4b40;
    font-size: 13px;
    font-weight: 700;
}

.itcjobs-v1-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
}

.itcjobs-v1-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--itcjobs-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(30,54,31,.045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.itcjobs-v1-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--itcjobs-green);
}

.itcjobs-v1-card[data-ir35="inside"]::before { background: #59645b; }

.itcjobs-v1-card:hover {
    transform: translateY(-1px);
    border-color: #bdcdbd;
    box-shadow: 0 12px 28px rgba(30,54,31,.085);
}

.itcjobs-v1-card.is-hidden-by-user,
.itcjobs-v1-card.is-filtered,
.itcjobs-v1-card.is-beyond-limit { display: none !important; }

.itcjobs-v1-card-main { padding: 21px 22px 16px 25px; }

.itcjobs-v1-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.itcjobs-v1-title-wrap { min-width: 0; }

.itcjobs-v1-card h2 {
    margin: 0 0 8px;
    color: #1d2f20;
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.25;
    letter-spacing: -0.018em;
}

.itcjobs-v1-card h2 a { color: inherit; text-decoration: none; }
.itcjobs-v1-card h2 a:hover { color: var(--itcjobs-green); }

.itcjobs-v1-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.itcjobs-v1-badge {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f0f3f0;
    color: #59635a;
    font-size: 11.5px;
    font-weight: 850;
    line-height: 1;
}

.itcjobs-v1-badge-outside { background: #eaf5e8; color: #235522; }
.itcjobs-v1-badge-inside { background: #eef0ee; color: #4b554d; }
.itcjobs-v1-badge-new { background: #edf5f8; color: #315f78; }
.itcjobs-v1-badge-closing { border:1px solid #efb5ae; background:#fff0ee; color:#b42318; }

.itcjobs-v1-rate {
    min-width: 185px;
    padding: 10px 12px;
    border: 1px solid #dce6dc;
    border-radius: 12px;
    background: #f8fbf8;
    color: #244a26;
    text-align: right;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.itcjobs-v1-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 17px;
}

.itcjobs-v1-fact {
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid #e3e9e3;
    border-radius: 10px;
    background: #fbfcfb;
}

.itcjobs-v1-fact span {
    display: block;
    margin-bottom: 3px;
    color: #7a837b;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.itcjobs-v1-fact strong {
    display: block;
    overflow-wrap: anywhere;
    color: #354138;
    font-size: 13px;
    line-height: 1.35;
}

.itcjobs-v1-detail-lines {
    display: grid;
    gap: 8px;
    margin-top: 15px;
}

.itcjobs-v1-detail-line {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: #515b53;
    font-size: 13.5px;
    line-height: 1.55;
}

.itcjobs-v1-detail-line > strong { color: #2e3d31; }

.itcjobs-v1-skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.itcjobs-v1-skill {
    display: inline-flex;
    padding: 5px 8px;
    border: 1px solid #d9e3d9;
    border-radius: 7px;
    background: #f7faf7;
    color: #4a584c;
    font-size: 11.5px;
    font-weight: 700;
}

.itcjobs-v1-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 22px 14px 25px;
    border-top: 1px solid #e8eee8;
    background: #fbfcfb;
}

.itcjobs-v1-source {
    min-width: 0;
    color: #6b756d;
    font-size: 12.5px;
    line-height: 1.45;
}
.itcjobs-v1-source strong { color: #3a473c; }

.itcjobs-v1-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.itcjobs-v1-action {
    min-height: 36px;
    padding: 8px 10px;
    border: 1px solid #d5ded5;
    border-radius: 9px;
    background: #fff;
    color: #4a554c;
    font-size: 12.5px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.itcjobs-v1-action:hover,
.itcjobs-v1-action.is-active { border-color: #91b091; background: #eef6ed; color: #285129; }

.itcjobs-v1-view {
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid var(--itcjobs-green);
    border-radius: 9px;
    background: var(--itcjobs-green);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 850;
    text-decoration: none !important;
}
.itcjobs-v1-view:hover { background: var(--itcjobs-green-dark); border-color: var(--itcjobs-green-dark); }

.itcjobs-v1-ad {
    width: 100%;
    margin: 3px 0;
    padding: 10px 12px 12px;
    border: 1px solid #e1e6e1;
    border-radius: 13px;
    background: #fafbfa;
}
.itcjobs-v1-ad-label { margin: 0 0 8px; color: #899089; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.itcjobs-v1-ad-creative { display: flex; justify-content: center; width: 100%; overflow: hidden; }
.itcjobs-v1-ad a, .itcjobs-v1-ad picture { display: block; max-width: 100%; }
.itcjobs-v1-ad img { display: block; width: auto; max-width: 100%; height: auto; margin: 0 auto; border-radius: 6px; object-fit: contain; }
.itcjobs-v1-ad-creative.is-code{display:block;overflow:visible}
.itcjobs-v33-ad-code{display:block;width:100%;max-width:100%;min-width:0;text-align:center;overflow:visible}
.itcjobs-v33-ad-code ins.adsbygoogle{display:block;max-width:100%}
.itcjobs-v33-ad-code iframe{max-width:100%}

.itcjobs-v1-empty {
    display: none;
    padding: 38px 24px;
    border: 1px dashed #cdd9cd;
    border-radius: 15px;
    background: #fafcfa;
    text-align: center;
}
.itcjobs-v1-empty.is-visible { display: block; }
.itcjobs-v1-empty h2 { margin: 0 0 8px; color: #264829; font-size: 21px; }
.itcjobs-v1-empty p { margin: 0; color: #687169; }

.itcjobs-v1-load-wrap { display: none; justify-content: center; margin: 22px 0 6px; }
.itcjobs-v1-load-wrap.is-visible { display: flex; }
.itcjobs-v1-load {
    min-width: 230px;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid #9bb79a;
    border-radius: 11px;
    background: #fff;
    color: #285129;
    font-weight: 850;
    cursor: pointer;
}
.itcjobs-v1-load:hover { background: #eef6ed; border-color: var(--itcjobs-green); }

.itcjobs-v1-compare-dock {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 950;
    display: none;
    width: min(620px, calc(100% - 28px));
    transform: translateX(-50%);
    padding: 12px 13px;
    border: 1px solid #b7cab6;
    border-radius: 14px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 18px 45px rgba(24,50,25,.20);
    backdrop-filter: blur(9px);
}
.itcjobs-v1-compare-dock.is-visible { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.itcjobs-v1-compare-dock p { margin: 0; color: #3e4d40; font-size: 13px; }
.itcjobs-v1-compare-open {
    min-height: 38px;
    padding: 8px 14px;
    border: 0;
    border-radius: 9px;
    background: var(--itcjobs-green);
    color: #fff;
    font-weight: 850;
    cursor: pointer;
}

.itcjobs-v1-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    padding: 24px;
    background: rgba(18,31,20,.58);
    overflow-y: auto;
}
.itcjobs-v1-modal.is-open { display: grid; place-items: center; }
.itcjobs-v1-modal-card {
    width: min(1050px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.itcjobs-v1-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    border-bottom: 1px solid #e4eae4;
}
.itcjobs-v1-modal-head h2 { margin: 0; color: #213d23; font-size: 21px; }
.itcjobs-v1-modal-close { width: 38px; height: 38px; border: 0; border-radius: 50%; background: #eef2ee; cursor: pointer; font-size: 21px; }
.itcjobs-v1-compare-table-wrap { overflow-x: auto; padding: 18px 20px 22px; }
.itcjobs-v1-compare-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.itcjobs-v1-compare-table th,
.itcjobs-v1-compare-table td { padding: 12px; border: 1px solid #e2e8e2; text-align: left; vertical-align: top; }
.itcjobs-v1-compare-table th { background: #f5f8f5; color: #344436; font-size: 12px; }
.itcjobs-v1-compare-table td { color: #4c574e; font-size: 13px; }
.itcjobs-v1-compare-table td:first-child { font-weight: 850; color: #2e3f30; background: #fafbfa; }

.itcjobs-v1-noscript {
    margin: 14px 0;
    padding: 12px 14px;
    border: 1px solid #ebd4ad;
    border-radius: 10px;
    background: #fff8ea;
    color: #76501c;
}

@media (max-width: 980px) {
    .itcjobs-v1-filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .itcjobs-v1-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .itcjobs-v1-header { grid-template-columns: 1fr; gap: 14px; }
    .itcjobs-v1-live-pill { width: fit-content; }
    .itcjobs-v1-search-panel { padding: 16px; border-radius: 14px; }
    .itcjobs-v1-search-row { grid-template-columns: 1fr; }
    .itcjobs-v1-filter-toggle { width: 100%; }
    .itcjobs-v1-results-toolbar { align-items: flex-start; flex-direction: column; }
    .itcjobs-v1-toolbar-actions { width: 100%; flex-wrap: wrap; }
    .itcjobs-v1-sort { flex: 1; }
    .itcjobs-v1-card-head { grid-template-columns: 1fr; }
    .itcjobs-v1-rate { min-width: 0; width: fit-content; text-align: left; }
    .itcjobs-v1-card-foot { align-items: flex-start; flex-direction: column; }
    .itcjobs-v1-actions { justify-content: flex-start; }
}

@media (max-width: 540px) {
    .itcjobs-v1-filter-grid { grid-template-columns: 1fr; }
    .itcjobs-v1-specialism-block { grid-column: auto; }
    .itcjobs-v1-facts { grid-template-columns: 1fr 1fr; }
    .itcjobs-v1-card-main { padding: 18px 16px 14px 20px; }
    .itcjobs-v1-card-foot { padding: 13px 16px 14px 20px; }
    .itcjobs-v1-detail-line { grid-template-columns: 82px minmax(0, 1fr); }
    .itcjobs-v1-action { flex: 1 1 auto; text-align: center; }
    .itcjobs-v1-view { width: 100%; text-align: center; }
    .itcjobs-v1-modal { padding: 10px; }
}


/* ========================================================================== 
   V3 DIRECTORY VIEW — smart, modern and contractor-first
   ========================================================================== */
.itcjobs-v1-app {
    --itcjobs-green:#2c6128;
    --itcjobs-green-dark:#1f4d1c;
    --itcjobs-ink:#172119;
    --itcjobs-text:#3e4940;
    --itcjobs-muted:#6e786f;
    --itcjobs-line:#dce5dc;
    --itcjobs-soft:#f4f7f4;
    max-width:1180px;
    margin:0 auto;
}
.itcjobs-v3-eyebrow {
    display:block;
    margin:0 0 8px;
    color:#2c6128;
    font-size:12px;
    font-weight:900;
    letter-spacing:.105em;
    text-transform:uppercase;
}
.itcjobs-v1-header {
    align-items:center;
    margin:10px 0 24px;
}
.itcjobs-v1-header h1 {
    margin-bottom:8px;
    color:#172119;
    font-size:clamp(34px,4.2vw,49px);
    letter-spacing:-.045em;
}
.itcjobs-v1-header-copy {
    max-width:790px;
    color:#59655c;
    font-size:16px;
}
.itcjobs-v1-live-pill {
    min-width:132px;
    padding:13px 16px;
    border:1px solid #d3e1d2;
    border-radius:999px;
    background:#f5faf4;
    color:#2d5130;
    box-shadow:none;
}
.itcjobs-v1-live-pill strong { font-size:17px; }

.itcjobs-v1-search-panel {
    z-index:1;
    margin-bottom:22px;
    padding:22px;
    border:0;
    border-radius:20px;
    background:
        radial-gradient(circle at 100% 0%,rgba(101,156,94,.23),transparent 34%),
        linear-gradient(135deg,#17231a 0%,#203525 62%,#2a4a2d 100%);
    box-shadow:0 18px 42px rgba(22,43,24,.17);
}
.itcjobs-v3-search-heading {
    display:flex;
    align-items:baseline;
    gap:12px;
    margin:0 0 14px;
    color:#fff;
}
.itcjobs-v3-search-heading span {
    color:#a9caa6;
    font-size:11px;
    font-weight:900;
    letter-spacing:.09em;
    text-transform:uppercase;
}
.itcjobs-v3-search-heading strong { font-size:18px; letter-spacing:-.01em; }
.itcjobs-v1-search-row { grid-template-columns:minmax(300px,1fr) 124px; }
.itcjobs-v1-search-input {
    min-height:58px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:13px;
    box-shadow:0 8px 22px rgba(0,0,0,.12);
}
.itcjobs-v1-search-input:focus { border-color:#8fc58a; box-shadow:0 0 0 4px rgba(143,197,138,.18),0 8px 22px rgba(0,0,0,.12); }
.itcjobs-v1-filter-toggle {
    min-height:56px;
    border:1px solid rgba(255,255,255,.30);
    background:rgba(255,255,255,.08);
    color:#fff;
}
.itcjobs-v1-filter-toggle:hover,
.itcjobs-v1-filter-toggle[aria-expanded="true"] { border-color:#91bd8d; background:rgba(255,255,255,.15); color:#fff; }
.itcjobs-v1-primary-filters { margin-top:14px; gap:8px; }
.itcjobs-v1-filter-chip {
    min-height:37px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.07);
    color:#e8efe8;
    font-weight:780;
}
.itcjobs-v1-filter-chip:hover { border-color:rgba(255,255,255,.40); background:rgba(255,255,255,.12); }
.itcjobs-v1-filter-chip.is-active { border-color:#9bc996; background:#fff; color:#224b24; }
.itcjobs-v1-interpretation { color:#cad7cb; }
.itcjobs-v1-interpretation strong { color:#fff; }
.itcjobs-v1-filter-panel {
    margin-top:18px;
    padding:18px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:15px;
    background:#fff;
    box-shadow:0 12px 26px rgba(0,0,0,.12);
}
.itcjobs-v1-field label,.itcjobs-v1-filter-group-title { color:#334236; }
.itcjobs-v1-check { border-radius:999px; }
.itcjobs-v1-filter-foot { color:#677168; }
.itcjobs-v1-active-filters { margin-top:13px; }
.itcjobs-v1-active-token { border-color:rgba(255,255,255,.22); background:rgba(255,255,255,.10); color:#fff; }
.itcjobs-v1-active-token button { background:rgba(255,255,255,.16); color:#fff; }

.itcjobs-v1-results-toolbar {
    margin:24px 0 14px;
    padding:0 2px;
}
.itcjobs-v1-results-summary { color:#5b675e; }
.itcjobs-v1-toolbar-actions {
    padding:5px;
    border:1px solid #dce5dc;
    border-radius:12px;
    background:#f7f9f7;
}
.itcjobs-v1-mini-button,.itcjobs-v1-sort {
    border-color:transparent;
    background:transparent;
    border-radius:8px;
}
.itcjobs-v1-mini-button:hover,.itcjobs-v1-mini-button.is-active { border-color:#d1dfd0; background:#fff; }
.itcjobs-v1-sort { background:#fff; border:1px solid #d8e2d8; }

.itcjobs-v1-list { gap:15px; }
.itcjobs-v1-card {
    border:1px solid #dbe4db;
    border-radius:19px;
    box-shadow:0 8px 24px rgba(26,49,28,.06);
    background:linear-gradient(180deg,#fff 0%,#fdfefd 100%);
}
.itcjobs-v1-card::before { width:6px; background:linear-gradient(180deg,#2c6128,#6da165); }
.itcjobs-v1-card[data-ir35="inside"]::before { background:linear-gradient(180deg,#4d5750,#88918b); }
.itcjobs-v1-card:hover { transform:translateY(-2px); border-color:#b8cbb8; box-shadow:0 16px 36px rgba(26,49,28,.11); }
.itcjobs-v1-card-main { padding:24px 25px 18px 29px; }
.itcjobs-v1-card-head { gap:24px; }
.itcjobs-v1-card h2 { margin-bottom:5px; color:#18231a; font-size:clamp(21px,2.2vw,27px); }
.itcjobs-v3-org {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    margin:0 0 11px;
    color:#657067;
    font-size:12.5px;
}
.itcjobs-v3-org strong { color:#3c493f; }
.itcjobs-v3-org span::before { content:"•"; margin-right:8px; color:#9ca59d; }
.itcjobs-v1-badge { min-height:26px; padding:5px 9px; border:1px solid transparent; }
.itcjobs-v1-badge-outside { border-color:#d7ead4; }
.itcjobs-v1-badge-inside { border-color:#dce2dc; }
.itcjobs-v1-rate {
    min-width:205px;
    padding:13px 15px;
    border:1px solid #d5e2d4;
    border-radius:14px;
    background:linear-gradient(145deg,#f3f9f2,#fff);
    text-align:left;
}
.itcjobs-v1-rate span {
    display:block;
    margin-bottom:3px;
    color:#758177;
    font-size:10px;
    font-weight:900;
    letter-spacing:.07em;
    text-transform:uppercase;
}
.itcjobs-v1-rate strong { display:block; color:#234b25; font-size:18px; line-height:1.25; }
.itcjobs-v1-facts {
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:0;
    margin-top:18px;
    border:1px solid #e1e8e1;
    border-radius:13px;
    background:#f7f9f7;
    overflow:hidden;
}
.itcjobs-v1-fact {
    padding:13px 15px;
    border:0;
    border-right:1px solid #e1e8e1;
    border-radius:0;
    background:transparent;
}
.itcjobs-v1-fact:last-child { border-right:0; }
.itcjobs-v1-fact span { margin-bottom:5px; font-size:9.8px; }
.itcjobs-v1-fact strong { font-size:13.5px; }
.itcjobs-v1-detail-lines {
    gap:10px;
    margin-top:17px;
    padding:0 2px;
}
.itcjobs-v1-detail-line { grid-template-columns:94px minmax(0,1fr); }
.itcjobs-v1-detail-line > strong { color:#344338; font-size:12.5px; }
.itcjobs-v1-skill { border-radius:999px; padding:6px 10px; background:#f2f6f2; }
.itcjobs-v1-card-foot {
    padding:14px 22px 15px 29px;
    background:#f7f9f7;
}
.itcjobs-v1-source span {
    display:block;
    margin-bottom:2px;
    color:#889189;
    font-size:9.8px;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;
}
.itcjobs-v1-source strong { font-size:12.5px; }
.itcjobs-v1-action {
    min-height:38px;
    padding:8px 12px;
    border-radius:9px;
    background:#fff;
}
.itcjobs-v1-view {
    min-height:40px;
    padding:10px 16px;
    border-radius:10px;
    box-shadow:0 7px 16px rgba(44,97,40,.16);
}
.itcjobs-v3-more { position:relative; }
.itcjobs-v3-more summary {
    display:flex;
    align-items:center;
    min-height:38px;
    padding:8px 12px;
    border:1px solid #d5ded5;
    border-radius:9px;
    background:#fff;
    color:#4a554c;
    font-size:12.5px;
    font-weight:800;
    cursor:pointer;
    list-style:none;
}
.itcjobs-v3-more summary::-webkit-details-marker { display:none; }
.itcjobs-v3-more summary::after { content:"▾"; margin-left:7px; font-size:10px; }
.itcjobs-v1-benchmark-link{display:block;width:100%;text-decoration:none;text-align:left;color:#245520!important;background:#f3f8f2!important;border-color:#c7d9c4!important}.itcjobs-v1-benchmark-link:hover{background:#eaf3e8!important}

.itcjobs-v3-more-menu {
    position:absolute;
    right:0;
    bottom:calc(100% + 8px);
    z-index:25;
    display:grid;
    min-width:175px;
    padding:6px;
    border:1px solid #d7e0d7;
    border-radius:11px;
    background:#fff;
    box-shadow:0 14px 34px rgba(24,43,25,.18);
}
.itcjobs-v3-more-menu .itcjobs-v1-action { width:100%; border:0; text-align:left; }
.itcjobs-v1-load { border-radius:999px; min-width:260px; box-shadow:0 8px 20px rgba(31,77,28,.07); }
.itcjobs-v1-empty { border-radius:18px; }

@media(max-width:980px){
    .itcjobs-v1-facts{grid-template-columns:repeat(2,minmax(0,1fr))}
    .itcjobs-v1-fact:nth-child(2){border-right:0}
    .itcjobs-v1-fact:nth-child(-n+2){border-bottom:1px solid #e1e8e1}
}
@media(max-width:760px){
    .itcjobs-v1-search-panel{padding:18px;border-radius:17px}
    .itcjobs-v3-search-heading{display:block}
    .itcjobs-v3-search-heading span{display:block;margin-bottom:4px}
    .itcjobs-v1-toolbar-actions{padding:4px}
    .itcjobs-v1-card-main{padding:21px 18px 16px 23px}
    .itcjobs-v1-rate{width:100%;min-width:0}
    .itcjobs-v1-card-foot{padding:14px 18px 15px 23px}
}
@media(max-width:540px){
    .itcjobs-v1-header h1{font-size:34px}
    .itcjobs-v1-primary-filters{display:grid;grid-template-columns:1fr 1fr}
    .itcjobs-v1-filter-chip{width:100%;text-align:center}
    .itcjobs-v1-facts{grid-template-columns:1fr}
    .itcjobs-v1-fact{border-right:0!important;border-bottom:1px solid #e1e8e1!important}
    .itcjobs-v1-fact:last-child{border-bottom:0!important}
    .itcjobs-v1-detail-line{grid-template-columns:1fr;gap:4px}
    .itcjobs-v1-actions{width:100%}
    .itcjobs-v1-action,.itcjobs-v3-more{flex:1 1 auto}
    .itcjobs-v3-more summary{justify-content:center}
    .itcjobs-v1-view{width:100%;text-align:center}
}

/* ========================================================================== 
   ITC Contract Jobs V4 — smart, premium directory interface
   Purpose: create a modern contractor-first search and decision experience.
   ========================================================================== */
.itcjobs-v1-app {
    --itcj4-green: #2c6128;
    --itcj4-green-dark: #173b1a;
    --itcj4-green-soft: #eef6ec;
    --itcj4-ink: #111827;
    --itcj4-muted: #667268;
    --itcj4-line: #dfe7df;
    --itcj4-surface: #f6f9f6;
    padding-bottom: 42px;
}

.itcjobs-v1-header {
    align-items: end !important;
    gap: 28px !important;
    padding: 24px 0 26px !important;
}

.itcjobs-v3-eyebrow {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px !important;
    padding: 7px 10px;
    border: 1px solid #d9e7d7;
    border-radius: 999px;
    background: #f1f7ef;
    color: var(--itcj4-green) !important;
    font-size: 10.5px !important;
    font-weight: 900 !important;
    letter-spacing: .11em !important;
}

.itcjobs-v3-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--itcj4-green);
    box-shadow: 0 0 0 4px rgba(44,97,40,.10);
}

.itcjobs-v1-header h1 {
    margin: 0 0 11px !important;
    color: var(--itcj4-ink) !important;
    font-size: clamp(39px, 5vw, 58px) !important;
    line-height: 1 !important;
    letter-spacing: -.05em !important;
}

.itcjobs-v1-header-copy {
    max-width: 760px !important;
    margin: 0 !important;
    color: #5f6c62 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}

.itcjobs-v4-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(96px, 1fr));
    gap: 8px;
    min-width: 330px;
}

.itcjobs-v4-metrics > span {
    display: flex;
    min-height: 78px;
    flex-direction: column;
    justify-content: center;
    padding: 13px 15px;
    border: 1px solid var(--itcj4-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(25,54,28,.05);
}

.itcjobs-v4-metrics strong {
    color: var(--itcj4-green-dark);
    font-size: 23px;
    line-height: 1;
}

.itcjobs-v4-metrics small {
    margin-top: 7px;
    color: #738078;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.itcjobs-v1-search-panel {
    position: relative;
    overflow: visible !important;
    padding: 18px !important;
    border: 1px solid var(--itcj4-line) !important;
    border-radius: 23px !important;
    background: #fff !important;
    box-shadow: 0 18px 48px rgba(25,54,28,.085) !important;
}

.itcjobs-v3-search-heading {
    display: flex !important;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px !important;
}

.itcjobs-v3-search-heading span {
    color: var(--itcj4-green) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase;
}

.itcjobs-v3-search-heading strong {
    color: var(--itcj4-ink) !important;
    font-size: 18px !important;
    letter-spacing: -.015em !important;
}

.itcjobs-v1-search-row {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
}

.itcjobs-v1-search-wrap {
    min-height: 64px !important;
    border: 1px solid #cfdacf !important;
    border-radius: 16px !important;
    background: #fbfdfb !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 7px 18px rgba(25,54,28,.045) !important;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.itcjobs-v1-search-wrap:focus-within {
    border-color: #6e9b6b !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(44,97,40,.10), 0 10px 24px rgba(25,54,28,.06) !important;
}

.itcjobs-v1-search-input {
    min-height: 62px !important;
    padding-left: 54px !important;
    color: var(--itcj4-ink) !important;
    font-size: 16.5px !important;
}

.itcjobs-v1-search-icon {
    left: 19px !important;
    color: #617063 !important;
}

.itcjobs-v1-filter-toggle {
    min-width: 138px !important;
    min-height: 64px !important;
    padding: 0 20px !important;
    border: 1px solid var(--itcj4-green-dark) !important;
    border-radius: 16px !important;
    background: var(--itcj4-green-dark) !important;
    color: #fff !important;
    box-shadow: 0 9px 22px rgba(23,59,26,.18);
    font-weight: 850 !important;
}

.itcjobs-v1-filter-toggle::after {
    content: "  +";
    font-size: 15px;
}

.itcjobs-v1-primary-filters {
    gap: 8px !important;
    margin-top: 14px !important;
    padding-top: 14px !important;
    border-top: 1px solid #edf1ed;
}

.itcjobs-v1-filter-chip {
    min-height: 38px !important;
    padding: 8px 13px !important;
    border: 1px solid #dce4dc !important;
    border-radius: 999px !important;
    background: #f5f8f5 !important;
    color: #465349 !important;
    box-shadow: none !important;
    font-size: 12.5px !important;
}

.itcjobs-v1-filter-chip:hover {
    border-color: #adc4aa !important;
    background: #eef5ec !important;
}

.itcjobs-v1-filter-chip.is-active {
    border-color: var(--itcj4-green) !important;
    background: var(--itcj4-green) !important;
    color: #fff !important;
}

.itcjobs-v1-interpretation:not(:empty) {
    margin: 14px 0 0 !important;
    padding: 11px 13px !important;
    border: 1px solid #d9e7d7;
    border-radius: 12px;
    background: #f3f8f2;
    color: #3f5a41 !important;
    font-size: 12.5px !important;
}

.itcjobs-v1-filter-panel {
    display: block !important;
    position: fixed !important;
    z-index: 10050 !important;
    top: 0 !important;
    right: 0 !important;
    width: min(520px, 100vw) !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 24px 28px !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: -24px 0 60px rgba(17,24,39,.22) !important;
    transform: translateX(105%);
    transition: transform .25s ease;
}

.itcjobs-v1-filter-panel.is-open {
    transform: translateX(0);
}

.itcjobs-v4-filter-head {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -24px 22px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid #e8ede8;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
}

.itcjobs-v4-filter-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--itcj4-green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.itcjobs-v4-filter-head strong {
    color: var(--itcj4-ink);
    font-size: 24px;
    letter-spacing: -.025em;
}

.itcjobs-v4-filter-head button {
    width: 42px;
    height: 42px;
    border: 1px solid #dce4dc;
    border-radius: 50%;
    background: #f7f9f7;
    color: #39483c;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.itcjobs-v4-filter-backdrop {
    position: fixed;
    z-index: 10040;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(12,22,14,.48);
    backdrop-filter: blur(2px);
}

.itcjobs-v4-filter-backdrop[hidden] {
    display: none !important;
}

body.itcjobs-v4-filter-open {
    overflow: hidden;
}

.itcjobs-v1-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 14px !important;
}

.itcjobs-v1-field label,
.itcjobs-v1-filter-group-title {
    color: #58635a !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .075em !important;
}

.itcjobs-v1-select {
    min-height: 48px !important;
    border: 1px solid #d5dfd5 !important;
    border-radius: 12px !important;
    background-color: #fbfcfb !important;
    color: #2f3d32 !important;
}

.itcjobs-v1-check {
    border: 1px solid #dce4dc !important;
    border-radius: 12px !important;
    background: #f8faf8 !important;
}

.itcjobs-v1-check:has(input:checked) {
    border-color: #91b28e !important;
    background: #eef6ec !important;
    color: #294c2b !important;
}

.itcjobs-v1-specialism-block {
    grid-column: 1 / -1 !important;
}

.itcjobs-v1-filter-foot {
    position: sticky;
    bottom: -28px;
    margin: 24px -24px -28px !important;
    padding: 16px 24px 22px !important;
    border-top: 1px solid #e7ece7 !important;
    background: #fff !important;
}

.itcjobs-v1-results-toolbar {
    margin: 26px 0 14px !important;
    padding: 0 2px !important;
}

.itcjobs-v1-results-summary {
    color: #5d685f !important;
    font-size: 13px !important;
}

.itcjobs-v1-toolbar-actions {
    padding: 5px !important;
    border: 1px solid #e0e7e0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(25,54,28,.04);
}

.itcjobs-v1-mini-button,
.itcjobs-v1-sort {
    min-height: 40px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: transparent !important;
}

.itcjobs-v1-mini-button:hover,
.itcjobs-v1-mini-button.is-active {
    background: #eef5ec !important;
    color: #2b542c !important;
}

.itcjobs-v1-sort {
    border: 1px solid #dfe6df !important;
    background: #fafcfa !important;
}

.itcjobs-v1-list {
    gap: 16px !important;
}

.itcjobs-v1-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--itcj4-line) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 12px 34px rgba(25,54,28,.07) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.itcjobs-v1-card::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--itcj4-green);
}

.itcjobs-v1-card[data-ir35="inside"]::before {
    background: #6f7971;
}

.itcjobs-v1-card:hover {
    transform: translateY(-3px);
    border-color: #c9d8c8 !important;
    box-shadow: 0 19px 44px rgba(25,54,28,.12) !important;
}

.itcjobs-v1-card-main {
    padding: 24px 26px 20px !important;
}

.itcjobs-v1-card-head {
    gap: 22px !important;
}

.itcjobs-v4-card-kicker {
    display: block;
    margin-bottom: 7px;
    color: #7d887f;
    font-size: 9.5px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.itcjobs-v1-title-wrap h2 {
    margin: 0 !important;
    font-size: clamp(24px, 2.7vw, 31px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.032em !important;
}

.itcjobs-v1-title-wrap h2 a {
    color: var(--itcj4-ink) !important;
    text-decoration: none !important;
}

.itcjobs-v1-title-wrap h2 a:hover {
    color: var(--itcj4-green) !important;
}

.itcjobs-v3-org {
    margin: 8px 0 13px !important;
    color: #748078 !important;
    font-size: 12.5px !important;
}

.itcjobs-v3-org strong {
    color: #38483c !important;
}

.itcjobs-v1-badges {
    gap: 7px !important;
}

.itcjobs-v1-badge {
    padding: 7px 10px !important;
    border: 1px solid #dce5dc !important;
    border-radius: 999px !important;
    background: #f5f8f5 !important;
    color: #4d5a50 !important;
    font-size: 10.5px !important;
}

.itcjobs-v1-badge-outside {
    border-color: #cfe3cb !important;
    background: #eaf5e7 !important;
    color: #245523 !important;
}

.itcjobs-v1-badge-inside {
    border-color: #d8deda !important;
    background: #f0f2f0 !important;
    color: #505a52 !important;
}

.itcjobs-v1-rate {
    min-width: 225px !important;
    padding: 16px 18px !important;
    border: 1px solid #d6e2d5 !important;
    border-radius: 17px !important;
    background: linear-gradient(180deg, #f5faf3 0%, #edf6eb 100%) !important;
    text-align: left !important;
}

.itcjobs-v1-rate span {
    margin-bottom: 5px !important;
    color: #7c887e !important;
    font-size: 9.5px !important;
    letter-spacing: .08em !important;
}

.itcjobs-v1-rate strong {
    color: var(--itcj4-green-dark) !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
}

.itcjobs-v1-facts {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    overflow: hidden;
    margin-top: 17px !important;
    border: 1px solid #e2e8e2 !important;
    border-radius: 15px !important;
    background: #f8faf8 !important;
}

.itcjobs-v1-fact {
    min-height: 82px;
    padding: 14px 15px !important;
    border: 0 !important;
    border-right: 1px solid #e2e8e2 !important;
    background: transparent !important;
}

.itcjobs-v1-fact:last-child {
    border-right: 0 !important;
}

.itcjobs-v1-fact span {
    margin-bottom: 7px !important;
    color: #7c877e !important;
    font-size: 9.5px !important;
    font-weight: 900 !important;
    letter-spacing: .07em !important;
}

.itcjobs-v1-fact strong {
    color: #2e3d31 !important;
    font-size: 13.5px !important;
    line-height: 1.35 !important;
}

.itcjobs-v1-detail-lines {
    display: grid !important;
    gap: 10px !important;
    margin-top: 17px !important;
}

.itcjobs-v1-detail-line {
    align-items: center !important;
}

.itcjobs-v1-detail-line strong {
    min-width: 92px;
    color: #68736b !important;
    font-size: 11px !important;
}

.itcjobs-v1-detail-line > span:not(.itcjobs-v1-skill-list) {
    color: #344238 !important;
    font-weight: 750;
}

.itcjobs-v1-skill {
    padding: 7px 10px !important;
    border: 1px solid #d9e4d9 !important;
    border-radius: 999px !important;
    background: #f2f6f1 !important;
    color: #465448 !important;
    font-size: 11px !important;
}

.itcjobs-v1-card-foot {
    padding: 15px 22px 15px 26px !important;
    border-top: 1px solid #e7ece7 !important;
    background: #fbfcfb !important;
}

.itcjobs-v1-source span {
    color: #859087 !important;
    font-size: 9px !important;
    letter-spacing: .09em !important;
}

.itcjobs-v1-source strong {
    color: #435047 !important;
    font-size: 11.5px !important;
}

.itcjobs-v1-actions {
    gap: 8px !important;
}

.itcjobs-v1-action,
.itcjobs-v3-more summary {
    min-height: 42px !important;
    padding: 0 14px !important;
    border: 1px solid #d8e1d8 !important;
    border-radius: 11px !important;
    background: #fff !important;
    color: #455248 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.itcjobs-v1-action:hover,
.itcjobs-v1-action.is-active,
.itcjobs-v3-more summary:hover {
    border-color: #96b393 !important;
    background: #eef5ec !important;
    color: #2d542f !important;
}

.itcjobs-v1-view {
    min-height: 42px !important;
    padding: 0 18px !important;
    border-radius: 11px !important;
    background: var(--itcj4-green) !important;
    box-shadow: 0 8px 18px rgba(44,97,40,.18);
    font-size: 12px !important;
}

.itcjobs-v1-view::after {
    content: " →";
}

.itcjobs-v1-load {
    min-width: 230px;
    padding: 14px 22px !important;
    border-radius: 13px !important;
    box-shadow: 0 9px 22px rgba(44,97,40,.15);
}

.itcjobs-v1-autocomplete {
    top: calc(100% + 8px) !important;
    overflow: hidden;
    border: 1px solid #dce5dc !important;
    border-radius: 15px !important;
    background: #fff !important;
    box-shadow: 0 18px 42px rgba(17,24,39,.16) !important;
}

.itcjobs-v1-suggestion {
    padding: 13px 15px !important;
    border-bottom: 1px solid #edf1ed !important;
}

.itcjobs-v1-suggestion:hover,
.itcjobs-v1-suggestion.is-active {
    background: #f0f6ef !important;
}

@media (max-width: 980px) {
    .itcjobs-v1-header {
        grid-template-columns: 1fr !important;
    }
    .itcjobs-v4-metrics {
        min-width: 0;
        width: 100%;
    }
    .itcjobs-v1-card-head {
        grid-template-columns: 1fr !important;
    }
    .itcjobs-v1-rate {
        min-width: 0 !important;
        width: fit-content;
    }
    .itcjobs-v1-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .itcjobs-v1-fact:nth-child(2) {
        border-right: 0 !important;
    }
    .itcjobs-v1-fact:nth-child(-n+2) {
        border-bottom: 1px solid #e2e8e2 !important;
    }
}

@media (max-width: 720px) {
    .itcjobs-v1-header h1 {
        font-size: 38px !important;
    }
    .itcjobs-v4-metrics {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .itcjobs-v4-metrics > span {
        min-height: 68px;
        padding: 10px;
    }
    .itcjobs-v4-metrics strong {
        font-size: 19px;
    }
    .itcjobs-v4-metrics small {
        font-size: 8.5px;
    }
    .itcjobs-v1-search-panel {
        padding: 14px !important;
        border-radius: 18px !important;
    }
    .itcjobs-v3-search-heading {
        display: block !important;
    }
    .itcjobs-v3-search-heading span {
        display: block;
        margin-bottom: 4px;
    }
    .itcjobs-v1-search-row {
        grid-template-columns: 1fr !important;
    }
    .itcjobs-v1-filter-toggle {
        min-height: 50px !important;
    }
    .itcjobs-v1-filter-panel {
        width: 100vw !important;
    }
    .itcjobs-v1-filter-grid {
        grid-template-columns: 1fr !important;
    }
    .itcjobs-v1-specialism-block {
        grid-column: auto !important;
    }
    .itcjobs-v1-card-main {
        padding: 20px 19px 17px !important;
    }
    .itcjobs-v1-title-wrap h2 {
        font-size: 24px !important;
    }
    .itcjobs-v1-rate {
        width: 100%;
    }
    .itcjobs-v1-facts {
        grid-template-columns: 1fr !important;
    }
    .itcjobs-v1-fact {
        border-right: 0 !important;
        border-bottom: 1px solid #e2e8e2 !important;
    }
    .itcjobs-v1-fact:last-child {
        border-bottom: 0 !important;
    }
    .itcjobs-v1-card-foot {
        align-items: stretch !important;
        padding: 15px 18px !important;
    }
    .itcjobs-v1-actions {
        width: 100%;
    }
    .itcjobs-v1-view {
        flex: 1;
        justify-content: center;
    }
}


/* ==========================================================================
   ITC JOBS V5 — DOWNWARD ADVANCED FILTERS + PRECISE BUTTON ALIGNMENT
   These final scoped rules intentionally override the earlier drawer layout.
   ========================================================================== */

/* Keep all important button labels optically centred across browsers. */
.itcjobs-v1-filter-toggle,
.itcjobs-v1-filter-chip,
.itcjobs-v1-mini-button,
.itcjobs-v1-action,
.itcjobs-v1-view,
.itcjobs-v1-load,
.itcjobs-v1-reset,
.itcjobs-v3-more summary,
.itcjobs-v4-filter-head button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    line-height: 1.15 !important;
    vertical-align: middle;
}

/* Use a restrained chevron rather than a text character beside All filters. */
.itcjobs-v1-filter-toggle::after {
    content: "" !important;
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: -4px 0 0 3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .18s ease, margin .18s ease;
}

.itcjobs-v1-filter-toggle[aria-expanded="true"]::after {
    margin-top: 4px;
    transform: rotate(225deg);
}

/* Advanced filters now open downwards inside the search card. */
.itcjobs-v1-filter-panel {
    display: none !important;
    position: static !important;
    z-index: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 18px 0 0 !important;
    padding: 20px !important;
    overflow: visible !important;
    border: 1px solid #dfe7df !important;
    border-radius: 17px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 24px rgba(25,54,28,.055) !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
}

.itcjobs-v1-filter-panel.is-open {
    display: block !important;
}

/* The old side-drawer backdrop is intentionally disabled in V5. */
.itcjobs-v4-filter-backdrop {
    display: none !important;
}

body.itcjobs-v4-filter-open {
    overflow: auto !important;
}

/* Compact heading keeps the expanded panel visually connected to search. */
.itcjobs-v4-filter-head {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px;
    margin: 0 0 18px !important;
    padding: 0 0 15px !important;
    border-bottom: 1px solid #e6ece6 !important;
    background: transparent !important;
    backdrop-filter: none !important;
}

.itcjobs-v4-filter-head span {
    margin-bottom: 3px !important;
    font-size: 9.5px !important;
}

.itcjobs-v4-filter-head strong {
    font-size: 19px !important;
    line-height: 1.2 !important;
}

.itcjobs-v4-filter-head button {
    flex: 0 0 38px;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    font-size: 21px !important;
}

/* Four disciplined columns on wide screens, then two and one responsively. */
.itcjobs-v1-filter-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: start !important;
    gap: 18px 16px !important;
}

.itcjobs-v1-field {
    min-width: 0;
}

.itcjobs-v1-field label,
.itcjobs-v1-filter-group-title {
    min-height: 14px;
    margin-bottom: 8px !important;
    line-height: 1.35 !important;
}

.itcjobs-v1-select {
    width: 100% !important;
    min-height: 48px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-size: 13.5px !important;
}

/* Listing-detail choices align like proper controls, not floating pills. */
.itcjobs-v1-field .itcjobs-v1-checks {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
}

.itcjobs-v1-field .itcjobs-v1-check {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: flex-start !important;
    border-radius: 11px !important;
}

.itcjobs-v1-specialism-block {
    grid-column: 1 / -1 !important;
    padding-top: 2px !important;
}

.itcjobs-v1-specialism-block .itcjobs-v1-checks {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px !important;
}

.itcjobs-v1-specialism-block .itcjobs-v1-check {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: flex-start !important;
    border-radius: 11px !important;
}

.itcjobs-v1-filter-foot {
    position: static !important;
    margin: 18px 0 0 !important;
    padding: 15px 0 0 !important;
    border-top: 1px solid #e6ece6 !important;
    background: transparent !important;
}

/* Keep the arrow inside View contract aligned with its label. */
.itcjobs-v1-view::after {
    content: "→" !important;
    display: inline-block;
    margin-left: 1px;
    line-height: 1;
}

@media (max-width: 1080px) {
    .itcjobs-v1-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .itcjobs-v1-specialism-block .itcjobs-v1-checks {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .itcjobs-v1-filter-panel {
        width: 100% !important;
        margin-top: 14px !important;
        padding: 16px !important;
        border-radius: 14px !important;
    }
    .itcjobs-v4-filter-head {
        margin-bottom: 15px !important;
    }
    .itcjobs-v1-filter-grid,
    .itcjobs-v1-specialism-block .itcjobs-v1-checks {
        grid-template-columns: 1fr !important;
    }
    .itcjobs-v1-filter-foot {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
    .itcjobs-v1-reset {
        min-height: 40px;
        padding: 0 !important;
    }
}

@media (max-width: 640px) {
.itcjob-v1-ad, .itcjobs-v1-ad { padding: 8px 8px 10px; }
.itcjob-v1-ad-label, .itcjobs-v1-ad-label { margin-bottom: 6px; }
}

.itcjobs-v12-header-links{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.itcjobs-v12-header-links a{display:inline-flex;align-items:center;min-height:40px;padding:0 13px;border:1px solid #cad8c8;border-radius:10px;background:#fff;color:#285b25;text-decoration:none;font-size:13px;font-weight:820}.itcjobs-v12-header-links a:hover{background:#f0f6ef;border-color:#9dbb99}.itcjobs-v12-header-links a:last-child{background:#17391a;border-color:#17391a;color:#fff}.itcjobs-v12-header-links a:last-child:hover{background:#244f27}.itcjobs-v39-directory-share{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:0 13px;border:1px solid #cad8c8;border-radius:10px;background:#f5f8f4;color:#285b25;font:inherit;font-size:13px;font-weight:820;cursor:pointer}.itcjobs-v39-directory-share:hover,.itcjobs-v39-directory-share:focus-visible{background:#edf5eb;border-color:#8fb48b;outline:none}.itcjobs-v39-directory-share-status{display:block;margin-top:7px;color:#667268;font-size:11.5px}.itcjobs-v39-directory-share-status:empty{display:none}
.itcjobs-v1-search-row{grid-template-columns:minmax(280px,1fr) 148px!important}.itcjobs-alert-flash-v10{max-width:100%;border-radius:14px;padding:14px 17px;margin:0 0 18px;font-weight:750}.itcjobs-alert-flash-v10.is-success{background:#edf7eb;border:1px solid #c7e0c2;color:#245520}.itcjobs-alert-flash-v10.is-error{background:#fff1f1;border:1px solid #efcaca;color:#8b2424}.itcjobs-alert-centre-v10{display:flex;align-items:center;justify-content:space-between;gap:24px;border:1px solid #d8e4d6;border-radius:18px;background:linear-gradient(135deg,#f7faf6,#edf5eb);padding:19px 21px;margin:20px 0 18px}.itcjobs-alert-centre-copy-v10{display:flex;align-items:center;gap:14px}.itcjobs-alert-icon-v10{width:48px;height:48px;border-radius:14px;background:#17391a;color:#fff;display:grid!important;place-items:center;align-content:center;justify-content:center;flex:none;line-height:0}.itcjobs-alert-icon-v10 svg{display:block;width:23px;height:23px;transform:translateY(1px)}.itcjobs-alert-centre-copy-v10>div>span{display:block;color:#2c6128;font-size:11px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}.itcjobs-alert-centre-copy-v10 strong{display:block;color:#101828;font-size:18px;margin-top:2px}.itcjobs-alert-centre-copy-v10 p{margin:4px 0 0;color:#607067;font-size:13.5px}.itcjobs-alert-centre-actions-v10{display:flex;gap:9px;flex:none}.itcjobs-alert-open-v10,.itcjobs-alert-manage-v10{min-height:44px;border-radius:11px;padding:0 15px;font:inherit;font-weight:850;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap}.itcjobs-alert-open-v10{background:#2c6128;border:1px solid #2c6128;color:#fff}.itcjobs-alert-manage-v10{background:#fff;border:1px solid #b9cfb6;color:#245520}.itcjobs-alert-modal-v10{position:fixed;inset:0;z-index:100000;background:rgba(13,24,15,.55);display:none;align-items:center;justify-content:center;padding:20px;backdrop-filter:blur(4px)}.itcjobs-alert-modal-v10.is-open{display:flex}.itcjobs-alert-card-v10{width:min(720px,100%);max-height:calc(100vh - 40px);overflow:auto;background:#fff;border-radius:22px;border:1px solid #dbe5da;box-shadow:0 30px 90px rgba(10,28,13,.24);padding:26px}.itcjobs-alert-head-v10{display:flex;justify-content:space-between;gap:18px;align-items:flex-start}.itcjobs-alert-head-v10 span{display:block;color:#2c6128;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.itcjobs-alert-head-v10 h2{font-size:28px;line-height:1.15;margin:5px 0 0;color:#101828}.itcjobs-alert-close-v10{border:1px solid #d6e0d5;background:#fff;width:40px;height:40px;border-radius:50%;font-size:25px;line-height:1;cursor:pointer;color:#445149}.itcjobs-alert-intro-v10{color:#5e6b62;line-height:1.55;margin:14px 0}.itcjobs-alert-question-v10{font-size:13px;font-weight:900;color:#314238;margin:18px 0 8px}.itcjobs-alert-summary-v10{background:#f4f8f3;border:1px solid #dbe6d9;border-radius:13px;padding:14px 15px;color:#304336;font-weight:750}.itcjobs-alert-edit-v10{border:0;background:transparent;color:#2c6128;font-weight:800;padding:8px 0;cursor:pointer}.itcjobs-alert-frequency-v10{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.itcjobs-alert-frequency-v10 label{display:block;border:1px solid #d5e0d3;border-radius:12px;padding:12px;cursor:pointer;background:#fff}.itcjobs-alert-frequency-v10 label:has(input:checked){border-color:#2c6128;background:#f0f7ee;box-shadow:0 0 0 2px rgba(44,97,40,.08)}.itcjobs-alert-frequency-v10 strong{display:block;margin-bottom:4px;color:#223128}.itcjobs-alert-frequency-v10 small{display:block;color:#6a766e;line-height:1.4}.itcjobs-alert-field-v10{display:grid;gap:7px;margin-top:14px}.itcjobs-alert-field-v10 label{font-size:13px;font-weight:850;color:#344239}.itcjobs-alert-field-v10 input{width:100%;border:1px solid #cfdacf;border-radius:11px;padding:12px 13px;font:inherit;outline:none}.itcjobs-alert-field-v10 input:focus{border-color:#2c6128;box-shadow:0 0 0 3px rgba(44,97,40,.12)}.itcjobs-alert-help-v15{display:block;color:#6c786f;font-size:11.5px;line-height:1.5}.itcjobs-alert-all-warning-v15{margin:10px 0 0;padding:11px 13px;border:1px solid #ead7aa;border-radius:11px;background:#fff8e9;color:#6f531b;font-size:12.5px;line-height:1.5}.itcjobs-alert-all-warning-v15[hidden]{display:none!important}.itcjobs-alert-sentence-v10{background:#17391a;color:#fff;border-radius:12px;padding:13px 15px;margin:16px 0 0;line-height:1.5}.itcjobs-alert-actions-v10{display:flex;justify-content:flex-end;gap:10px;margin-top:20px}.itcjobs-alert-cancel-v10,.itcjobs-alert-submit-v10{border-radius:10px;padding:11px 16px;font-weight:850;cursor:pointer;font:inherit}.itcjobs-alert-cancel-v10{background:#fff;border:1px solid #d3ddd2;color:#344239}.itcjobs-alert-submit-v10{background:#2c6128;border:1px solid #2c6128;color:#fff}.itcjobs-alert-hp-v10{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}@media(max-width:820px){.itcjobs-alert-centre-v10{align-items:flex-start;flex-direction:column}.itcjobs-alert-centre-actions-v10{width:100%}.itcjobs-alert-open-v10,.itcjobs-alert-manage-v10{flex:1}}@media(max-width:680px){.itcjobs-v1-search-row{grid-template-columns:1fr!important}.itcjobs-alert-centre-copy-v10{align-items:flex-start}.itcjobs-alert-centre-actions-v10{flex-direction:column}.itcjobs-alert-frequency-v10{grid-template-columns:1fr}.itcjobs-alert-card-v10{padding:21px}.itcjobs-alert-head-v10 h2{font-size:24px}}


/* ========================================================================== 
   ITC JOBS V1 — CONTRACTOR ID + FREE-SUPPORT STRIP
   Added 2026-08-08
   - Gives jobseekers a prominent route into the free Contractor ID system.
   - Keeps voluntary contributions visually secondary to the free service.
   - All selectors use unique itcjobs-claim/contribute prefixes to avoid clashes.
   ========================================================================== */
.itcjobs-v25-gateway {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 14px 0 16px;
}

.itcjobs-claim-card-v1,
.itcjobs-directory-card-v23,
.itcjobs-contribute-card-v1 {
    position: relative;
    min-width: 0;
    border-radius: 17px;
    box-sizing: border-box;
}

.itcjobs-claim-card-v1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 21px 22px;
    background: #eef6ec;
    border: 1px solid #cbdcc8;
}

.itcjobs-claim-card-v1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: #2c6128;
}

.itcjobs-claim-copy-v1 {
    min-width: 0;
    padding-left: 7px;
}

.itcjobs-claim-eyebrow-v1,
.itcjobs-contribute-eyebrow-v1 {
    display: block;
    margin: 0 0 5px;
    color: #2c6128;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.itcjobs-claim-title-v1,
.itcjobs-contribute-title-v1 {
    margin: 0;
    color: #172219;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 850;
}

.itcjobs-claim-text-v1,
.itcjobs-contribute-text-v1 {
    margin: 6px 0 0;
    color: #56635a;
    font-size: 13.5px;
    line-height: 1.55;
}

.itcjobs-claim-points-v1 {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 13px;
    margin-top: 9px;
}

.itcjobs-claim-points-v1 span {
    color: #345235;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.itcjobs-claim-points-v1 span::before {
    content: "✓";
    margin-right: 5px;
    color: #2c6128;
    font-weight: 900;
}

.itcjobs-claim-button-v1,
.itcjobs-contribute-button-v1 {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 11px;
    font: inherit;
    font-size: 13.5px;
    line-height: 1.2;
    font-weight: 850;
    text-decoration: none !important;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
}

.itcjobs-claim-button-v1 {
    background: #2c6128;
    border: 1px solid #2c6128;
    color: #ffffff !important;
    box-shadow: 0 7px 16px rgba(44, 97, 40, .14);
}

.itcjobs-claim-button-v1:hover,
.itcjobs-claim-button-v1:focus-visible {
    background: #234f20;
    border-color: #234f20;
    color: #ffffff !important;
}


/* ==========================================================================
   ITC Jobs V23 — IT Contractors Directory workflow
   --------------------------------------------------------------------------
   Adds a recruiter path into the live Contractor Directory while preserving
   all existing Jobs, Alerts, Advert, Contribution and routing functionality.
   ========================================================================== */
.itcjobs-directory-card-v23 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 21px 22px;
    border: 1px solid #d7e2d7;
    background:
        radial-gradient(circle at 100% 0%, rgba(44,97,40,.09), transparent 35%),
        #ffffff;
}

.itcjobs-directory-card-v23::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: #444444;
}

.itcjobs-directory-copy-v23 {
    min-width: 0;
    padding-left: 7px;
}

.itcjobs-directory-eyebrow-v23 {
    display: block;
    margin: 0 0 5px;
    color: #2c6128;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.itcjobs-directory-title-v23 {
    margin: 0;
    color: #172219;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 850;
}

.itcjobs-directory-text-v23 {
    margin: 6px 0 0;
    color: #56635a;
    font-size: 13.5px;
    line-height: 1.55;
}

.itcjobs-directory-points-v23 {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 13px;
    margin-top: 9px;
}

.itcjobs-directory-points-v23 span {
    color: #465249;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.itcjobs-directory-points-v23 span::before {
    content: "✓";
    margin-right: 5px;
    color: #2c6128;
    font-weight: 900;
}

.itcjobs-directory-button-v23 {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid #2c6128;
    border-radius: 11px;
    background: #ffffff;
    color: #285b25 !important;
    font: inherit;
    font-size: 13.5px;
    line-height: 1.2;
    font-weight: 850;
    text-decoration: none !important;
    white-space: nowrap;
    box-sizing: border-box;
}

.itcjobs-directory-button-v23:hover,
.itcjobs-directory-button-v23:focus-visible {
    background: #eef6ec;
    border-color: #2c6128;
    color: #214d20 !important;
}

.itcjobs-contribute-card-v1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 19px;
    background: #ffffff;
    border: 1px solid #d9e4d8;
}

.itcjobs-contribute-card-v1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: #8aa287;
}

.itcjobs-contribute-copy-v1 {
    min-width: 0;
    padding-left: 5px;
}

.itcjobs-contribute-title-v1 {
    font-size: 17px;
}

.itcjobs-contribute-text-v1 {
    margin-top: 5px;
    font-size: 12.8px;
}

.itcjobs-contribute-button-v1 {
    background: #ffffff;
    border: 1px solid #7d9d79;
    color: #285b25 !important;
}

.itcjobs-contribute-button-v1:hover,
.itcjobs-contribute-button-v1:focus-visible {
    background: #f2f7f1;
    border-color: #2c6128;
    color: #245520 !important;
}

/* Contribution modal: deliberately quiet and simple so the donation request never dominates the jobs experience. */
.itcjobs-contribute-modal-v1 {
    position: fixed;
    inset: 0;
    z-index: 100002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 24, 16, .62);
    box-sizing: border-box;
}

.itcjobs-contribute-modal-v1.is-open {
    display: flex;
}

.itcjobs-contribute-modal-card-v1 {
    position: relative;
    width: min(520px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 27px;
    border: 1px solid #d9e4d8;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(10, 28, 13, .28);
    text-align: center;
    box-sizing: border-box;
}

.itcjobs-contribute-modal-close-v1 {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid #d5dfd4;
    border-radius: 50%;
    background: #ffffff;
    color: #465348;
    font: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.itcjobs-contribute-modal-close-v1:hover,
.itcjobs-contribute-modal-close-v1:focus-visible {
    border-color: #2c6128;
    color: #2c6128;
}

.itcjobs-contribute-modal-eyebrow-v1 {
    margin: 0 0 7px;
    color: #2c6128;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.itcjobs-contribute-modal-card-v1 h2 {
    margin: 0;
    color: #152019;
    font-size: 27px;
    line-height: 1.15;
}

.itcjobs-contribute-modal-card-v1 p {
    margin: 12px auto 0;
    max-width: 450px;
    color: #5a665d;
    font-size: 14px;
    line-height: 1.65;
}

.itcjobs-contribute-qr-v1 {
    display: block;
    width: min(290px, 78vw);
    height: auto;
    margin: 20px auto 13px;
    padding: 10px;
    border: 1px solid #dce6db;
    border-radius: 14px;
    background: #ffffff;
    box-sizing: border-box;
}

.itcjobs-contribute-modal-note-v1 {
    margin-top: 0 !important;
    color: #68746b !important;
    font-size: 12px !important;
}

/* ITC contribution modal v2 — WISE + PayPal choices. */
.itcjobs-contribute-options-v2 {
    margin-top: 21px;
}

.itcjobs-contribute-method-v2 {
    padding: 18px;
    border: 1px solid #dce6db;
    border-radius: 14px;
    background: #fafcf9;
}

.itcjobs-contribute-method-label-v2 {
    display: block;
    margin-bottom: 5px;
    color: #2c6128;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
}

.itcjobs-contribute-method-v2 > strong {
    display: block;
    color: #263128;
    font-size: 16px;
    line-height: 1.35;
}

.itcjobs-contribute-method-v2 .itcjobs-contribute-qr-v1 {
    margin-top: 16px;
}

.itcjobs-contribute-divider-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 13px 0;
    color: #7a857c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.itcjobs-contribute-divider-v2::before,
.itcjobs-contribute-divider-v2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dce5dc;
}

.itcjobs-contribute-divider-v2 span {
    flex: 0 0 auto;
}

.itcjobs-contribute-method-paypal-v2 {
    background: #ffffff;
}

.itcjobs-contribute-method-copy-v2 {
    margin: 7px auto 14px !important;
    font-size: 13px !important;
}

.itcjobs-contribute-paypal-button-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #2c6128;
    border-radius: 10px;
    background: #2c6128;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 850;
}

.itcjobs-contribute-paypal-button-v2:hover,
.itcjobs-contribute-paypal-button-v2:focus-visible {
    background: #234f20;
    border-color: #234f20;
    color: #ffffff !important;
}

.itcjobs-contribute-no-obligation-v2 {
    margin-top: 17px !important;
    padding: 11px 13px;
    border-radius: 10px;
    background: #f4f8f3;
    color: #5f6d62 !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
}

.itcjobs-contribute-modal-close-text-v1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 16px;
    padding: 0 15px;
    border: 1px solid #cbd8ca;
    border-radius: 10px;
    background: #ffffff;
    color: #3f4e42;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.itcjobs-contribute-modal-close-text-v1:hover,
.itcjobs-contribute-modal-close-text-v1:focus-visible {
    border-color: #2c6128;
    color: #2c6128;
}

@media (max-width: 860px) {
    .itcjobs-claim-support-v1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .itcjobs-claim-card-v1,
    .itcjobs-directory-card-v23,
    .itcjobs-contribute-card-v1 {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 19px;
    }

    .itcjobs-claim-button-v1,
    .itcjobs-directory-button-v23,
    .itcjobs-contribute-button-v1 {
        width: 100%;
    }

    .itcjobs-contribute-modal-card-v1 {
        padding: 24px 18px 20px;
    }

    .itcjobs-contribute-modal-card-v1 h2 {
        padding: 0 25px;
        font-size: 24px;
    }
}




/* ==========================================================================
   ITC Jobs V26 — compact utilities between Search and Live Results
   --------------------------------------------------------------------------
   Important but non-search actions stay visible without creating a large gap.
   Job Alerts receives more width; voluntary Contribution stays secondary.
   ========================================================================== */
.itcjobs-v26-search-utilities{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    margin:12px 0 10px;
    align-items:stretch;
}

/* Compact the existing alert centre only in this new location. */
.itcjobs-v26-search-utilities .itcjobs-alert-centre-v10{
    width:100%;
    height:100%;
    min-height:112px;
    margin:0;
    padding:15px 17px;
    border-radius:14px;
    gap:15px;
    box-sizing:border-box;
}

.itcjobs-v26-search-utilities .itcjobs-alert-centre-copy-v10{
    gap:11px;
    min-width:0;
}

.itcjobs-v26-search-utilities .itcjobs-alert-icon-v10{
    width:42px;
    height:42px;
    border-radius:11px;
}

.itcjobs-v26-search-utilities .itcjobs-alert-icon-v10 svg{
    width:20px;
    height:20px;
}

.itcjobs-v26-search-utilities .itcjobs-alert-centre-copy-v10>div>span{
    font-size:9.5px;
}

.itcjobs-v26-search-utilities .itcjobs-alert-centre-copy-v10 strong{
    margin-top:1px;
    font-size:15px;
    line-height:1.25;
}

.itcjobs-v26-search-utilities .itcjobs-alert-centre-copy-v10 p{
    margin-top:3px;
    font-size:11.5px;
    line-height:1.45;
}

.itcjobs-v26-search-utilities .itcjobs-alert-centre-actions-v10{
    gap:7px;
}

.itcjobs-v26-search-utilities .itcjobs-alert-open-v10,
.itcjobs-v26-search-utilities .itcjobs-alert-manage-v10{
    min-height:38px;
    padding:0 11px;
    border-radius:9px;
    font-size:11px;
}

/* Contribution becomes a compact companion card rather than a full-width block. */
.itcjobs-v26-contribution{
    min-width:0;
}

.itcjobs-v26-contribution .itcjobs-contribute-card-v1{
    height:100%;
    min-height:112px;
    margin:0;
    padding:15px 16px;
    border-radius:14px;
    gap:14px;
}

.itcjobs-v26-contribution .itcjobs-contribute-card-v1::before{
    top:13px;
    bottom:13px;
}

.itcjobs-v26-contribution .itcjobs-contribute-copy-v1{
    padding-left:5px;
}

.itcjobs-v26-contribution .itcjobs-contribute-eyebrow-v1{
    margin-bottom:3px;
    font-size:9.5px;
}

.itcjobs-v26-contribution .itcjobs-contribute-title-v1{
    font-size:15px;
    line-height:1.25;
}

.itcjobs-v26-contribution .itcjobs-contribute-text-v1{
    display:-webkit-box;
    overflow:hidden;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    margin-top:4px;
    font-size:11px;
    line-height:1.45;
}

.itcjobs-v26-contribution .itcjobs-contribute-button-v1{
    min-height:38px;
    padding:0 12px;
    border-radius:9px;
    font-size:11px;
}

/* Live Results remains visually attached to this utility row. */
.itcjobs-v26-search-utilities + .itcjobs-v24-results-toolbar{
    margin-top:0!important;
}

@media(max-width:1050px){
    .itcjobs-v26-search-utilities{
        grid-template-columns:1fr;
    }

    .itcjobs-v26-search-utilities .itcjobs-alert-centre-v10,
    .itcjobs-v26-contribution .itcjobs-contribute-card-v1{
        min-height:0;
    }
}

@media(max-width:680px){
    .itcjobs-v26-search-utilities{
        gap:9px;
        margin:9px 0;
    }

    .itcjobs-v26-search-utilities .itcjobs-alert-centre-v10,
    .itcjobs-v26-contribution .itcjobs-contribute-card-v1{
        padding:14px;
    }

    .itcjobs-v26-search-utilities .itcjobs-alert-centre-actions-v10{
        display:grid;
        grid-template-columns:1fr 1fr;
        width:100%;
    }

    .itcjobs-v26-search-utilities .itcjobs-contribute-button-v1{
        width:100%;
    }
}

/* ==========================================================================
   ITC Jobs V46 — Free / Premium / Early Access signals
   --------------------------------------------------------------------------
   Historical V41 class names are retained for compatibility. Premium and Early
   Access now have deliberately different visual states so the three-tier model
   is understandable without turning the Jobs directory into a wall of badges.
   ========================================================================== */
/* V49 refined contract-access status bar -------------------------------------
   Compact, readable and factual. The strip now behaves like a concise
   access summary rather than a mini-hero, avoids cramped copy and avoids
   implying any averaged Early Access countdown across multiple roles. */
.itcjobs-v41-early-strip{
    position:relative;
    display:grid;
    grid-template-columns:minmax(280px,1.1fr) minmax(360px,1fr);
    gap:18px;
    align-items:center;
    margin:6px 0 14px;
    padding:14px 16px;
    border:1px solid #e4d7b4;
    border-left:4px solid #c79a2a;
    border-radius:12px;
    background:linear-gradient(135deg,#fffdf9 0%,#fffaf0 100%);
    box-shadow:0 6px 18px rgba(88,68,19,.04);
}
.itcjobs-v41-early-copy{display:flex;align-items:flex-start;gap:12px;min-width:0}
.itcjobs-v41-early-copy-main{min-width:0}
.itcjobs-v41-early-eyebrow{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin:0;
    padding:6px 8px;
    border-radius:8px;
    background:#fff4d3;
    color:#765817;
    font-size:9px;
    font-weight:950;
    letter-spacing:.08em;
    text-transform:uppercase;
    white-space:nowrap;
}
.itcjobs-v41-early-eyebrow:before{content:'◆';color:#c79a2a;font-size:7px;line-height:1}
.itcjobs-v41-early-strip h2{
    margin:0 0 3px;
    color:#17263f;
    font-size:13.8px;
    font-weight:900;
    line-height:1.28;
}
.itcjobs-v41-early-strip p{
    margin:0;
    max-width:760px;
    color:#5e6b60;
    font-size:11px;
    line-height:1.48;
}
.itcjobs-v41-early-meta{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    flex-wrap:wrap;
}
.itcjobs-v41-early-clock,.itcjobs-v45-pass-chip{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:7px 12px;
    border:1px solid #dfd2ad;
    border-radius:10px;
    background:#fff;
    color:#67531f;
    font-size:11px;
    font-weight:850;
    line-height:1.2;
    white-space:nowrap;
}
.itcjobs-v45-pass-chip.is-primary-stat{background:#fff7df;border-color:#d7bd72;color:#705310}
.itcjobs-v45-pass-chip.is-account-stat{background:#f7faf7;border-color:#d9e4d8;color:#445447}
.itcjobs-v41-early-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:36px;
    padding:8px 14px;
    border:1px solid #2c6128;
    border-radius:10px;
    background:#2c6128;
    color:#fff!important;
    text-decoration:none!important;
    font-size:11.5px;
    font-weight:900;
    white-space:nowrap;
}
.itcjobs-v41-early-cta:hover{background:#214f20;border-color:#214f20}
.itcjobs-v41-pro-confirm{border-left-color:#2c6128;background:linear-gradient(135deg,#f8fbf7,#fff)}
.itcjobs-v41-pro-confirm .itcjobs-v41-early-eyebrow{background:#edf6eb;color:#2c6128}
.itcjobs-v46-card-premium{border-color:#dfca8d!important;box-shadow:0 9px 24px rgba(91,70,16,.07)!important}.itcjobs-v41-card-early{border-color:#bcd8b9!important;box-shadow:0 9px 24px rgba(44,97,40,.07)!important}.itcjobs-v41-card-badge:before{content:'◆';margin-right:5px;font-size:8px}.itcjobs-v46-premium-badge{border-color:#dbc47e!important;background:#fff6dc!important;color:#6b5112!important}.itcjobs-v46-early-badge{border-color:#b9d7b5!important;background:#edf7eb!important;color:#245520!important}.itcjobs-v41-pro-hidden-count{font-variant-numeric:tabular-nums}
.itcjobs-v47-next-badge{background:#f4f7f3!important;color:#59665c!important;border:1px solid #d8e2d7!important}
@media(max-width:1180px){
    .itcjobs-v41-early-strip{grid-template-columns:1fr;align-items:flex-start}
    .itcjobs-v41-early-meta{justify-content:flex-start}
}
@media(max-width:640px){
    .itcjobs-v41-early-strip{padding:12px}
    .itcjobs-v41-early-copy{gap:10px}
    .itcjobs-v41-early-strip h2{font-size:13px}
    .itcjobs-v41-early-strip p{font-size:10.5px}
    .itcjobs-v41-early-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;width:100%}
    .itcjobs-v45-pass-chip,.itcjobs-v41-early-clock,.itcjobs-v41-early-cta{width:100%;white-space:normal;text-align:center}
    .itcjobs-v41-early-cta{grid-column:1/-1}
}

/* V41.2 commercial access + quota UI. Scoped to the Jobs app only. */
.itcjobs-v412-access-note{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:15px 0 0;padding:14px 16px;border:1px solid #dbe5db;background:#f8faf8;border-radius:11px;color:#3f4c42}
.itcjobs-v412-access-note>div{display:grid;gap:3px}.itcjobs-v412-access-note strong{color:#213324;font-size:13px}.itcjobs-v412-access-note span{font-size:12px;line-height:1.55;color:#68736b}.itcjobs-v412-access-note a{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;padding:9px 13px;border-radius:8px;border:1px solid #2c6128;background:#fff;color:#2c6128!important;text-decoration:none!important;font-size:12px;font-weight:850}.itcjobs-v412-access-note.is-pro{border-color:#cbe0c9;background:#f3f9f2}.itcjobs-v412-access-note.is-pro strong{color:#245520}
.itcjobs-v412-guest-wall{display:flex;justify-content:space-between;align-items:center;gap:24px;margin:22px 0 8px;padding:26px 28px;border:1px solid #cfe0cf;border-left:5px solid #2c6128;border-radius:14px;background:linear-gradient(135deg,#f6faf5,#fff);box-shadow:0 12px 30px rgba(34,73,36,.06)}.itcjobs-v412-guest-wall-copy>span{display:block;margin-bottom:5px;color:#2c6128;font-size:11px;font-weight:900;letter-spacing:.07em;text-transform:uppercase}.itcjobs-v412-guest-wall h2{margin:0 0 7px;color:#17231a;font-size:22px;line-height:1.25}.itcjobs-v412-guest-wall p{margin:0;max-width:750px;color:#5e6a61;font-size:14px;line-height:1.65}.itcjobs-v412-guest-wall-actions{display:grid;gap:8px;min-width:220px}.itcjobs-v412-guest-wall-actions a{display:flex;align-items:center;justify-content:center;padding:11px 14px;border:1px solid #cfd9cf;border-radius:9px;background:#fff;color:#2c6128!important;text-decoration:none!important;font-size:13px;font-weight:850}.itcjobs-v412-guest-wall-actions a.is-primary{background:#2c6128;border-color:#2c6128;color:#fff!important}
.itcjobs-v412-limit-modal{position:fixed;inset:0;z-index:100150;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(14,25,16,.62);backdrop-filter:blur(5px)}.itcjobs-v412-limit-modal.is-open{display:flex}.itcjobs-v412-limit-card{width:min(520px,100%);padding:26px;border-radius:15px;border:1px solid #d5e1d5;background:#fff;box-shadow:0 25px 70px rgba(0,0,0,.18)}.itcjobs-v412-limit-card span{display:block;margin-bottom:7px;color:#2c6128;font-size:11px;font-weight:900;letter-spacing:.07em;text-transform:uppercase}.itcjobs-v412-limit-card h2{margin:0 0 10px;color:#18241b;font-size:25px}.itcjobs-v412-limit-card p{margin:0 0 18px;color:#5f6c62;font-size:14px;line-height:1.65}.itcjobs-v412-limit-actions{display:flex;flex-wrap:wrap;gap:9px}.itcjobs-v412-limit-actions a,.itcjobs-v412-limit-actions button{display:inline-flex;align-items:center;justify-content:center;padding:11px 15px;border-radius:9px;border:1px solid #2c6128;font:inherit;font-size:13px;font-weight:850;cursor:pointer}.itcjobs-v412-limit-actions a{background:#2c6128;color:#fff!important;text-decoration:none!important}.itcjobs-v412-limit-actions button{background:#fff;color:#2c6128}
.itcjobs-v1-filter-chip.is-account-locked-v412{opacity:.72}.itcjobs-v1-filter-chip.is-account-locked-v412::after{content:' · Pro';font-size:10px;font-weight:900;color:#2c6128}
@media(max-width:700px){.itcjobs-v412-access-note,.itcjobs-v412-guest-wall{align-items:stretch;flex-direction:column}.itcjobs-v412-access-note a,.itcjobs-v412-guest-wall-actions{width:100%;min-width:0}.itcjobs-v412-limit-actions>*{width:100%}}

/* ==========================================================================
   ITC Jobs V37 — Contractor Pro promotion
   --------------------------------------------------------------------------
   Prominent but self-contained pre-launch promotion. No gold styling and no
   price shown here: the jobs page sells the value, while contractor-pro.php
   remains the source of full membership/pricing information.
   ========================================================================== */
.itcjobs-pro-v37{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:28px;
    align-items:center;
    overflow:hidden;
    margin:4px 0 16px;
    padding:24px 26px;
    border:1px solid #274f2a;
    border-radius:20px;
    background:
        radial-gradient(circle at 90% 10%,rgba(89,164,53,.20),transparent 28%),
        linear-gradient(135deg,#101715 0%,#17221a 58%,#1c341d 100%);
    box-shadow:0 14px 34px rgba(16,39,19,.16);
    color:#fff;
}
.itcjobs-pro-v37::before{
    content:"";
    position:absolute;
    top:-80px;
    right:20%;
    width:260px;
    height:220px;
    border:1px solid rgba(95,169,58,.22);
    transform:rotate(-24deg);
    pointer-events:none;
}
.itcjobs-pro-v37::after{
    content:"PRO";
    position:absolute;
    right:190px;
    bottom:-27px;
    color:rgba(255,255,255,.028);
    font-size:118px;
    font-weight:950;
    line-height:1;
    letter-spacing:-.06em;
    pointer-events:none;
}
.itcjobs-pro-v37-copy,
.itcjobs-pro-v37-action{position:relative;z-index:1}
.itcjobs-pro-v37-eyebrow{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0 0 8px;
    color:#8fcb67;
    font-size:10px;
    font-weight:950;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.itcjobs-pro-v37-eyebrow::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#69b53c;
    box-shadow:0 0 0 4px rgba(105,181,60,.12);
}
.itcjobs-pro-v37 h2{
    max-width:820px;
    margin:0;
    color:#fff;
    font-size:clamp(23px,3vw,32px);
    line-height:1.16;
    letter-spacing:-.025em;
}
.itcjobs-pro-v37 h2 span{color:#86c95d}
.itcjobs-pro-v37-lead{
    max-width:800px;
    margin:8px 0 0;
    color:#cbd7cd;
    font-size:13.5px;
    line-height:1.58;
}
.itcjobs-pro-v37-benefits{
    display:flex;
    flex-wrap:wrap;
    gap:7px 15px;
    margin-top:12px;
}
.itcjobs-pro-v37-benefits span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#eef5ef;
    font-size:11px;
    font-weight:800;
    line-height:1.35;
}
.itcjobs-pro-v37-benefits span::before{
    content:"✓";
    color:#7ec34f;
    font-weight:950;
}
.itcjobs-pro-v37-action{
    display:grid;
    justify-items:stretch;
    min-width:230px;
    max-width:270px;
}
.itcjobs-pro-v37-brand{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    margin-bottom:10px;
    color:#d7e4d8;
    font-size:11px;
    font-weight:900;
    letter-spacing:.05em;
    text-transform:uppercase;
}
.itcjobs-pro-v37-brand strong{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 11px;
    border:1px solid #5ca234;
    border-radius:8px;
    background:#2c6128;
    color:#fff;
    font-size:16px;
    letter-spacing:.02em;
}
.itcjobs-pro-v37-state{
    margin:0 0 9px;
    color:#c9d7cb;
    font-size:11px;
    line-height:1.45;
    text-align:right;
}
.itcjobs-pro-v37-state strong{color:#fff}
.itcjobs-pro-v37-button{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:10px 17px;
    border:1px solid #eef6ed;
    border-radius:12px;
    background:#f8fbf7;
    color:#183b1a!important;
    text-decoration:none!important;
    text-align:center;
    font-size:13px;
    font-weight:950;
    box-shadow:0 8px 20px rgba(0,0,0,.16);
    transition:transform .16s ease,background .16s ease;
}
.itcjobs-pro-v37-button:hover,
.itcjobs-pro-v37-button:focus-visible{
    background:#eaf5e7;
    color:#183b1a!important;
    transform:translateY(-1px);
}
.itcjobs-pro-v37-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    margin-bottom:9px;
    padding:5px 10px;
    border:1px solid rgba(135,202,92,.42);
    border-radius:999px;
    background:rgba(74,138,43,.16);
    color:#b9e49c;
    font-size:10px;
    font-weight:950;
    letter-spacing:.06em;
    text-transform:uppercase;
}
.itcjobs-pro-v37-status.is-pending{
    border-color:rgba(231,199,115,.36);
    background:rgba(167,126,26,.14);
    color:#efd996;
}
/* ==========================================================================
   V50.26 — FLAGSHIP-FIRST SMOOTH FEATURE CAROUSEL
   --------------------------------------------------------------------------
   Main Jobs directory presentation only.
   ========================================================================== */
.itcjobs-v5025-carousel{
    margin:10px 0 18px;
}
.itcjobs-v5025-viewport{
    overflow:hidden;
    position:relative;
}
.itcjobs-v5025-track{
    display:flex;
    align-items:stretch;
    will-change:transform;
    transform:translate3d(0,0,0);
    transition:transform .82s cubic-bezier(.22,1,.36,1);
}
.itcjobs-v5025-slide{
    display:flex;
    flex:0 0 100%;
    min-width:100%;
    align-self:stretch;
    box-sizing:border-box;
    opacity:.72;
    transform:scale(.992);
    transition:opacity .56s ease,transform .82s cubic-bezier(.22,1,.36,1);
}
.itcjobs-v5025-slide.is-active{
    opacity:1;
    transform:scale(1);
}
.itcjobs-v5025-slide > *{
    width:100%;
    box-sizing:border-box;
}
.itcjobs-v5025-slide > *:first-child{margin-top:0!important}
.itcjobs-v5025-pro-shell{
    display:flex;
    flex:1 1 auto;
    flex-direction:column;
    width:100%;
}
.itcjobs-v5025-pro-shell > .itcjobs-pro-v37{
    flex:1 1 auto;
    margin-top:0!important;
    box-sizing:border-box;
}
.itcjobs-v5025-cv{
    display:grid;
    flex:1 1 auto;
    grid-template-columns:minmax(0,1fr) minmax(250px,300px);
    gap:20px;
    align-items:center;
    min-height:100%;
    padding:20px 22px;
    border:1px solid #cfe0cd;
    border-left:5px solid #2c6128;
    border-radius:14px;
    background:
        radial-gradient(circle at 92% 8%,rgba(83,144,66,.10),transparent 28%),
        linear-gradient(145deg,#f7fbf6 0%,#fff 62%);
    box-shadow:0 9px 24px rgba(31,72,33,.07);
}
.itcjobs-v5025-cv-copy{min-width:0}
.itcjobs-v5025-cv-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin:0 0 7px;
    color:#2c6128;
    font-size:9.5px;
    font-weight:950;
    letter-spacing:.09em;
    text-transform:uppercase;
}
.itcjobs-v5025-cv-eyebrow::before{
    content:"NEW";
    display:inline-flex;
    align-items:center;
    min-height:20px;
    padding:2px 6px;
    border-radius:5px;
    background:#173f1b;
    color:#fff;
    font-size:7.5px;
    font-weight:950;
    letter-spacing:.06em;
}
.itcjobs-v5025-cv h2{
    margin:0;
    color:#162335;
    font-size:clamp(22px,2.25vw,35px);
    line-height:1.16;
    letter-spacing:-.03em;
}
.itcjobs-v5025-cv-lead{
    margin:8px 0 0;
    color:#5d6b61;
    font-size:12.6px;
    line-height:1.58;
}
.itcjobs-v5025-cv-points{
    display:flex;
    flex-wrap:wrap;
    gap:6px 8px;
    margin-top:12px;
}
.itcjobs-v5025-cv-points span{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:5px 8px;
    border:1px solid #dbe5da;
    border-radius:7px;
    background:#fff;
    color:#46564a;
    font-size:9.8px;
    font-weight:850;
    line-height:1.25;
}
.itcjobs-v5025-cv-side{
    padding:15px;
    border:1px solid #d7e3d6;
    border-radius:11px;
    background:#fff;
    box-shadow:0 8px 18px rgba(31,72,33,.04);
}
.itcjobs-v5025-cv-visual{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-bottom:10px;
}
.itcjobs-v5025-cv-visual span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:54px;
    min-height:37px;
    padding:5px 9px;
    border-radius:8px;
    background:#edf5eb;
    color:#214f20;
    font-size:11px;
    font-weight:950;
    letter-spacing:.04em;
}
.itcjobs-v5025-cv-visual b{color:#7a867d;font-size:15px;font-weight:900}
.itcjobs-v5025-cv-state{
    margin:0 0 10px;
    color:#66736a;
    font-size:10.5px;
    line-height:1.48;
    text-align:center;
}
.itcjobs-v5025-cv-state strong{color:#2c6128}
.itcjobs-v5025-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:9px 13px;
    border:1px solid #2c6128;
    border-radius:9px;
    background:#2c6128;
    color:#fff!important;
    text-decoration:none!important;
    text-align:center;
    font-size:11.5px;
    font-weight:950;
    line-height:1.25;
}
.itcjobs-v5025-cta:hover,
.itcjobs-v5025-cta:focus-visible{
    background:#214f20;
    border-color:#214f20;
    color:#fff!important;
}
.itcjobs-v5025-textlink{
    display:block;
    margin-top:8px;
    color:#2c6128!important;
    text-align:center;
    text-decoration:none!important;
    font-size:9.8px;
    font-weight:850;
}
.itcjobs-v5025-textlink:hover,
.itcjobs-v5025-textlink:focus-visible{text-decoration:underline!important}
.itcjobs-v5025-trust{
    margin-top:9px;
    color:#7a857d;
    font-size:9px;
    line-height:1.4;
    text-align:center;
}

/* Slim modern carousel progress — no arrows, no instructional copy. */
.itcjobs-v5026-progress{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    height:12px;
    margin-top:7px;
}
.itcjobs-v5026-progress[hidden]{display:none!important}
.itcjobs-v5026-indicator{
    position:relative;
    width:34px;
    height:4px;
    padding:0;
    overflow:hidden;
    border:0;
    border-radius:999px;
    background:#d8e2d7;
    cursor:pointer;
    transition:width .38s cubic-bezier(.22,1,.36,1),background .28s ease;
}
.itcjobs-v5026-indicator::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:#2c6128;
    transform:scaleX(0);
    transform-origin:left center;
}
.itcjobs-v5026-indicator.is-active{
    width:56px;
    background:#cad9c8;
}
.itcjobs-v5026-carousel-running .itcjobs-v5026-indicator.is-active::after{
    animation:itcjobsV5026Progress 6500ms linear forwards;
}
.itcjobs-v5026-carousel-paused .itcjobs-v5026-indicator.is-active::after{
    animation-play-state:paused;
}
.itcjobs-v5026-indicator:focus-visible,
.itcjobs-v5025-cta:focus-visible,
.itcjobs-v5025-textlink:focus-visible{
    outline:2px solid #2c6128;
    outline-offset:3px;
}
@keyframes itcjobsV5026Progress{
    from{transform:scaleX(0)}
    to{transform:scaleX(1)}
}
@media(prefers-reduced-motion:reduce){
    .itcjobs-v5025-track,
    .itcjobs-v5025-slide{transition:none!important}
    .itcjobs-v5026-indicator::after{animation:none!important}
}
@media(max-width:820px){
    .itcjobs-v5025-cv{grid-template-columns:1fr}
}
@media(max-width:560px){
    .itcjobs-v5025-carousel{margin:9px 0 15px}
    .itcjobs-v5025-cv{
        padding:16px 14px;
        border-radius:11px;
    }
    .itcjobs-v5025-cv h2{font-size:21px}
    .itcjobs-v5025-cv-points{display:grid;grid-template-columns:1fr 1fr}
    .itcjobs-v5025-cv-points span{justify-content:center;text-align:center}
    .itcjobs-v5026-progress{margin-top:6px}
}

/* V50.4 — trial acquisition presentation. Unique names avoid site CSS clashes. */
.itcjobs-v504-trial-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    justify-self:end;
    min-height:38px;
    margin:0 0 8px;
    padding:7px 13px;
    border:1px solid rgba(135,202,92,.5);
    border-radius:999px;
    background:rgba(73,139,43,.22);
    color:#d5f2c2;
    font-size:12px;
    font-weight:950;
    letter-spacing:.065em;
    text-transform:uppercase;
}
.itcjobs-v504-trial-note{
    display:block;
    margin:-2px 0 9px;
    color:#a9d68f;
    font-size:10px;
    font-weight:850;
    line-height:1.4;
    text-align:right;
}
.itcjobs-v504-secondary-link{
    display:block;
    margin-top:9px;
    color:#d8e6d8!important;
    text-align:center;
    text-decoration:underline!important;
    text-underline-offset:3px;
    font-size:10.5px;
    font-weight:800;
}
.itcjobs-v504-secondary-link:hover,
.itcjobs-v504-secondary-link:focus-visible{color:#fff!important}

/* V50.5 — active trial hero/countdown. Unique, Jobs-scoped class names. */
.itcjobs-v505-trial-active{border-color:#4c8c3f;background:radial-gradient(circle at 89% 12%,rgba(105,181,60,.27),transparent 31%),linear-gradient(135deg,#0d1712 0%,#16251a 56%,#1d401f 100%);box-shadow:0 16px 38px rgba(24,77,30,.20)}
.itcjobs-v505-trial-active::after{content:"PRO";right:172px;color:rgba(255,255,255,.035);font-size:108px}
.itcjobs-v505-trial-chip{display:inline-flex;align-items:center;justify-content:center;justify-self:end;min-height:31px;margin:0 0 7px;padding:5px 10px;border:1px solid rgba(143,211,100,.52);border-radius:999px;background:rgba(77,149,43,.22);color:#c9efaF;font-size:10px;font-weight:950;letter-spacing:.08em;text-transform:uppercase}
.itcjobs-v505-trial-clock{display:grid;justify-items:end;margin:2px 0 10px;padding:10px 12px;border:1px solid rgba(141,207,102,.35);border-radius:11px;background:rgba(4,20,8,.28)}
.itcjobs-v505-trial-clock>span{display:block;margin-bottom:3px;color:#a9c9aa;font-size:9px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.itcjobs-v505-trial-clock strong{display:block;color:#fff;font-size:clamp(25px,2.25vw,34px);line-height:1.05;letter-spacing:-.035em;font-variant-numeric:tabular-nums;white-space:nowrap}
.itcjobs-v505-trial-clock small{display:block;margin-top:5px;color:#b9cfba;font-size:9.5px;line-height:1.35;text-align:right}
.itcjobs-v505-trial-clock.is-unavailable strong{font-size:18px;letter-spacing:-.015em}
.itcjobs-v505-trial-end{display:block;margin:-2px 0 9px;color:#b8d6b6;font-size:10px;font-weight:750;line-height:1.4;text-align:right}
.itcjobs-v505-trial-inline-clock{font-variant-numeric:tabular-nums;white-space:nowrap}

/* V50.6 — trial conversion layer. Presentation only; entitlement stays server-owned. */
.itcjobs-v506-trial-ending{border-color:#c5a657;background:radial-gradient(circle at 89% 12%,rgba(207,166,62,.24),transparent 31%),linear-gradient(135deg,#101712 0%,#20271a 58%,#443a1b 100%)}
.itcjobs-v506-trial-ending .itcjobs-v505-trial-chip{border-color:rgba(232,203,124,.58);background:rgba(175,132,31,.2);color:#f3dfa7}
.itcjobs-v506-trial-ending .itcjobs-v505-trial-clock{border-color:rgba(229,198,117,.38);background:rgba(36,27,6,.26)}
.itcjobs-v506-conversion-strip{position:sticky;top:10px;z-index:34;display:flex;align-items:center;justify-content:space-between;gap:16px;margin:-8px 0 18px;padding:10px 12px;border:1px solid #cfe0cc;border-radius:10px;background:rgba(247,251,246,.97);box-shadow:0 8px 22px rgba(31,72,33,.09);backdrop-filter:blur(7px)}
.itcjobs-v506-conversion-copy{min-width:0}.itcjobs-v506-conversion-copy strong{display:block;color:#244f21;font-size:12px;line-height:1.35}.itcjobs-v506-conversion-copy span{display:block;margin-top:2px;color:#637066;font-size:10.5px;line-height:1.4}.itcjobs-v506-conversion-copy strong .itcjobs-v505-trial-inline-clock{display:inline;margin:0;color:inherit;font-size:inherit;line-height:inherit}.itcjobs-v506-conversion-strip.is-ending{border-color:#dec784;background:rgba(255,251,238,.98)}.itcjobs-v506-conversion-strip.is-ending .itcjobs-v506-conversion-copy strong{color:#705310}
.itcjobs-v506-conversion-cta{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:8px 11px;border-radius:8px;background:#2c6128;color:#fff!important;text-decoration:none!important;font-size:10.5px;font-weight:900;white-space:nowrap}.itcjobs-v506-conversion-strip.is-ending .itcjobs-v506-conversion-cta{background:#6d5417}
.itcjobs-v506-preserved{margin-top:13px;padding:11px 12px;border:1px solid rgba(255,255,255,.16);border-radius:9px;background:rgba(255,255,255,.07);color:#dce9dc;font-size:11px;line-height:1.5}.itcjobs-v506-preserved strong{display:block;margin-bottom:3px;color:#fff;font-size:11.5px}
.itcjobs-v506-expired-note{margin-top:8px;color:#d5e5d3;font-size:10.5px;line-height:1.45}
@media(max-width:760px){.itcjobs-v506-conversion-strip{position:static;align-items:stretch;flex-direction:column;margin:-6px 0 16px}.itcjobs-v506-conversion-cta{width:100%}}

@media(max-width:900px){
    .itcjobs-v505-trial-chip{justify-self:start}
    .itcjobs-v505-trial-clock{justify-items:start;width:min(360px,100%)}
    .itcjobs-v505-trial-clock small,.itcjobs-v505-trial-end{text-align:left}
    .itcjobs-v504-trial-badge{justify-self:start}
    .itcjobs-v504-trial-note{text-align:left}
    .itcjobs-v504-secondary-link{text-align:left}
    .itcjobs-pro-v37{grid-template-columns:1fr;gap:18px}
    .itcjobs-pro-v37-action{min-width:0;max-width:none;justify-items:start}
    .itcjobs-pro-v37-brand{justify-content:flex-start}
    .itcjobs-pro-v37-state{text-align:left}
    .itcjobs-pro-v37-button{width:min(330px,100%)}
    .itcjobs-pro-v37::after{right:-10px}
}
@media(max-width:620px){
    .itcjobs-pro-v37{margin-top:2px;padding:20px 18px;border-radius:16px}
    .itcjobs-pro-v37 h2{font-size:23px}
    .itcjobs-pro-v37-lead{font-size:12.5px}
    .itcjobs-pro-v37-benefits{display:grid;grid-template-columns:1fr 1fr;gap:7px 10px}
    .itcjobs-pro-v37-benefits span{font-size:10.5px}
    .itcjobs-pro-v37-button{width:100%}
}

/* ==========================================================================
   ITC Jobs V25 — visible Directory gateway above Search
   --------------------------------------------------------------------------
   The Contractor/Recruiter routes are prominent, but intentionally compact
   so the Jobs search remains the dominant interaction on the page.
   ========================================================================== */
.itcjobs-v25-gateway .itcjobs-claim-card-v1,
.itcjobs-v25-gateway .itcjobs-directory-card-v23{
    min-height:0;
    padding:17px 18px;
    border-radius:14px;
}

.itcjobs-v25-gateway .itcjobs-claim-title-v1,
.itcjobs-v25-gateway .itcjobs-directory-title-v23{
    font-size:17px;
    line-height:1.28;
}

.itcjobs-v25-gateway .itcjobs-claim-text-v1,
.itcjobs-v25-gateway .itcjobs-directory-text-v23{
    margin-top:5px;
    font-size:12.5px;
    line-height:1.5;
}

.itcjobs-v25-gateway .itcjobs-claim-points-v1,
.itcjobs-v25-gateway .itcjobs-directory-points-v23{
    margin-top:7px;
    gap:5px 11px;
}

.itcjobs-v25-gateway .itcjobs-claim-points-v1 span,
.itcjobs-v25-gateway .itcjobs-directory-points-v23 span{
    font-size:11px;
}

.itcjobs-v25-gateway .itcjobs-claim-button-v1,
.itcjobs-v25-gateway .itcjobs-directory-button-v23{
    min-height:40px;
    padding:0 13px;
    font-size:12px;
}

.itcjobs-v25-post-results-contribution{
    margin:18px 0 4px;
}

.itcjobs-v25-post-results-contribution .itcjobs-contribute-card-v1{
    margin:0;
}

@media(max-width:860px){
    .itcjobs-v25-gateway{
        grid-template-columns:1fr;
    }
}

/* ==========================================================================
   ITC Jobs V24 — search-to-results experience
   --------------------------------------------------------------------------
   Search is the core workflow:
   Search -> immediate status -> matching cards.
   Secondary tools deliberately follow the results.
   ========================================================================== */
.itcjobs-v1-search-row{
    grid-template-columns:minmax(280px,1fr) 156px 130px!important;
    gap:10px!important;
}

.itcjobs-v24-search-submit{
    min-height:56px;
    padding:0 16px;
    border:1px solid #ffffff;
    border-radius:12px;
    background:#ffffff;
    color:#17391a;
    font:inherit;
    font-size:13px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    transition:transform .15s ease,background .15s ease,box-shadow .15s ease;
}
.itcjobs-v24-search-submit:hover,
.itcjobs-v24-search-submit:focus-visible{
    background:#edf6eb;
    transform:translateY(-1px);
    box-shadow:0 10px 23px rgba(0,0,0,.14);
}

.itcjobs-v24-results-toolbar{
    position:relative;
    align-items:center;
    margin:4px 0 14px!important;
    padding:14px 15px!important;
    border:1px solid #dce5dc;
    border-radius:14px;
    background:#ffffff;
    box-shadow:0 6px 18px rgba(26,49,28,.045);
    scroll-margin-top:92px;
}

.itcjobs-v24-results-copy{
    min-width:0;
}

.itcjobs-v24-results-kicker{
    display:block;
    margin-bottom:3px;
    color:#2c6128;
    font-size:9.5px;
    font-weight:900;
    letter-spacing:.09em;
    text-transform:uppercase;
}

.itcjobs-v24-results-toolbar .itcjobs-v1-results-summary{
    margin:0!important;
    color:#26372a!important;
    font-size:14px!important;
    line-height:1.4;
}

.itcjobs-v24-results-toolbar .itcjobs-v1-results-summary strong{
    color:#17391a!important;
    font-size:15px;
}

.itcjobs-v24-results-hint{
    display:block;
    margin-top:3px;
    color:#78827a;
    font-size:10.5px;
    line-height:1.4;
}

.itcjobs-v24-results-toolbar.is-searching{
    border-color:#bdd2ba;
    background:#f8fbf7;
}

.itcjobs-v24-results-toolbar.is-no-results{
    border-color:#dfc9a6;
    background:#fffaf1;
}

.itcjobs-v24-after-results{
    margin-top:28px;
    padding-top:6px;
    border-top:1px solid #e4ebe4;
}

.itcjobs-v24-after-results .itcjobs-alert-centre-v10{
    margin-top:18px;
}

.itcjobs-v24-after-results .itcjobs-claim-support-v1{
    margin-bottom:4px;
}

.itcjobs-v1-empty{
    margin:14px 0 8px;
}

.itcjobs-v24-empty-kicker{
    display:block;
    margin-bottom:5px;
    color:#8c6614;
    font-size:10px;
    font-weight:900;
    letter-spacing:.09em;
    text-transform:uppercase;
}

.itcjobs-v24-empty-reset{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    margin-top:16px;
    padding:0 15px;
    border:1px solid #2c6128;
    border-radius:10px;
    background:#2c6128;
    color:#fff;
    font:inherit;
    font-size:12.5px;
    font-weight:850;
    cursor:pointer;
}
.itcjobs-v24-empty-reset:hover,
.itcjobs-v24-empty-reset:focus-visible{
    background:#214d20;
    border-color:#214d20;
}

@media(max-width:860px){
    .itcjobs-v1-search-row{
        grid-template-columns:minmax(0,1fr) 150px!important;
    }
    .itcjobs-v1-search-wrap{
        grid-column:1 / -1;
    }
    .itcjobs-v24-search-submit,
    .itcjobs-v1-filter-toggle{
        width:100%;
    }
}

@media(max-width:680px){
    .itcjobs-v1-search-row{
        grid-template-columns:1fr!important;
    }
    .itcjobs-v24-results-toolbar{
        align-items:flex-start!important;
        gap:12px!important;
    }
    .itcjobs-v24-results-toolbar .itcjobs-v1-toolbar-actions{
        width:100%;
    }
}

/* ==========================================================================
   ITC Jobs V21 — calendar lifecycle freshness / closing meter
   Purpose: place expiry intelligence in the footer-left decision space while
   keeping the role-heading area compact. Meter fill is
   based on the actual published_at -> expires_at lifecycle calculated in PHP.
   ========================================================================== */
.itcjobs-v17-card-side{display:grid;gap:10px;min-width:220px}
.itcjobs-v18-freshness{width:min(300px,100%);min-width:240px;padding:0}
.itcjobs-v18-freshness-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:7px}
.itcjobs-v18-freshness-title{color:#6d776f;font-size:9.5px;font-weight:900;letter-spacing:.075em;text-transform:uppercase}
.itcjobs-v18-freshness-status{display:inline-flex;align-items:center;gap:6px;font-size:10px;font-weight:900;letter-spacing:.025em;white-space:nowrap}
.itcjobs-v18-freshness-status::before{content:"";width:7px;height:7px;flex:0 0 7px;border-radius:50%;background:currentColor}
.itcjobs-v18-freshness-meter{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:4px;width:100%}
.itcjobs-v18-freshness-segment{display:block;height:7px;border-radius:999px;background:#e3e7e3;box-shadow:inset 0 1px 1px rgba(15,23,42,.04);transition:background .18s ease,opacity .18s ease}
.itcjobs-v18-freshness-copy{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:6px;color:#747e76;font-size:10.5px;line-height:1.3}
.itcjobs-v18-freshness-copy strong{font-size:10.5px;font-weight:850;text-align:right}
/* Fresh: plenty of advertised life remains. */
.itcjobs-v18-freshness.is-fresh .itcjobs-v18-freshness-status,.itcjobs-v18-freshness.is-fresh .itcjobs-v18-freshness-copy strong{color:#2c6128}
.itcjobs-v18-freshness.is-fresh .itcjobs-v18-freshness-segment.is-active{background:linear-gradient(90deg,#70a96a,#2c6128)}
/* Current: mid-life listing, represented by yellow without implying danger. */
.itcjobs-v18-freshness.is-current .itcjobs-v18-freshness-status,.itcjobs-v18-freshness.is-current .itcjobs-v18-freshness-copy strong{color:#99700b}
.itcjobs-v18-freshness.is-current .itcjobs-v18-freshness-segment.is-active{background:linear-gradient(90deg,#f5cf55,#d8a51b)}
/* Expiry approaching: orange is reserved for the later part of listing life. */
.itcjobs-v18-freshness.is-expiring .itcjobs-v18-freshness-status,.itcjobs-v18-freshness.is-expiring .itcjobs-v18-freshness-copy strong{color:#b65b08}
.itcjobs-v18-freshness.is-expiring .itcjobs-v18-freshness-segment.is-active{background:linear-gradient(90deg,#f5a33b,#e06b0b)}
/* Closing soon: red is reserved for closes today or tomorrow, with exact timing shown. */
.itcjobs-v18-freshness.is-closing .itcjobs-v18-freshness-status,.itcjobs-v18-freshness.is-closing .itcjobs-v18-freshness-copy strong{color:#b42318}
.itcjobs-v18-freshness.is-closing .itcjobs-v18-freshness-segment.is-active{background:linear-gradient(90deg,#ef746b,#c52c22)}
.itcjobs-v18-freshness.is-closing .itcjobs-v18-freshness-status::before{box-shadow:0 0 0 4px rgba(180,35,24,.09)}
.itcjobs-v1-badge.itcjobs-v1-badge-closing{border-color:#efb5ae!important;background:#fff0ee!important;color:#b42318!important}
/* V50.8 | Public organisation attribution removed; retain a compact freshness line under the title. */
.itcjobs-v508-card-date{margin:7px 0 0;color:#69766c;font-size:12px;font-weight:750;padding-bottom: 5px;line-height:1.35}
/* Freshness shortcut chips retain the site's green language; warning colours are
   reserved for actual listing state rather than controls. */
.itcjobs-v1-filter-chip.itcjobs-v16-spectrum-chip{border-color:#cfe0cd!important;background:#f2f7f1!important;color:#2c6128!important}
.itcjobs-v1-filter-chip.itcjobs-v16-spectrum-chip:hover{border-color:#aac7a6!important;background:#eaf3e8!important}
.itcjobs-v1-filter-chip.itcjobs-v16-spectrum-chip.is-active{border-color:#2c6128!important;background:#2c6128!important;color:#fff!important;box-shadow:0 5px 13px rgba(44,97,40,.14)}
@media(max-width:760px){.itcjobs-v17-card-side{min-width:0;width:100%}.itcjobs-v18-freshness{width:100%;min-width:0}}
.itcjobs-v35-account-box{min-width:235px;align-self:start;padding:16px;border:1px solid #d7e3d6;border-radius:14px;background:#f7faf6;box-shadow:0 7px 20px rgba(25,54,28,.05)}
.itcjobs-v35-account-box span{display:block;margin-bottom:4px;color:#7a857d;font-size:10.5px;font-weight:900;text-transform:uppercase;letter-spacing:.07em}
.itcjobs-v35-account-box strong{display:block;margin-bottom:11px;color:#263128;font-size:13px;line-height:1.4;overflow-wrap:anywhere}
.itcjobs-v35-account-box a{display:flex;align-items:center;justify-content:center;min-height:42px;padding:9px 13px;border:1px solid #2c6128;border-radius:10px;background:#2c6128;color:#fff!important;text-decoration:none!important;font-size:13px;font-weight:900;text-align:center}
.itcjobs-v35-account-box a:hover{background:#214e1e}
.itcjobs-auth-primary-v35{display:flex;align-items:center;justify-content:center;width:100%;min-height:48px;margin:15px 0 0;padding:11px 15px;border:1px solid #2c6128;border-radius:11px;background:#2c6128;color:#fff!important;text-decoration:none!important;font-weight:900;text-align:center}
.itcjobs-auth-primary-v35:hover{background:#214e1e}
.itcjobs-auth-divider-v35{display:flex;align-items:center;gap:11px;margin:17px 0;color:#89928b;font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.05em}
.itcjobs-auth-divider-v35::before,.itcjobs-auth-divider-v35::after{content:"";height:1px;flex:1;background:#e0e7e0}
.itcjobs-auth-note-v35{margin:9px 0 0;color:#717c74;font-size:11.5px;line-height:1.55}
@media(max-width:980px){.itcjobs-v35-account-box{min-width:0;width:100%;max-width:420px}}
@media(max-width:540px){.itcjobs-v18-freshness-copy{align-items:flex-start;flex-direction:column;gap:3px}.itcjobs-v18-freshness-copy strong{text-align:left}}

/* V41.4 — truthful result totals + persistent Premium Access commercial cue. */
.itcjobs-v414-result-pro-note{display:inline-flex;align-items:center;gap:7px;margin-top:7px;padding:6px 9px;border:1px solid #d7e3d7;border-radius:8px;background:#f7faf7;color:#546158;font-size:11.5px;font-weight:700;line-height:1.45}
.itcjobs-v414-result-pro-note strong{color:#2c6128}
.itcjobs-v414-result-pro-note:before{content:'PRO';display:inline-flex;align-items:center;justify-content:center;padding:3px 5px;border-radius:5px;background:#2c6128;color:#fff;font-size:8px;font-weight:900;letter-spacing:.06em}
@media(max-width:640px){.itcjobs-v414-result-pro-note{display:flex;width:fit-content;max-width:100%}}

/* V41.5 — account-backed Saved Searches. */
.itcjobs-v415-saved-actions{display:flex;gap:9px;flex-wrap:wrap}
.itcjobs-v415-saved-button{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 16px;border:1px solid #cfd9cf;border-radius:10px;background:#fff;color:#344238!important;font-size:13px;font-weight:850;text-decoration:none!important;cursor:pointer;white-space:nowrap}
.itcjobs-v415-saved-button:hover{border-color:#2c6128;color:#2c6128!important;background:#f7faf7}
.itcjobs-v415-saved-button.is-primary{border-color:#2c6128;color:#2c6128!important}
.itcjobs-v415-saved-flash{margin:12px 0 0;padding:12px 14px;border:1px solid #d6e3d5;border-left:4px solid #2c6128;border-radius:9px;background:#f7faf7;color:#435146;font-size:12.5px;line-height:1.55}
.itcjobs-v415-saved-flash.is-error{border-left-color:#a53030;background:#fff8f8;color:#7a2c2c}
.itcjobs-v415-saved-flash.is-limit{border-left-color:#b27a17;background:#fff9ed;color:#70551f}
.itcjobs-v415-modal{position:fixed;inset:0;z-index:100055;display:none;align-items:center;justify-content:center;padding:18px;background:rgba(17,31,20,.58)}
.itcjobs-v415-modal.is-open{display:flex}
.itcjobs-v415-card{width:min(620px,100%);max-height:min(86vh,760px);overflow:auto;border:1px solid #d7e2d7;border-radius:16px;background:#fff;box-shadow:0 24px 70px rgba(16,38,18,.22)}
.itcjobs-v415-head{display:flex;align-items:flex-start;justify-content:space-between;gap:15px;padding:21px 22px;border-bottom:1px solid #e3eae3;background:#fafcf9}
.itcjobs-v415-head span{display:block;margin-bottom:4px;color:#2c6128;font-size:10px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.itcjobs-v415-head h2{margin:0;color:#1f2b21;font-size:23px;line-height:1.2}
.itcjobs-v415-close{border:0;background:transparent;color:#6c786f;font-size:26px;line-height:1;cursor:pointer}
.itcjobs-v415-body{padding:22px}
.itcjobs-v415-copy{margin:0 0 16px;color:#647168;font-size:13.5px;line-height:1.65}
.itcjobs-v415-summary{margin:0 0 17px;padding:13px 14px;border:1px solid #dce6db;border-radius:10px;background:#f7faf7;color:#314238;font-size:13px;line-height:1.55;font-weight:700}
.itcjobs-v415-field{margin-bottom:16px}
.itcjobs-v415-field label{display:block;margin-bottom:6px;color:#303a32;font-size:13px;font-weight:850}
.itcjobs-v415-field input{width:100%;box-sizing:border-box;padding:12px 13px;border:1px solid #cbd7cb;border-radius:9px;background:#fff;color:#263128;font-size:14px}
.itcjobs-v415-actions{display:flex;justify-content:flex-end;gap:9px;flex-wrap:wrap;margin-top:18px}
.itcjobs-v415-actions button,.itcjobs-v415-actions a{min-height:44px;padding:0 16px;border:1px solid #2c6128;border-radius:9px;background:#2c6128;color:#fff!important;text-decoration:none!important;font-size:13px;font-weight:850;cursor:pointer;display:inline-flex;align-items:center;justify-content:center}
.itcjobs-v415-actions .secondary{background:#fff;color:#2c6128!important}
.itcjobs-v415-list{display:grid;gap:10px}
.itcjobs-v415-item{padding:15px;border:1px solid #dce5dc;border-radius:11px;background:#fff}
.itcjobs-v415-item-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.itcjobs-v415-item h3{margin:0 0 5px;color:#273229;font-size:15px;line-height:1.35}
.itcjobs-v415-item p{margin:0;color:#68746c;font-size:12.5px;line-height:1.55}
.itcjobs-v415-item-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.itcjobs-v415-run,.itcjobs-v415-delete,.itcjobs-v416-alert{min-height:38px;padding:0 12px;border:1px solid #cfd9cf;border-radius:8px;background:#fff;color:#354239;font-size:12px;font-weight:850;cursor:pointer;text-decoration:none!important;display:inline-flex;align-items:center;justify-content:center}
.itcjobs-v415-run{border-color:#2c6128;color:#2c6128}
.itcjobs-v416-alert{border-color:#2c6128;background:#2c6128;color:#fff!important}
.itcjobs-v416-alert:hover{background:#234f20;border-color:#234f20;color:#fff!important}
.itcjobs-v416-alert.is-upgrade{background:#fff8e8;border-color:#dec37d;color:#735413!important}
.itcjobs-v416-alert.is-pending{background:#f5f7f5;border-color:#d6ded6;color:#6b756d!important;cursor:default}
.itcjobs-v415-empty{padding:18px;border:1px dashed #d5ded5;border-radius:10px;background:#fafcfa;color:#68746c;font-size:13px;line-height:1.6}
.itcjobs-v415-tier-note{margin:16px 0 0;padding:12px 14px;border-left:3px solid #2c6128;background:#f5f8f5;color:#5f6d63;font-size:12.5px;line-height:1.6}
@media(max-width:760px){.itcjobs-v1-search-row{align-items:stretch}.itcjobs-v415-saved-actions{width:100%}.itcjobs-v415-saved-button{flex:1}.itcjobs-v415-item-top{display:block}}

/* ==========================================================================
   V41.9 — upper-page design polish only
   --------------------------------------------------------------------------
   Reduces repeated sales copy while retaining every existing control.
   ========================================================================== */
.itcjobs-pro-v419-price{
    display:inline-flex;
    justify-self:end;
    margin:0 0 8px;
    padding:6px 10px;
    border:1px solid rgba(137,202,94,.38);
    border-radius:999px;
    background:rgba(73,139,43,.16);
    color:#c8ecaF;
    font-size:10px;
    font-weight:950;
    letter-spacing:.055em;
    text-transform:uppercase;
}
.itcjobs-pro-v37-benefits{gap:7px 13px}
.itcjobs-pro-v37-benefits span{font-size:10.7px}
.itcjobs-v25-gateway{margin-top:12px}

/* Keep Search + Search button + Filters + Saved Search on one clean row when
   desktop width permits. Existing mobile rules continue to collapse it. */
.itcjobs-v1-search-row{
    grid-template-columns:minmax(250px,1fr) 142px 132px auto!important;
    gap:9px!important;
    align-items:stretch!important;
}
.itcjobs-v415-saved-actions{align-self:stretch;flex-wrap:nowrap}
.itcjobs-v415-saved-button{min-height:48px;padding:0 13px}

/* The account-state strip is operational guidance, not another sales banner. */
.itcjobs-v412-access-note{margin-top:13px;padding:12px 14px;background:#fafcfa}
.itcjobs-v412-access-note strong{font-size:12.5px}
.itcjobs-v412-access-note span{font-size:11.7px}

/* Alerts and My Contract Matches are complementary Pro capabilities, so they
   sit together rather than consuming two full-width rows. */
.itcjobs-v419-pro-tools{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:12px;
    margin:12px 0 16px;
    align-items:stretch;
}
.itcjobs-v419-pro-tools .itcjobs-v26-search-utilities{margin:0;height:100%}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-v10{height:100%;min-height:132px;margin:0;padding:16px 17px}
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip{
    height:100%;
    min-height:132px;
    margin:0;
    padding:16px 17px;
    box-sizing:border-box;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-copy-v10 strong,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-copy strong{font-size:15px}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-copy-v10 p,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-copy p{font-size:11.6px;line-height:1.48}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-actions-v10,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-actions{align-self:center}
.itcjobs-v419-pro-tools + .itcjobs-v24-results-toolbar{margin-top:0!important}

@media(max-width:1080px){
    .itcjobs-v1-search-row{grid-template-columns:minmax(240px,1fr) 135px 126px!important}
    .itcjobs-v415-saved-actions{grid-column:1/-1;justify-content:flex-start}
}
@media(max-width:900px){
    .itcjobs-pro-v419-price{justify-self:start}
    .itcjobs-v419-pro-tools{grid-template-columns:1fr}
}
@media(max-width:680px){
    .itcjobs-v1-search-row{grid-template-columns:1fr!important}
    .itcjobs-v415-saved-actions{grid-column:auto;width:100%;display:grid;grid-template-columns:1fr 1fr}
    .itcjobs-v415-saved-actions:has(> :only-child){grid-template-columns:1fr}
}


/* ==========================================================================
   V42.1 — compact Pro tools + My Applications pipeline
   ========================================================================== */

/* V42.0 directory tracker modal styles are repeated here intentionally:
   the detail view has its own stylesheet branch. */
.itcjobs-v420-modal{position:fixed;inset:0;z-index:100090;display:none;align-items:center;justify-content:center;padding:18px;background:rgba(16,29,18,.6)}
.itcjobs-v420-modal.is-open{display:flex}
.itcjobs-v420-card{width:min(620px,100%);max-height:min(88vh,780px);overflow:auto;border:1px solid #d6e1d6;border-radius:16px;background:#fff;box-shadow:0 26px 75px rgba(14,36,17,.25)}
.itcjobs-v420-head{display:flex;align-items:flex-start;justify-content:space-between;gap:15px;padding:20px 22px;border-bottom:1px solid #e2e9e2;background:#fafcf9}
.itcjobs-v420-head span{display:block;margin-bottom:4px;color:#2c6128;font-size:10px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.itcjobs-v420-head h2{margin:0;color:#202c22;font-size:22px;line-height:1.25}
.itcjobs-v420-close{border:0;background:transparent;color:#6e786f;font-size:26px;line-height:1;cursor:pointer}
.itcjobs-v420-body{padding:21px 22px}
.itcjobs-v420-private{margin:0 0 16px;padding:10px 12px;border-left:3px solid #2c6128;background:#f5f8f5;color:#5d6961;font-size:12px;line-height:1.55}
.itcjobs-v420-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.itcjobs-v420-field{margin-bottom:15px}
.itcjobs-v420-field label{display:block;margin:0 0 6px;color:#303a32;font-size:12.5px;font-weight:850}
.itcjobs-v420-field select,.itcjobs-v420-field input,.itcjobs-v420-field textarea{width:100%;box-sizing:border-box;padding:11px 12px;border:1px solid #cbd7cb;border-radius:9px;background:#fff;color:#263128;font:inherit;font-size:13px}
.itcjobs-v420-field textarea{min-height:125px;resize:vertical}
.itcjobs-v420-check{display:flex!important;align-items:center;gap:8px}
.itcjobs-v420-check input{width:auto!important}
.itcjobs-v420-actions{display:flex;justify-content:flex-end;gap:9px;flex-wrap:wrap;margin-top:17px}
.itcjobs-v420-actions button{min-height:43px;padding:0 15px;border:1px solid #2c6128;border-radius:9px;background:#2c6128;color:#fff;font-size:12.5px;font-weight:850;cursor:pointer}
.itcjobs-v420-actions button.secondary{background:#fff;color:#2c6128}
.itcjobs-v420-status{min-height:18px;margin-top:10px;color:#5f6c63;font-size:12px;font-weight:700}

/* Slim Alerts + Matching without removing any actions. */
.itcjobs-v419-pro-tools{
    gap:9px!important;
    margin:9px 0!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-v10,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip{
    min-height:0!important;
    height:auto!important;
    padding:11px 13px!important;
    border-radius:11px!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-copy-v10{gap:10px!important}
.itcjobs-v419-pro-tools .itcjobs-alert-icon-v10{width:38px!important;height:38px!important;border-radius:10px!important}
.itcjobs-v419-pro-tools .itcjobs-alert-icon-v10 svg{width:19px!important;height:19px!important}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-copy-v10>div>span,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-copy span{
    font-size:9px!important;
    margin-bottom:2px!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-copy-v10 strong,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-copy strong{
    font-size:13.5px!important;
    line-height:1.28!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-copy-v10 p,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-copy p{
    margin-top:2px!important;
    font-size:10.7px!important;
    line-height:1.38!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-actions-v10,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-actions{gap:6px!important}
.itcjobs-v419-pro-tools .itcjobs-alert-open-v10,
.itcjobs-v419-pro-tools .itcjobs-alert-manage-v10,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-actions button,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-actions a{
    min-height:34px!important;
    padding:0 10px!important;
    border-radius:7px!important;
    font-size:10.5px!important;
}

/* Compact application-pipeline strip. */
.itcjobs-v421-pipeline-bar{
    display:flex;
    align-items:center;
    gap:14px;
    margin:0 0 11px;
    padding:10px 12px;
    border:1px solid #d8e4d7;
    border-left:4px solid #2c6128;
    border-radius:10px;
    background:#fbfdfb;
}
.itcjobs-v421-pipeline-copy{min-width:190px}
.itcjobs-v421-pipeline-copy span{
    display:block;
    margin-bottom:2px;
    color:#2c6128;
    font-size:8.8px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.itcjobs-v421-pipeline-copy strong{display:block;color:#263229;font-size:13.5px;line-height:1.3}
.itcjobs-v421-pipeline-bar>p{flex:1;margin:0;color:#657168;font-size:10.8px;line-height:1.4}
.itcjobs-v421-pipeline-stats{display:flex;align-items:center;gap:6px;flex:1;flex-wrap:wrap}
.itcjobs-v421-pipeline-stats span{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:5px 7px;
    border:1px solid #dce5dc;
    border-radius:7px;
    background:#fff;
    color:#59665d;
    font-size:9.8px;
    font-weight:750;
}
.itcjobs-v421-pipeline-stats b{color:#243329;font-size:11px}
.itcjobs-v421-pipeline-stats .is-due{border-color:#e5c889;background:#fff8e8;color:#76581d}
.itcjobs-v421-pipeline-open{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    min-height:34px;
    padding:0 11px;
    border:1px solid #2c6128;
    border-radius:7px;
    background:#2c6128;
    color:#fff!important;
    text-decoration:none!important;
    font-size:10.5px;
    font-weight:850;
    cursor:pointer;
}
.itcjobs-v421-pipeline-bar.is-locked{border-left-color:#b27a17;background:#fffaf0}
.itcjobs-v421-pipeline-bar.is-locked .itcjobs-v421-pipeline-copy span{color:#896519}

/* Pipeline modal. */
.itcjobs-v421-modal{position:fixed;inset:0;z-index:100085;display:none;align-items:center;justify-content:center;padding:18px;background:rgba(16,29,18,.6)}
.itcjobs-v421-modal.is-open{display:flex}
.itcjobs-v421-card{width:min(900px,100%);max-height:min(90vh,820px);overflow:auto;border:1px solid #d5e0d5;border-radius:16px;background:#fff;box-shadow:0 28px 80px rgba(14,36,17,.25)}
.itcjobs-v421-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:20px 22px 16px;border-bottom:1px solid #e2e9e2;background:#fafcf9}
.itcjobs-v421-head span{display:block;margin-bottom:4px;color:#2c6128;font-size:10px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.itcjobs-v421-head h2{margin:0;color:#202c22;font-size:23px;line-height:1.2}
.itcjobs-v421-close{border:0;background:transparent;color:#6c786f;font-size:27px;line-height:1;cursor:pointer}
.itcjobs-v421-body{padding:18px 20px 22px}
.itcjobs-v421-summary{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:13px}
.itcjobs-v421-summary span{padding:6px 8px;border:1px solid #dce5dc;border-radius:7px;background:#f8fbf8;color:#56635a;font-size:10px;font-weight:800}
.itcjobs-v421-tabs{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:14px}
.itcjobs-v421-tab{min-height:34px;padding:0 10px;border:1px solid #d4ddd4;border-radius:7px;background:#fff;color:#455248;font-size:10.5px;font-weight:850;cursor:pointer}
.itcjobs-v421-tab.is-active{border-color:#2c6128;background:#2c6128;color:#fff}
.itcjobs-v421-list{display:grid;gap:9px}
.itcjobs-v421-item{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:14px;
    align-items:center;
    padding:13px 14px;
    border:1px solid #dde5dd;
    border-radius:10px;
    background:#fff;
}
.itcjobs-v421-item[hidden]{display:none!important}
.itcjobs-v421-item h3{margin:0 0 4px;color:#263129;font-size:13.5px;line-height:1.35}
.itcjobs-v421-meta{display:flex;gap:6px 12px;flex-wrap:wrap;color:#68746c;font-size:10.5px;line-height:1.45}
.itcjobs-v421-badges{display:flex;gap:6px;flex-wrap:wrap;margin-top:7px}
.itcjobs-v421-badge{padding:4px 6px;border-radius:6px;background:#eef5ed;color:#315630;font-size:9px;font-weight:850}
.itcjobs-v421-badge.is-due{background:#fff2d8;color:#755515}
.itcjobs-v421-badge.is-closed{background:#f1f2f1;color:#6a736d}
.itcjobs-v421-item-actions{display:flex;gap:6px;flex-wrap:wrap;justify-content:flex-end}
.itcjobs-v421-item-actions a,.itcjobs-v421-item-actions button{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 10px;border:1px solid #ccd8cc;border-radius:7px;background:#fff;color:#334138!important;text-decoration:none!important;font-size:10px;font-weight:850;cursor:pointer}
.itcjobs-v421-item-actions button{border-color:#2c6128;color:#2c6128!important}
.itcjobs-v421-empty{padding:22px;border:1px dashed #d5dfd5;border-radius:10px;background:#fafcfa;color:#66736a;font-size:12px;line-height:1.6;text-align:center}

@media(max-width:900px){
    .itcjobs-v421-pipeline-bar{align-items:flex-start;flex-wrap:wrap}
    .itcjobs-v421-pipeline-stats{order:3;flex-basis:100%}
}
@media(max-width:700px){
    .itcjobs-v420-grid{grid-template-columns:1fr}
    .itcjobs-v421-item{grid-template-columns:1fr}
    .itcjobs-v421-item-actions{justify-content:flex-start}
    .itcjobs-v419-pro-tools .itcjobs-alert-centre-v10,
    .itcjobs-v419-pro-tools .itcjobs-v417-match-strip{align-items:flex-start!important}
}


/* ========================================================================== 
   V44 — CONTRACTOR PRO COMMAND CENTRE + PRIORITY VIEWS
   --------------------------------------------------------------------------
   Uses only signals already present in this directory request/browser state.
   No new database table, bulk query or extra PHP process is introduced here.
   ========================================================================== */
.itcjobs-v44-command{
    margin:0 0 13px;
    padding:16px;
    border:1px solid #cfddcf;
    border-radius:14px;
    background:linear-gradient(145deg,#f9fcf8 0%,#eef6ec 100%);
    box-shadow:0 10px 26px rgba(31,77,28,.055);
}
.itcjobs-v44-command-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:12px;
}
.itcjobs-v44-command-title span{
    display:block;
    margin-bottom:3px;
    color:#2c6128;
    font-size:9px;
    font-weight:900;
    letter-spacing:.09em;
    text-transform:uppercase;
}
.itcjobs-v44-command-title strong{
    display:block;
    color:#1f2d22;
    font-size:18px;
    line-height:1.25;
}
.itcjobs-v44-command-title p{
    margin:4px 0 0;
    color:#637067;
    font-size:11.5px;
    line-height:1.45;
}
.itcjobs-v44-command-reset{
    flex:0 0 auto;
    min-height:34px;
    padding:0 10px;
    border:1px solid #cbd8cb;
    border-radius:7px;
    background:#fff;
    color:#355139;
    font-size:10px;
    font-weight:850;
    cursor:pointer;
}
.itcjobs-v44-command-reset[hidden]{display:none!important}
.itcjobs-v44-signal-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:8px;
}
.itcjobs-v44-signal{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    min-width:0;
    min-height:88px;
    padding:11px 11px 10px;
    border:1px solid #d8e4d7;
    border-radius:10px;
    background:#fff;
    color:#263229;
    text-align:left;
    cursor:pointer;
    transition:border-color .16s ease,box-shadow .16s ease,transform .16s ease;
}
.itcjobs-v44-signal:hover{
    transform:translateY(-1px);
    border-color:#b8cfb6;
    box-shadow:0 7px 17px rgba(31,77,28,.07);
}
.itcjobs-v44-signal.is-active{
    border-color:#2c6128;
    box-shadow:0 0 0 2px rgba(44,97,40,.08);
}
.itcjobs-v44-signal.is-attention{border-color:#dfc583;background:#fffaf0}
.itcjobs-v44-signal-label{
    color:#647069;
    font-size:9px;
    font-weight:850;
    letter-spacing:.035em;
    text-transform:uppercase;
}
.itcjobs-v44-signal-value{
    display:block;
    margin:4px 0 1px;
    color:#1f4d1c;
    font-size:23px;
    font-weight:900;
    line-height:1;
}
.itcjobs-v44-signal small{
    margin-top:auto;
    color:#68746c;
    font-size:9.5px;
    line-height:1.3;
}
.itcjobs-v44-signal.is-attention .itcjobs-v44-signal-value{color:#765515}
.itcjobs-v44-command-note{
    margin:10px 1px 0;
    color:#6a756d;
    font-size:10px;
    line-height:1.45;
}
.itcjobs-v44-command-note strong{color:#3c4a40}
@media(max-width:920px){.itcjobs-v44-signal-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:620px){
    .itcjobs-v44-command{padding:13px}
    .itcjobs-v44-command-head{align-items:flex-start;flex-direction:column;gap:9px}
    .itcjobs-v44-signal-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .itcjobs-v44-signal:last-child{grid-column:1/-1}
}

/* ========================================================================== 
   V44.1 — PRO MARKET PULSE + NON-PRO DISCOVERY
   --------------------------------------------------------------------------
   Presentation only. Pro values are hydrated from the existing cached matcher;
   non-Pro teaser values are facts already loaded for the directory request.
   ========================================================================== */
.itcjobs-v441-pulse{
    margin-top:12px;
    padding:13px;
    border:1px solid #d6e2d4;
    border-radius:11px;
    background:rgba(255,255,255,.76);
}
.itcjobs-v441-pulse-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:10px;
}
.itcjobs-v441-pulse-head span{
    display:block;
    margin-bottom:2px;
    color:#2c6128;
    font-size:9px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.itcjobs-v441-pulse-head strong{display:block;color:#223027;font-size:14px;line-height:1.3}
.itcjobs-v441-pulse-head p{margin:3px 0 0;color:#6b756e;font-size:10.5px;line-height:1.4}
.itcjobs-v441-pulse-status{
    flex:0 0 auto;
    padding:5px 8px;
    border:1px solid #d8e3d6;
    border-radius:999px;
    background:#f8fbf7;
    color:#627066;
    font-size:9px;
    font-weight:850;
    white-space:nowrap;
}
.itcjobs-v441-pulse-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:7px}
.itcjobs-v441-pulse-item{
    min-width:0;
    padding:10px;
    border:1px solid #e0e8df;
    border-radius:9px;
    background:#fff;
}
.itcjobs-v441-pulse-item span{display:block;color:#68736c;font-size:8.7px;font-weight:850;letter-spacing:.035em;text-transform:uppercase}
.itcjobs-v441-pulse-item strong{display:block;margin:4px 0 2px;color:#214d20;font-size:17px;line-height:1.15;overflow-wrap:anywhere}
.itcjobs-v441-pulse-item small{display:block;color:#707a73;font-size:9.2px;line-height:1.35}
.itcjobs-v441-pulse-summary{margin:9px 1px 0;color:#556158;font-size:10px;line-height:1.45}
.itcjobs-v441-pulse-summary strong{color:#2f4732}
.itcjobs-v441-pulse-summary a{color:#2c6128!important;font-weight:850;text-decoration:none!important}

.itcjobs-v441-teaser{
    margin:0 0 13px;
    padding:16px;
    border:1px solid #dfcf9e;
    border-left:5px solid #b77b16;
    border-radius:14px;
    background:linear-gradient(145deg,#fffdf7 0%,#fff8e8 100%);
    box-shadow:0 9px 24px rgba(92,67,18,.05);
}
.itcjobs-v441-teaser-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:12px}
.itcjobs-v441-teaser-copy>span{display:block;margin-bottom:3px;color:#855f17;font-size:9px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.itcjobs-v441-teaser-copy h2{margin:0;color:#332d20;font-size:18px;line-height:1.3}
.itcjobs-v441-teaser-copy p{max-width:760px;margin:5px 0 0;color:#6e6759;font-size:11.5px;line-height:1.5}
.itcjobs-v441-teaser-cta{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 13px;border:1px solid #2c6128;border-radius:8px;background:#2c6128;color:#fff!important;text-decoration:none!important;font-size:11px;font-weight:900;white-space:nowrap}
.itcjobs-v441-teaser-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:7px}
.itcjobs-v441-teaser-item{position:relative;min-width:0;min-height:75px;padding:10px;border:1px solid #e8dcc0;border-radius:9px;background:rgba(255,255,255,.86)}
.itcjobs-v441-teaser-item span{display:block;color:#716b60;font-size:8.6px;font-weight:850;letter-spacing:.035em;text-transform:uppercase}
.itcjobs-v441-teaser-item strong{display:block;margin:5px 0 2px;color:#684d19;font-size:18px;line-height:1.1;overflow-wrap:anywhere}
.itcjobs-v441-teaser-item small{display:block;color:#7a7469;font-size:9px;line-height:1.3}
.itcjobs-v441-teaser-item.is-locked{border-style:dashed;background:rgba(255,255,255,.66)}
.itcjobs-v441-teaser-item.is-locked strong{color:#8a8170;letter-spacing:.03em}
.itcjobs-v441-teaser-item.is-live{border-color:#d4be80;background:#fffaf0}
.itcjobs-v441-teaser-foot{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:10px;color:#716b60;font-size:10px;line-height:1.45}
.itcjobs-v441-teaser-foot strong{color:#4e4025}
@media(max-width:1050px){.itcjobs-v441-teaser-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:860px){.itcjobs-v441-pulse-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){
    .itcjobs-v441-teaser-head,.itcjobs-v441-teaser-foot{align-items:flex-start;flex-direction:column}
    .itcjobs-v441-teaser-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .itcjobs-v441-teaser-cta{width:100%;box-sizing:border-box}
    .itcjobs-v441-pulse-head{flex-direction:column;gap:7px}
    .itcjobs-v441-pulse-status{white-space:normal}
}

/* ==========================================================================
   V44.2 — PASSIVE PRO ADVANTAGE / FOMO LAYER
   --------------------------------------------------------------------------
   Pure presentation + browser-state enhancement. No new background process,
   database table, cron, email or full-feed request is introduced.
   ========================================================================== */
.itcjobs-v442-history-badge{
    border-color:#ddcc9d!important;
    background:#fff8e8!important;
    color:#725315!important;
}
.itcjobs-v442-card-insight{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin:11px 0 0;
    padding:9px 11px;
    border:1px dashed #d9ca9f;
    border-radius:9px;
    background:#fffaf0;
}
.itcjobs-v442-card-insight-copy{min-width:0;color:#716852;font-size:9.6px;line-height:1.45}
.itcjobs-v442-card-insight-copy>strong{display:block;margin-bottom:3px;color:#654d1e;font-size:10px}
.itcjobs-v442-card-insight-locks{display:flex;gap:5px 10px;flex-wrap:wrap}
.itcjobs-v442-card-insight-locks span{white-space:nowrap}
.itcjobs-v442-card-insight-locks b{color:#3f473f;font-weight:850}
.itcjobs-v442-card-insight-locks em{margin-left:3px;color:#8a7c5d;font-size:8.5px;font-style:normal;font-weight:850;text-transform:uppercase}
.itcjobs-v442-card-insight a{flex:0 0 auto;color:#2c6128!important;text-decoration:none!important;font-size:9.5px;font-weight:900;white-space:nowrap}
/* V44.3: the same card area becomes useful after upgrade rather than
   disappearing. Values hydrate from the existing cached matcher/pulse. */
.itcjobs-v442-card-insight.is-pro-v443{border-style:solid;border-color:#bfd5bd;background:#f5faf4}
.itcjobs-v442-card-insight.is-pro-v443 .itcjobs-v442-card-insight-copy>strong{color:#245321}
.itcjobs-v443-card-insight-values{display:flex;gap:6px 12px;flex-wrap:wrap}
.itcjobs-v443-card-insight-values span{display:flex;align-items:baseline;gap:4px;min-width:0}
.itcjobs-v443-card-insight-values b{color:#3f473f;font-weight:850;white-space:nowrap}
.itcjobs-v443-card-insight-values em{color:#2c6128;font-style:normal;font-weight:900}
.itcjobs-v443-card-insight-values em.is-muted{color:#777f78;font-weight:800}
.itcjobs-v443-card-insight-values em.is-caution{color:#8a6519}
.itcjobs-v443-price-deadline{display:block;margin-top:5px;color:#f0dfb2;font-size:10px;font-weight:800;line-height:1.4}
.itcjob-v443-price-note{display:block;margin-top:10px;color:#d8e7d8;font-size:12px;line-height:1.5}
.itcjobs-v442-context{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:0 0 13px;
    padding:12px 14px;
    border:1px solid #dfcf9e;
    border-left:4px solid #b77b16;
    border-radius:10px;
    background:#fffaf0;
}
.itcjobs-v442-context-copy{min-width:0}
.itcjobs-v442-context-copy span{display:block;margin-bottom:2px;color:#855f17;font-size:8.5px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.itcjobs-v442-context-copy strong{display:block;color:#493b20;font-size:12px;line-height:1.35}
.itcjobs-v442-context-copy p{margin:3px 0 0;color:#756c58;font-size:10px;line-height:1.45}
.itcjobs-v442-context a{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 11px;border:1px solid #2c6128;border-radius:7px;background:#fff;color:#2c6128!important;text-decoration:none!important;font-size:9.5px;font-weight:900;white-space:nowrap}
.itcjobs-v1-sort option[disabled]{color:#8a8170}
@media(max-width:700px){
    .itcjobs-v442-card-insight,.itcjobs-v442-context{align-items:flex-start;flex-direction:column}
    .itcjobs-v442-card-insight a,.itcjobs-v442-context a{white-space:normal}
}

/* V41.7 — My Contract Matches (Contractor Pro). */
.itcjobs-v417-match-strip{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:0 0 18px;padding:17px 19px;border:1px solid #d4e2d4;border-left:5px solid #2c6128;border-radius:13px;background:#f8fbf8}
.itcjobs-v417-match-strip-copy span{display:block;margin:0 0 4px;color:#2c6128;font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.itcjobs-v417-match-strip-copy strong{display:block;color:#243128;font-size:16px;line-height:1.35}
.itcjobs-v417-match-strip-copy p{margin:4px 0 0;color:#667269;font-size:12.5px;line-height:1.55}
.itcjobs-v417-match-strip-actions{display:flex;gap:8px;flex-wrap:wrap;flex:0 0 auto}
.itcjobs-v417-match-strip-actions button,.itcjobs-v417-match-strip-actions a{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:0 13px;border:1px solid #2c6128;border-radius:8px;background:#2c6128;color:#fff!important;text-decoration:none!important;font-size:12px;font-weight:850;cursor:pointer}
.itcjobs-v417-match-strip-actions a.secondary{background:#fff;color:#2c6128!important}
.itcjobs-v417-match-strip.is-locked{border-left-color:#b27a17;background:#fffaf0}
.itcjobs-v417-match-strip.is-locked .itcjobs-v417-match-strip-copy span{color:#8a641b}
.itcjobs-v417-card-match{background:#edf6eb!important;color:#245520!important;border-color:#c7dfc3!important}
.itcjobs-v417-card-match.is-strong{background:#dff0dc!important;color:#1e4b1f!important;border-color:#b8d9b2!important}
.itcjobs-v417-profile-note{margin-top:6px;color:#657168;font-size:11.5px;line-height:1.5}
@media(max-width:760px){.itcjobs-v417-match-strip{align-items:flex-start;flex-direction:column}.itcjobs-v417-match-strip-actions{width:100%}.itcjobs-v417-match-strip-actions button,.itcjobs-v417-match-strip-actions a{flex:1}}

/* V40.6 — Free/legacy Jobs tier locks + richer teaser cards; pending/active Pro users never receive these classes. */
.itcjobs-v1-filter-toggle.is-pro-locked-v40{border-color:#d8c58c!important;background:#fff9e9!important;color:#6e5314!important}
.itcjobs-v1-filter-chip.is-pro-locked-v40{position:relative;border-style:dashed!important;background:#fafafa!important;color:#7b827d!important}.itcjobs-v1-filter-chip.is-pro-locked-v40:after{content:' PRO';margin-left:5px;color:#2c6128;font-size:9px;font-weight:900}
.itcjobs-v40-basic-card{margin:14px 0 0;padding:14px;border:1px solid #dce5dc;border-radius:11px;background:linear-gradient(180deg,#fbfdfb,#f7faf7);color:#59655c;font-size:12px;line-height:1.5}
.itcjobs-v403-basic-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 18px}.itcjobs-v403-basic-facts span{min-width:0}.itcjobs-v403-basic-facts strong{color:#35443a}
.itcjobs-v403-basic-skills{display:flex;flex-wrap:wrap;gap:6px;margin-top:11px}.itcjobs-v403-basic-skills span{padding:5px 8px;border:1px solid #d6e1d6;border-radius:7px;background:#fff;color:#475649;font-size:11px;font-weight:800}.itcjobs-v403-basic-skills span.is-more{border-style:dashed;color:#2c6128;background:#f3f8f2}
.itcjobs-v403-basic-lockline{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:12px;padding-top:11px;border-top:1px solid #e0e7e0;color:#737e75;font-size:11.5px}.itcjobs-v403-basic-lockline:before{content:'🔒';flex:0 0 auto}.itcjobs-v403-basic-lockline span{flex:1}.itcjobs-v403-basic-lockline a{flex:0 0 auto;color:#2c6128!important;font-weight:900;text-decoration:none!important;white-space:nowrap}
.itcjobs-v40-pro-action{background:#fff9e9!important;border-color:#dccb9c!important;color:#6d5317!important;text-decoration:none!important}.itcjobs-v40-pro-link{display:inline-flex;align-items:center;justify-content:center;text-decoration:none!important}
@media(max-width:680px){.itcjobs-v403-basic-facts{grid-template-columns:1fr}.itcjobs-v403-basic-lockline{align-items:flex-start;flex-wrap:wrap}.itcjobs-v403-basic-lockline a{margin-left:22px}}


/* ==========================================================================\n   V50.11 — STRUCTURAL CONTRACT CARD REDESIGN\n   --------------------------------------------------------------------------\n   Final directory-card layer, intentionally appended after all legacy card\n   CSS. It is scoped to the new article class so it cannot affect detail pages,\n   alerts, modals or unrelated site components. No gradients are used here.\n   ========================================================================== */
.itcjobs-v511-card{
    position:relative!important;
    isolation:isolate;
    overflow:hidden!important;
    border:1px solid #d8dfd9!important;
    border-radius:14px!important;
    background:#fff!important;
    background-image:none!important;
    box-shadow:0 3px 12px rgba(25,43,27,.055)!important;
    transition:border-color .16s ease,box-shadow .16s ease,transform .16s ease!important;
}
.itcjobs-v511-card::after{display:none!important;content:none!important;background:none!important}
.itcjobs-v511-card::before{
    content:""!important;
    position:absolute!important;
    inset:0 auto 0 0!important;
    width:3px!important;
    background:#2c6128!important;
}
.itcjobs-v511-card[data-ir35="inside"]::before{background:#747c76!important}
.itcjobs-v511-card.itcjobs-v46-card-premium{border-color:#d9cfad!important;background:#fff!important;background-image:none!important}
.itcjobs-v511-card.itcjobs-v46-card-premium::before{background:#9a7217!important}
.itcjobs-v511-card:hover{transform:translateY(-1px)!important;border-color:#c6d0c7!important;box-shadow:0 8px 20px rgba(25,43,27,.075)!important}

.itcjobs-v511-card .itcjobs-v1-card-main{padding:20px 22px 14px 25px!important;background:#fff!important;background-image:none!important}
.itcjobs-v511-card .itcjobs-v1-card-head{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    align-items:end!important;
    gap:28px!important;
    padding:0 0 15px!important;
    border-bottom:1px solid #e9eeea!important;
}
.itcjobs-v511-card .itcjobs-v4-card-kicker{
    display:block!important;
    margin:0 0 5px!important;
    color:#768078!important;
    font-size:9px!important;
    font-weight:900!important;
    letter-spacing:.12em!important;
    text-transform:uppercase!important;
}
.itcjobs-v511-card .itcjobs-v4-card-kicker::before{display:none!important;content:none!important}
.itcjobs-v511-card .itcjobs-v1-title-wrap h2{
    margin:0!important;
    color:#172019!important;
    font-size:clamp(24px,2.35vw,30px)!important;
    line-height:1.1!important;
    letter-spacing:-.032em!important;
}
.itcjobs-v511-card .itcjobs-v1-title-wrap h2 a{color:inherit!important;text-decoration:none!important}
.itcjobs-v511-card .itcjobs-v1-title-wrap h2 a:hover{color:#2c6128!important}
.itcjobs-v511-card .itcjobs-v508-card-date{margin:5px 0 0!important;color:#7a837d!important;font-size:10.5px!important;font-weight:700!important}

/* Status belongs beneath the role title; it should not become a second design layer. */
.itcjobs-v511-card .itcjobs-v1-badges{display:flex!important;flex-wrap:wrap!important;gap:6px!important;margin:10px 0 0!important}
.itcjobs-v511-card .itcjobs-v1-badge{
    min-height:26px!important;
    padding:4px 9px!important;
    border:1px solid #dce2dd!important;
    border-radius:999px!important;
    background:#f7f8f7!important;
    background-image:none!important;
    box-shadow:none!important;
    color:#4c5550!important;
    font-size:10px!important;
    font-weight:850!important;
}
.itcjobs-v511-card .itcjobs-v1-badge-outside{border-color:#bfd4bd!important;background:#f1f6ef!important;color:#275b28!important}
.itcjobs-v511-card .itcjobs-v1-badge-inside{border-color:#d9dedb!important;background:#f4f5f4!important;color:#505954!important}
.itcjobs-v511-card .itcjobs-v46-premium-badge{border-color:#ddca8e!important;background:#fff8e8!important;color:#715516!important}
.itcjobs-v511-card .itcjobs-v46-early-badge{border-color:#bfd4bd!important;background:#f3f7f2!important;color:#28592a!important}
.itcjobs-v511-card .itcjobs-v417-card-match{border-color:#d3ddd3!important;background:#f6f8f6!important;color:#365e37!important}
.itcjobs-v511-card .itcjobs-v1-new-marker{border-color:#d7dfd8!important;background:#fafbfa!important;color:#4e6551!important}

/* Pay rate restored as a strong dark-green panel with white text. */
.itcjobs-v511-card .itcjobs-v17-card-side{align-self:center!important}
.itcjobs-v511-card .itcjobs-v1-rate{
    min-width:0!important;
    padding:14px 20px 13px!important;
    border-radius:8px!important;
    background:#F7F8F7 !important;
    background-image:none!important;
    box-shadow:none!important;
    text-align:right!important;
}
.itcjobs-v511-card .itcjobs-v1-rate span{
    display:block!important;
    margin:0 0 4px!important;
    color:rgba(255,255,255,.82)!important;
    font-size:8.7px!important;
    font-weight:900!important;
    letter-spacing:.105em!important;
    text-transform:uppercase!important;
}
.itcjobs-v511-card .itcjobs-v1-rate strong{
    display:block!important;
    color:#444 !important;
    font-size:22px!important;
    font-weight:900!important;
    line-height:1.15!important;
    letter-spacing:-.025em!important;
    white-space:nowrap;
}

/* Six factual values in one neutral snapshot. No green background and no box-per-field. */
.itcjobs-v511-card .itcjobs-v511-snapshot{
    display:grid!important;
    grid-template-columns:.82fr 1fr .9fr .72fr 1.06fr 1.25fr!important;
    gap:0!important;
    overflow:hidden!important;
    margin:0 -22px 0 -25px!important;
    border:0!important;
    border-bottom:1px solid #e9eeea!important;
    border-radius:0!important;
    background:#f7f8f7!important;
    background-image:none!important;
}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact{
    min-width:0!important;
    min-height:61px!important;
    padding:11px 13px!important;
    border:0!important;
    border-right:1px solid #e3e8e4!important;
    border-radius:0!important;
    background:transparent!important;
    background-image:none!important;
}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:first-child{padding-left:25px!important}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:last-child{border-right:0!important;padding-right:22px!important}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact span{
    display:block!important;
    margin:0 0 4px!important;
    color:#818a84!important;
    font-size:8.3px!important;
    font-weight:900!important;
    letter-spacing:.085em!important;
    line-height:1.2!important;
    text-transform:uppercase!important;
}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact strong{
    display:block!important;
    overflow:hidden;
    color:#2d3730!important;
    font-size:11.9px!important;
    font-weight:820!important;
    line-height:1.32!important;
    text-overflow:ellipsis;
}

/* Skills get their own row so location/specialism never compete with the title area. */
.itcjobs-v511-card .itcjobs-v511-skills{
    display:block!important;
    margin:0!important;
    padding:12px 0 0!important;
    border:0!important;
    background:#fff!important;
    background-image:none!important;
}
.itcjobs-v511-card .itcjobs-v511-skills .itcjobs-v1-detail-line{
    display:grid!important;
    grid-template-columns:72px minmax(0,1fr)!important;
    align-items:center!important;
    gap:10px!important;
}
.itcjobs-v511-card .itcjobs-v511-skills .itcjobs-v1-detail-line>strong{
    min-width:0!important;
    color:#68736c!important;
    font-size:10px!important;
    font-weight:850!important;
}
.itcjobs-v511-card .itcjobs-v1-skill-list{display:flex!important;flex-wrap:wrap!important;gap:5px!important}
.itcjobs-v511-card .itcjobs-v1-skill{
    padding:5px 8px!important;
    border:1px solid #dce2dd!important;
    border-radius:7px!important;
    background:#fff!important;
    background-image:none!important;
    box-shadow:none!important;
    color:#444f48!important;
    font-size:10.3px!important;
    font-weight:780!important;
}

/* V50.14: clickable core-skill discovery. Scoped to the V50.11 card so no
   global link/button styling can leak into the rest of the site. */
.itcjobs-v511-card a.itcjobs-v514-skill-link{
    display:inline-flex!important;
    align-items:center!important;
    text-decoration:none!important;
    cursor:pointer!important;
    transition:border-color .16s ease,background-color .16s ease,color .16s ease!important;
}
@media (hover:hover) and (pointer:fine){
    .itcjobs-v511-card a.itcjobs-v514-skill-link:hover{
        border-color:#a9bca8!important;
        background:#f2f7f1!important;
        color:#2c6128!important;
    }
}
.itcjobs-v511-card a.itcjobs-v514-skill-link:focus-visible{
    outline:2px solid #2c6128!important;
    outline-offset:2px!important;
}
.itcjobs-v403-basic-skills a.itcjobs-v514-fallback-skill-link{
    display:inline-flex!important;
    align-items:center!important;
    padding:5px 8px!important;
    border:1px solid #d6e1d6!important;
    border-radius:7px!important;
    background:#fff!important;
    color:#475649!important;
    font-size:11px!important;
    font-weight:800!important;
    text-decoration:none!important;
}
@media (hover:hover) and (pointer:fine){
    .itcjobs-v403-basic-skills a.itcjobs-v514-fallback-skill-link:hover{
        color:#2c6128!important;
        text-decoration:underline!important;
    }
}


/* V50.16: Skill Explorer — a deliberate search state rather than a small
   confirmation strip. No gradients; the selected skill, live count and tier
   context are readable at a glance on desktop and mobile. */
.itcjobs-v516-skill-explorer{
    display:none;
    margin:8px 0 14px;
    border:1px solid #c8d9c7;
    border-top:4px solid #2c6128;
    border-radius:14px;
    background:#fff;
    box-shadow:0 8px 24px rgba(31,61,33,.055);
    overflow:hidden;
    scroll-margin-top:92px;
}
.itcjobs-v516-skill-explorer.is-visible{display:block}
.itcjobs-v516-skill-main{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:22px;
    padding:18px 20px 16px;
}
.itcjobs-v516-skill-copy{min-width:0}
.itcjobs-v516-skill-kicker{
    display:block;
    margin-bottom:5px;
    color:#657168;
    font-size:9px;
    font-weight:950;
    letter-spacing:.105em;
    text-transform:uppercase;
}
.itcjobs-v516-skill-copy h2{
    margin:0;
    color:#152419;
    font-size:23px;
    line-height:1.18;
    letter-spacing:-.025em;
}
.itcjobs-v516-skill-name{color:#2c6128}
.itcjobs-v516-skill-copy p{
    margin:6px 0 0;
    max-width:760px;
    color:#5f6b62;
    font-size:12.5px;
    line-height:1.55;
}
.itcjobs-v516-skill-count{
    min-width:118px;
    padding:11px 15px;
    border:1px solid #d4dfd3;
    border-radius:11px;
    background:#f7faf7;
    text-align:center;
}
.itcjobs-v516-skill-count strong{
    display:block;
    color:#214f22;
    font-size:25px;
    line-height:1;
}
.itcjobs-v516-skill-count span{
    display:block;
    margin-top:4px;
    color:#68736a;
    font-size:9px;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;
}
.itcjobs-v516-skill-foot{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:10px 14px 10px 20px;
    border-top:1px solid #e2e8e2;
    background:#f8faf8;
}
.itcjobs-v516-skill-tier{
    display:flex;
    align-items:center;
    gap:9px;
    min-width:0;
    color:#5f6961;
    font-size:10.5px;
    line-height:1.45;
}
.itcjobs-v516-skill-tier-badge{
    flex:0 0 auto;
    padding:4px 7px;
    border:1px solid #cbd7ca;
    border-radius:999px;
    background:#fff;
    color:#355638;
    font-size:8.5px;
    font-weight:950;
    letter-spacing:.055em;
    text-transform:uppercase;
}
.itcjobs-v516-skill-clear{
    flex:0 0 auto;
    min-height:36px;
    padding:0 12px;
    border:1px solid #b8c7b7;
    border-radius:8px;
    background:#fff;
    color:#29482d;
    font:inherit;
    font-size:10.5px;
    font-weight:900;
    cursor:pointer;
}
@media (hover:hover) and (pointer:fine){
    .itcjobs-v516-skill-clear:hover{border-color:#2c6128;color:#2c6128;background:#fff}
}
.itcjobs-v516-skill-clear:focus-visible,
.itcjobs-v516-skill-explorer:focus-visible{outline:2px solid #2c6128;outline-offset:2px}
.itcjobs-v511-card a.itcjobs-v514-skill-link.is-active-skill-v515,
.itcjobs-v403-basic-skills a.itcjobs-v514-fallback-skill-link.is-active-skill-v515{
    border-color:#2c6128!important;
    background:#edf6eb!important;
    color:#214d20!important;
    box-shadow:inset 0 0 0 1px rgba(44,97,40,.08)!important;
}
@media(max-width:680px){
    .itcjobs-v516-skill-main{grid-template-columns:1fr;gap:12px;padding:16px}
    .itcjobs-v516-skill-copy h2{font-size:20px}
    .itcjobs-v516-skill-count{min-width:0;width:100%;text-align:left}
    .itcjobs-v516-skill-count strong,.itcjobs-v516-skill-count span{display:inline-block}
    .itcjobs-v516-skill-count span{margin:0 0 0 6px}
    .itcjobs-v516-skill-foot{align-items:stretch;flex-direction:column;padding:11px 16px 14px}
    .itcjobs-v516-skill-tier{align-items:flex-start}
    .itcjobs-v516-skill-clear{width:100%}
}

/* Insight remains useful but visually subordinate to the actual vacancy. */
.itcjobs-v511-card .itcjobs-v442-card-insight{
    margin:12px 0 0!important;
    padding:10px 12px!important;
    border:1px solid #dde4de!important;
    border-radius:9px!important;
    background:#fbfcfb!important;
    background-image:none!important;
    box-shadow:none!important;
}
.itcjobs-v511-card .itcjobs-v442-card-insight.is-pro-v443{border-left:3px solid #7ca176!important}

.itcjobs-v511-card .itcjobs-v1-card-foot{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:18px!important;
    padding:10px 18px 10px 25px!important;
    border-top:1px solid #e5eae6!important;
    background:#fff!important;
    background-image:none!important;
}
.itcjobs-v511-card .itcjobs-v18-freshness{width:min(315px,100%)!important;min-width:235px!important}
.itcjobs-v511-card .itcjobs-v18-freshness-head{margin-bottom:3px!important}
.itcjobs-v511-card .itcjobs-v18-freshness-title{font-size:8.3px!important;letter-spacing:.09em!important;color:#818984!important}
.itcjobs-v511-card .itcjobs-v18-freshness-status{padding:0!important;background:transparent!important;background-image:none!important;box-shadow:none!important;font-size:9px!important}
.itcjobs-v511-card .itcjobs-v18-freshness-segment{height:3px!important;background:#e4e8e4!important}
.itcjobs-v511-card .itcjobs-v18-freshness.is-fresh .itcjobs-v18-freshness-segment.is-active{background:#4f874c!important}
.itcjobs-v511-card .itcjobs-v18-freshness.is-current .itcjobs-v18-freshness-segment.is-active{background:#c99b20!important}
.itcjobs-v511-card .itcjobs-v18-freshness.is-expiring .itcjobs-v18-freshness-segment.is-active{background:#d8791d!important}
.itcjobs-v511-card .itcjobs-v18-freshness.is-closing .itcjobs-v18-freshness-segment.is-active{background:#c74c45!important}
.itcjobs-v511-card .itcjobs-v18-freshness-copy{margin-top:3px!important;font-size:9.2px!important}
.itcjobs-v511-card .itcjobs-v18-freshness-copy strong{font-size:9.2px!important}

.itcjobs-v511-card .itcjobs-v1-actions{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:6px!important;flex-wrap:wrap!important}
.itcjobs-v511-card .itcjobs-v1-action,
.itcjobs-v511-card .itcjobs-v3-more summary{
    min-height:36px!important;
    padding:0 11px!important;
    border:1px solid #d8ded9!important;
    border-radius:7px!important;
    background:#fff!important;
    background-image:none!important;
    box-shadow:none!important;
    color:#4a544e!important;
    font-size:10.8px!important;
    font-weight:850!important;
}
.itcjobs-v511-card .itcjobs-v1-action:hover,
.itcjobs-v511-card .itcjobs-v1-action.is-active,
.itcjobs-v511-card .itcjobs-v3-more summary:hover{border-color:#aec0ae!important;background:#f6f8f6!important;color:#2c6128!important}
.itcjobs-v511-card .itcjobs-v40-pro-action{border-color:#ddce9d!important;background:#fffaf0!important;color:#6d541b!important}
.itcjobs-v511-card .itcjobs-v1-view{
    min-height:38px!important;
    padding:0 16px!important;
    border:1px solid #2c6128!important;
    border-radius:7px!important;
    background:#2c6128!important;
    background-image:none!important;
    box-shadow:none!important;
    color:#fff!important;
    font-size:11.2px!important;
    font-weight:900!important;
}
.itcjobs-v511-card .itcjobs-v1-view:hover{background:#244f22!important;border-color:#244f22!important}

@media(max-width:1180px){
    .itcjobs-v511-card .itcjobs-v511-snapshot{grid-template-columns:repeat(3,minmax(0,1fr))!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact{border-bottom:1px solid #e3e8e4!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-child(3n){border-right:0!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-last-child(-n+3){border-bottom:0!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:first-child{padding-left:25px!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-child(4){padding-left:25px!important}
}
@media(max-width:820px){
    .itcjobs-v511-card .itcjobs-v1-card-head{grid-template-columns:1fr!important;gap:10px!important;align-items:start!important}
    .itcjobs-v511-card .itcjobs-v1-rate{text-align:left!important}
    .itcjobs-v511-card .itcjobs-v1-rate strong{font-size:20px!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot{grid-template-columns:repeat(2,minmax(0,1fr))!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-child(3n){border-right:1px solid #e3e8e4!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-child(2n){border-right:0!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-last-child(-n+3){border-bottom:1px solid #e3e8e4!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-last-child(-n+2){border-bottom:0!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-child(odd){padding-left:25px!important}
    .itcjobs-v511-card .itcjobs-v1-card-foot{align-items:flex-start!important;flex-direction:column!important}
    .itcjobs-v511-card .itcjobs-v18-freshness{width:100%!important;min-width:0!important}
    .itcjobs-v511-card .itcjobs-v1-actions{width:100%!important;justify-content:flex-start!important}
}
@media(max-width:520px){
    .itcjobs-v511-card .itcjobs-v1-card-main{padding:17px 15px 12px 19px!important}
    .itcjobs-v511-card .itcjobs-v1-title-wrap h2{font-size:23px!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot{margin:0 -15px 0 -19px!important;grid-template-columns:1fr!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact,
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:nth-child(n){padding:9px 15px 9px 19px!important;border-right:0!important;border-bottom:1px solid #e3e8e4!important}
    .itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:last-child{border-bottom:0!important}
    .itcjobs-v511-card .itcjobs-v511-skills .itcjobs-v1-detail-line{grid-template-columns:1fr!important;gap:6px!important}
    .itcjobs-v511-card .itcjobs-v1-card-foot{padding:10px 15px 11px 19px!important}
    .itcjobs-v511-card .itcjobs-v1-view{flex:1!important;justify-content:center!important}
}


/* =============================================================================
   ITC JOBS V50.13 — MARKET POSITIONING + PRO IDENTITY CONVERSION
   Presentation only. No entitlement, filtering, matching or request behaviour.
   ========================================================================== */
.itcjobs-v513-kicker{display:inline-flex;align-items:center;gap:8px;margin:0 0 8px;color:#2c6128;font-size:10px;font-weight:950;letter-spacing:.10em;text-transform:uppercase}
.itcjobs-v513-kicker::before{content:"";width:8px;height:8px;border-radius:50%;background:#2c6128;box-shadow:0 0 0 4px rgba(44,97,40,.10)}
.itcjobs-v513-intro{max-width:850px;margin:0;color:#526055;font-size:15.5px;line-height:1.65}
.itcjobs-v513-market{display:flex;flex-wrap:wrap;gap:7px;margin-top:15px}
.itcjobs-v513-market span{display:inline-flex;align-items:center;min-height:29px;padding:5px 9px;border:1px solid #d8e3d7;border-radius:8px;background:#f8faf7;color:#405047;font-size:10.5px;font-weight:850;line-height:1.25}
.itcjobs-v513-market span strong{margin-right:4px;color:#214f20;font-size:12px}
.itcjobs-v513-market span.is-premium{border-color:#ddcc98;background:#fffaf0;color:#6e571b}
.itcjobs-v513-market span.is-premium strong{color:#735814}
.itcjobs-v513-market span.is-early{border-color:#bcd5b9;background:#f2f8f1;color:#2c6128}
.itcjobs-v513-identity-note{margin-top:13px;padding:10px 12px;border:1px solid rgba(146,202,112,.28);border-radius:9px;background:rgba(255,255,255,.065);color:#d6e3d7;font-size:11px;line-height:1.5}
.itcjobs-v513-identity-note strong{color:#a8dd86}
.itcjobs-v513-identity-note span{color:#fff;font-weight:800}
.itcjobs-v513-action-note{display:block;margin:7px 0 0;color:#b9cabb;font-size:9.5px;line-height:1.4;text-align:right}
.itcjobs-v513-search-promise{display:flex;flex-wrap:wrap;gap:6px 12px;margin:7px 0 0;color:#6a756d;font-size:10.5px;font-weight:750}
.itcjobs-v513-search-promise span::before{content:"✓";margin-right:5px;color:#2c6128;font-weight:950}
@media(max-width:980px){.itcjobs-v513-action-note{text-align:left}}
@media(max-width:640px){.itcjobs-v513-intro{font-size:14px}.itcjobs-v513-market{gap:6px}.itcjobs-v513-market span{font-size:10px}}



/* =============================================================================
   ITC JOBS V50.28 — FINAL CSS FINISHING PASS
   -----------------------------------------------------------------------------
   Final-layer overrides only. No markup or application behaviour is changed.
   Design goals: stronger search hierarchy, quieter secondary UI, consistent
   surfaces, restrained shadows and the established IT Contractors UK palette.
   ========================================================================== */
.itcjobs-v1-app{
    --itc-v528-green:#2c6128;
    --itc-v528-green-dark:#214f20;
    --itc-v528-green-deep:#173f1b;
    --itc-v528-ink:#172019;
    --itc-v528-muted:#637067;
    --itc-v528-line:#d8e2d8;
    --itc-v528-line-soft:#e7ece7;
    --itc-v528-soft:#f7faf7;
    --itc-v528-gold:#c79a2a;
    --itc-v528-radius:12px;
    --itc-v528-shadow:0 8px 24px rgba(24,50,27,.055);
    --itc-v528-shadow-hover:0 13px 30px rgba(24,50,27,.085);
}

/* Header ------------------------------------------------------------------ */
.itcjobs-v1-header{
    align-items:start!important;
    gap:30px!important;
    padding:20px 0 24px!important;
}
.itcjobs-v513-kicker{
    margin-bottom:9px!important;
    font-size:9.5px!important;
    letter-spacing:.105em!important;
}
.itcjobs-v1-header h1{
    max-width:880px!important;
    margin-bottom:12px!important;
    color:#111a27!important;
    font-size:clamp(40px,4.55vw,56px)!important;
    line-height:1.02!important;
    letter-spacing:-.045em!important;
}
.itcjobs-v513-intro{
    max-width:900px!important;
    color:#526055!important;
    font-size:15px!important;
    line-height:1.68!important;
}
.itcjobs-v513-market{
    gap:6px!important;
    margin-top:14px!important;
}
.itcjobs-v513-market span{
    min-height:28px!important;
    padding:5px 9px!important;
    border-color:#d8e2d8!important;
    border-radius:7px!important;
    background:#fafcfa!important;
    box-shadow:0 1px 0 rgba(255,255,255,.9)!important;
    color:#48554c!important;
    font-size:10px!important;
}
.itcjobs-v513-market span strong{
    color:#214f20!important;
    font-size:11.5px!important;
}
.itcjobs-v513-market span.is-premium{
    border-color:#dfcf9e!important;
    background:#fffaf0!important;
}
.itcjobs-v513-market span.is-early{
    border-color:#c8dcc6!important;
    background:#f5faf4!important;
}
.itcjobs-v12-header-links{
    gap:8px!important;
    margin-top:15px!important;
}
.itcjobs-v12-header-links a{
    min-height:38px!important;
    padding:0 12px!important;
    border-color:#cfdacf!important;
    border-radius:8px!important;
    background:#fff!important;
    box-shadow:0 2px 6px rgba(25,54,28,.025)!important;
    font-size:12px!important;
    transition:border-color .16s ease,background-color .16s ease,color .16s ease,transform .16s ease!important;
}
.itcjobs-v12-header-links a:hover{
    transform:translateY(-1px)!important;
    border-color:#a9c0a6!important;
    background:#f7faf7!important;
}
.itcjobs-v12-header-links a:last-child{
    background:#173f1b!important;
    border-color:#173f1b!important;
    box-shadow:none!important;
}
.itcjobs-v12-header-links a:last-child:hover{background:#214f20!important}

/* Account box -------------------------------------------------------------- */
.itcjobs-v35-account-box{
    min-width:232px!important;
    padding:14px!important;
    border-color:#d5e0d5!important;
    border-radius:11px!important;
    background:#fbfcfb!important;
    box-shadow:0 7px 20px rgba(25,54,28,.045)!important;
}
.itcjobs-v35-account-box span{
    margin-bottom:4px!important;
    color:#7a857d!important;
    font-size:9.5px!important;
}
.itcjobs-v35-account-box strong{
    margin-bottom:10px!important;
    color:#263128!important;
    font-size:12.5px!important;
}
.itcjobs-v35-account-box a{
    min-height:39px!important;
    border-radius:8px!important;
    box-shadow:none!important;
    font-size:12px!important;
}

/* Promotional carousel: polished but subordinate to search ---------------- */
.itcjobs-v5026-carousel{
    margin-top:8px!important;
    margin-bottom:14px!important;
}
.itcjobs-v5026-cv,
.itcjobs-v5026-slide > .itcjobs-pro-v37{
    box-shadow:0 8px 24px rgba(25,54,28,.055)!important;
}
.itcjobs-v5026-cv{
    border-color:#d3e0d2!important;
    background:#fbfdfb!important;
}
.itcjobs-v5026-progress{margin-top:7px!important}
.itcjobs-v5026-progress button{height:3px!important;background:#dfe7de!important}

/* Access strip: factual, compact and visually secondary ------------------- */
.itcjobs-v41-early-strip{
    gap:14px!important;
    margin:5px 0 12px!important;
    padding:12px 14px!important;
    border-color:#e3d8ba!important;
    border-left-width:3px!important;
    border-radius:10px!important;
    background:#fffaf0!important;
    box-shadow:0 3px 12px rgba(88,68,19,.025)!important;
}
.itcjobs-v41-early-eyebrow{
    padding:5px 7px!important;
    border-radius:6px!important;
    background:#fff5da!important;
    font-size:8.5px!important;
}
.itcjobs-v41-early-strip p{
    color:#5d6960!important;
    font-size:10.8px!important;
}
.itcjobs-v41-early-clock,
.itcjobs-v45-pass-chip{
    min-height:32px!important;
    padding:6px 10px!important;
    border-radius:8px!important;
    box-shadow:none!important;
    font-size:10.5px!important;
}

/* Contract Finder — primary interaction surface --------------------------- */
.itcjobs-v1-search-panel{
    position:relative!important;
    margin-top:0!important;
    padding:19px!important;
    border:1px solid #d3dfd3!important;
    border-top:4px solid #2c6128!important;
    border-radius:16px!important;
    background:#fff!important;
    box-shadow:0 14px 34px rgba(25,54,28,.075)!important;
    scroll-margin-top:82px;
}
.itcjobs-v3-search-heading{
    gap:9px!important;
    margin-bottom:13px!important;
}
.itcjobs-v3-search-heading span{
    color:#2c6128!important;
    font-size:9px!important;
    letter-spacing:.11em!important;
}
.itcjobs-v3-search-heading strong{
    color:#16201a!important;
    font-size:18px!important;
    letter-spacing:-.018em!important;
}
.itcjobs-v513-search-promise{
    gap:5px 10px!important;
    margin-top:6px!important;
    color:#738077!important;
    font-size:9.5px!important;
}
.itcjobs-v1-search-row{
    gap:8px!important;
}
.itcjobs-v1-search-wrap{
    min-height:56px!important;
    border:1px solid #cbd7cb!important;
    border-radius:12px!important;
    background:#fff!important;
    box-shadow:0 4px 12px rgba(25,54,28,.04)!important;
}
.itcjobs-v1-search-wrap:hover{border-color:#afc3ad!important}
.itcjobs-v1-search-wrap:focus-within{
    border-color:#62925f!important;
    box-shadow:0 0 0 4px rgba(44,97,40,.09),0 7px 18px rgba(25,54,28,.05)!important;
}
.itcjobs-v1-search-input{
    min-height:54px!important;
    padding-left:50px!important;
    color:#18231a!important;
    font-size:15.5px!important;
}
.itcjobs-v1-search-input::placeholder{color:#7b857e!important;opacity:1}
.itcjobs-v1-search-icon{left:18px!important;color:#66736a!important}
.itcjobs-v24-search-submit,
.itcjobs-v1-filter-toggle,
.itcjobs-v415-saved-button{
    min-height:56px!important;
    border-radius:10px!important;
    box-shadow:none!important;
    transition:background-color .16s ease,border-color .16s ease,color .16s ease,transform .16s ease!important;
}
.itcjobs-v24-search-submit{
    border-color:#214f20!important;
    background:#214f20!important;
    font-size:12.5px!important;
}
.itcjobs-v24-search-submit:hover,
.itcjobs-v24-search-submit:focus-visible{
    transform:translateY(-1px)!important;
    background:#173f1b!important;
    border-color:#173f1b!important;
}
.itcjobs-v1-filter-toggle{
    border-color:#2c6128!important;
    background:#fff!important;
    color:#2c6128!important;
    font-size:12px!important;
}
.itcjobs-v1-filter-toggle:hover,
.itcjobs-v1-filter-toggle[aria-expanded="true"]{
    transform:translateY(-1px)!important;
    border-color:#214f20!important;
    background:#f5faf4!important;
    color:#214f20!important;
}
.itcjobs-v1-filter-toggle.is-pro-locked-v40{
    border-color:#d8c58c!important;
    background:#fffaf0!important;
    color:#6e5314!important;
}
.itcjobs-v415-saved-button{
    border-color:#cfd9cf!important;
    background:#fff!important;
    color:#344238!important;
    font-size:12px!important;
}
.itcjobs-v415-saved-button:hover{
    transform:translateY(-1px)!important;
    border-color:#9cb99a!important;
    background:#f8fbf8!important;
}
.itcjobs-v415-saved-button.is-primary{
    border-color:#aac4a7!important;
    color:#245520!important;
}

/* Quick filters ------------------------------------------------------------ */
.itcjobs-v1-primary-filters{
    gap:7px!important;
    margin-top:13px!important;
    padding-top:13px!important;
    border-top-color:#e8ede8!important;
}
.itcjobs-v1-filter-chip{
    min-height:35px!important;
    padding:7px 11px!important;
    border-color:#dce4dc!important;
    border-radius:8px!important;
    background:#fafbfa!important;
    color:#59655d!important;
    font-size:11px!important;
    font-weight:820!important;
    transition:border-color .15s ease,background-color .15s ease,color .15s ease,transform .15s ease!important;
}
.itcjobs-v1-filter-chip:hover{
    transform:translateY(-1px)!important;
    border-color:#b7cbb5!important;
    background:#f5f8f5!important;
}
.itcjobs-v1-filter-chip.is-active{
    border-color:#2c6128!important;
    background:#2c6128!important;
    color:#fff!important;
}

/* Filter drawer ------------------------------------------------------------ */
.itcjobs-v1-filter-panel{
    box-shadow:-22px 0 52px rgba(17,24,39,.18)!important;
}
.itcjobs-v4-filter-head{
    border-bottom-color:#e3e9e3!important;
    background:#fff!important;
    backdrop-filter:none!important;
}
.itcjobs-v4-filter-head button{
    border-radius:9px!important;
    background:#fff!important;
}
.itcjobs-v1-select,
.itcjobs-v1-check{
    border-radius:9px!important;
}
.itcjobs-v1-select:focus{
    border-color:#729b6f!important;
    box-shadow:0 0 0 3px rgba(44,97,40,.08)!important;
    outline:none!important;
}

/* Pro utilities / secondary tools ----------------------------------------- */
.itcjobs-v419-pro-tools{
    gap:10px!important;
    margin:10px 0 14px!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-v10,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip{
    min-height:124px!important;
    border-color:#d8e3d7!important;
    border-radius:11px!important;
    background:#fbfcfb!important;
    box-shadow:0 4px 14px rgba(25,54,28,.035)!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-icon-v10{
    width:40px!important;
    height:40px!important;
    border-radius:9px!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-copy-v10 strong,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-copy strong{
    color:#263128!important;
    font-size:14.5px!important;
}
.itcjobs-v419-pro-tools .itcjobs-alert-centre-copy-v10 p,
.itcjobs-v419-pro-tools .itcjobs-v417-match-strip-copy p{
    color:#68736b!important;
    font-size:11.2px!important;
}

/* Results toolbar ---------------------------------------------------------- */
.itcjobs-v24-results-toolbar{
    margin:13px 0 12px!important;
    padding:9px 10px!important;
    border:1px solid #e0e7e0!important;
    border-radius:10px!important;
    background:#fafbfa!important;
    box-shadow:none!important;
}
.itcjobs-v24-results-toolbar .itcjobs-v1-results-summary{
    color:#59655d!important;
    font-size:11.8px!important;
}
.itcjobs-v24-results-toolbar .itcjobs-v1-results-summary strong{color:#263128!important}
.itcjobs-v1-toolbar-actions{
    border:0!important;
    background:transparent!important;
    box-shadow:none!important;
}
.itcjobs-v1-mini-button,
.itcjobs-v1-sort{
    min-height:36px!important;
    border-radius:7px!important;
    font-size:11px!important;
}

/* Vacancy cards ------------------------------------------------------------ */
.itcjobs-v1-list{gap:13px!important}
.itcjobs-v511-card{
    border-color:#d8e0d9!important;
    border-radius:12px!important;
    box-shadow:0 4px 14px rgba(25,43,27,.045)!important;
}
.itcjobs-v511-card:hover{
    transform:translateY(-2px)!important;
    border-color:#b9cab9!important;
    box-shadow:var(--itc-v528-shadow-hover)!important;
}
.itcjobs-v511-card::before{width:4px!important}
.itcjobs-v511-card .itcjobs-v1-card-main{padding:19px 21px 13px 24px!important}
.itcjobs-v511-card .itcjobs-v1-card-head{
    gap:24px!important;
    padding-bottom:14px!important;
    border-bottom-color:#e8ede9!important;
}
.itcjobs-v511-card .itcjobs-v1-title-wrap h2{
    color:#16201a!important;
    font-size:clamp(23px,2.25vw,29px)!important;
    letter-spacing:-.03em!important;
}
.itcjobs-v511-card .itcjobs-v4-card-kicker{
    color:#7a837d!important;
    font-size:8.5px!important;
}
.itcjobs-v511-card .itcjobs-v508-card-date{
    color:#7d8780!important;
    font-size:10px!important;
}
.itcjobs-v511-card .itcjobs-v1-badges{
    gap:5px!important;
    margin-top:9px!important;
}
.itcjobs-v511-card .itcjobs-v1-badge{
    min-height:25px!important;
    padding:4px 8px!important;
    border-radius:7px!important;
    font-size:9.5px!important;
}

/* Rate is a decisive contract fact: make it unmistakable. */
.itcjobs-v511-card .itcjobs-v1-rate{
    min-width:150px!important;
    padding:12px 15px!important;
    border:1px solid #214f20!important;
    border-radius:9px!important;
    background:#2c6128!important;
    box-shadow:0 5px 14px rgba(44,97,40,.14)!important;
}
.itcjobs-v511-card .itcjobs-v1-rate span,
.itcjobs-v511-card .itcjobs-v1-rate span[style]{
    color:rgba(255,255,255,.78)!important;
    font-size:8px!important;
}
.itcjobs-v511-card .itcjobs-v1-rate strong{
    color:#fff!important;
    font-size:21px!important;
}

.itcjobs-v511-card .itcjobs-v511-snapshot{
    margin:0 -21px 0 -24px!important;
    border-bottom-color:#e6ebe7!important;
    background:#fafbfa!important;
}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact{
    min-height:58px!important;
    padding:10px 12px!important;
    border-right-color:#e4e9e5!important;
}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:first-child{padding-left:24px!important}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact:last-child{padding-right:21px!important}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact span{
    color:#858e88!important;
    font-size:7.9px!important;
}
.itcjobs-v511-card .itcjobs-v511-snapshot .itcjobs-v1-fact strong{
    color:#303a33!important;
    font-size:11.6px!important;
}
.itcjobs-v511-card .itcjobs-v511-skills{padding-top:11px!important}
.itcjobs-v511-card .itcjobs-v1-skill{
    padding:4px 7px!important;
    border-color:#dce3dd!important;
    border-radius:6px!important;
    background:#fafbfa!important;
    color:#4d5851!important;
    font-size:9.8px!important;
}
.itcjobs-v511-card a.itcjobs-v514-skill-link:hover{
    background:#f1f6ef!important;
}
.itcjobs-v511-card .itcjobs-v442-card-insight{
    margin-top:10px!important;
    border-radius:8px!important;
    background:#fafbfa!important;
}
.itcjobs-v511-card .itcjobs-v1-card-foot{
    gap:14px!important;
    padding:9px 17px 9px 24px!important;
    border-top-color:#e5eae6!important;
    background:#fbfcfb!important;
}
.itcjobs-v511-card .itcjobs-v1-action,
.itcjobs-v511-card .itcjobs-v3-more summary{
    min-height:35px!important;
    border-radius:7px!important;
    background:#fff!important;
    transition:border-color .15s ease,background-color .15s ease,color .15s ease,transform .15s ease!important;
}
.itcjobs-v511-card .itcjobs-v1-action:hover,
.itcjobs-v511-card .itcjobs-v3-more summary:hover{
    transform:translateY(-1px)!important;
}

/* Skill Explorer ----------------------------------------------------------- */
.itcjobs-v516-skill-explorer{
    border-color:#cfdccf!important;
    border-top-width:3px!important;
    border-radius:11px!important;
    box-shadow:0 6px 18px rgba(31,61,33,.045)!important;
}
.itcjobs-v516-skill-count{
    border-radius:9px!important;
    background:#fafcfa!important;
}

/* Focus treatment ---------------------------------------------------------- */
.itcjobs-v1-app a:focus-visible,
.itcjobs-v1-app button:focus-visible,
.itcjobs-v1-app input:focus-visible,
.itcjobs-v1-app select:focus-visible,
.itcjobs-v1-app summary:focus-visible{
    outline:2px solid #2c6128!important;
    outline-offset:2px!important;
}

/* Responsive finishing ---------------------------------------------------- */
@media(max-width:1080px){
    .itcjobs-v1-header{gap:20px!important}
    .itcjobs-v1-search-panel{padding:17px!important}
}
@media(max-width:760px){
    .itcjobs-v1-header{padding-top:14px!important}
    .itcjobs-v1-header h1{font-size:36px!important;line-height:1.04!important}
    .itcjobs-v35-account-box{max-width:none!important}
    .itcjobs-v1-search-panel{padding:15px!important;border-radius:13px!important}
    .itcjobs-v3-search-heading{display:block!important}
    .itcjobs-v3-search-heading strong{display:block;margin-top:3px;font-size:16px!important}
    .itcjobs-v24-search-submit,
    .itcjobs-v1-filter-toggle,
    .itcjobs-v415-saved-button{min-height:48px!important}
    .itcjobs-v511-card .itcjobs-v1-card-main{padding:17px 15px 12px 19px!important}
    .itcjobs-v511-card .itcjobs-v1-rate{width:100%!important;min-width:0!important;text-align:left!important}
    .itcjobs-v511-card .itcjobs-v1-card-foot{padding:10px 15px 11px 19px!important}
}
@media(max-width:560px){
    .itcjobs-v1-header h1{font-size:32px!important}
    .itcjobs-v513-intro{font-size:13.5px!important}
    .itcjobs-v12-header-links a{flex:1 1 calc(50% - 4px);justify-content:center;text-align:center}
    .itcjobs-v513-market span{font-size:9.5px!important}
    .itcjobs-v1-filter-chip{font-size:10.5px!important}
    .itcjobs-v511-card .itcjobs-v1-title-wrap h2{font-size:22px!important}
}