:root {
    --wh-green: #217208;
    --wh-green-dark: #1a5d06;
    --wh-green-darker: #144603;
    --wh-green-soft: #f4fbef;
    --wh-green-acc: #e7f7ea;
    --wh-amber: #d97706;
    --wh-amber-soft: #fff7ed;
    --wh-blue: #2563eb;
    --wh-blue-soft: #eff6ff;
    --wh-red: #dc2626;
    --wh-red-soft: #fef2f2;
    --wh-slate-50: #f8fafc;
    --wh-slate-100: #f1f5f9;
    --wh-slate-200: #e2e8f0;
    --wh-slate-300: #cbd5e1;
    --wh-slate-400: #94a3b8;
    --wh-slate-500: #64748b;
    --wh-slate-600: #475569;
    --wh-slate-700: #334155;
    --wh-slate-800: #1e293b;
    --wh-white: #ffffff;
    --wh-radius: 12px;
    --wh-shadow-sm: 0 1px 3px rgba(15, 23, 42, .06);
    --wh-shadow-md: 0 8px 24px rgba(15, 23, 42, .10);
}

.wh-hero,
.wh-strip,
.wh-section,
.s6-section,
.wh-tabs-wrap,
.wh-jcard,
.wh-emp-card,
.s6-blog-card,
.s6-col-how,
.wh-upsell,
.wh-explore-pill,
.wh-strip-card,
.s6-cta,
.wh-job-list--grid,
.wh-jcard-grid,
.wh-employer-grid,
.wh-pill-grid {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.wh-hero {
    background: linear-gradient(135deg, var(--wh-green-darker) 0%, var(--wh-green) 60%, #2d9e0a 100%);
    padding: 40px 0 48px;
    position: relative;
    overflow: hidden;
}

.wh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.wh-hero-inner {
    position: relative;
    z-index: 1;
}

.wh-hero-text {
    text-align: center;
    margin-bottom: 20px;
}

.wh-hero-text h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -.03em;
    line-height: 1.15;
}

.wh-hero-text p {
    color: rgba(255, 255, 255, .78);
    font-size: .98rem;
    margin: 0 0 14px;
}

.wh-hero-skills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    justify-content: center;
    margin-top: 12px;
}

.wh-hero-skills-label {
    font-size: .73rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-right: 2px;
}

.wh-hero-skill-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px 5px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .88);
    font-size: .76rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .14s ease, border-color .14s ease, transform .14s ease;
    white-space: nowrap;
}

.wh-hero-skill-pill:hover {
    background: rgba(255, 255, 255, .24);
    border-color: rgba(255, 255, 255, .48);
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.wh-hero-skill-pill:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .8);
    outline-offset: 2px;
}

.wh-skill-pill-name {
    line-height: 1;
}

.wh-skill-pill-trend {
    font-size: .68rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1;
    transition: color .14s ease;
    font-style: normal;
}

.wh-hero-skill-pill:hover .wh-skill-pill-trend {
    color: rgba(255, 255, 255, .9);
}

.wh-skill-pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    color: #fff;
    font-size: .64rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .01em;
    transition: background .14s ease;
}

.wh-hero-skill-pill:hover .wh-skill-pill-count {
    background: rgba(255, 255, 255, .38);
}

.wh-search-wrap {
    max-width: 960px;
    margin: 0 auto 20px;
}

.wh-search-wrap .jsb26 {
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .18);
    border: none;
}

.wh-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wh-trust-stat {
    font-size: .82rem;
    color: rgba(255, 255, 255, .78);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

.wh-trust-stat.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wh-trust-stat i {
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
}

.wh-counter {
    font-weight: 800;
    color: #fff;
}

.wh-trust-div {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .25);
}

.wh-strip {
    background: var(--wh-white);
    border-bottom: 1px solid var(--wh-slate-200);
}

.wh-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wh-strip-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-right: 1px solid var(--wh-slate-100);
    text-decoration: none;
    color: var(--wh-slate-700);
    transition: background .14s;
}

.wh-strip-card:last-child {
    border-right: none;
}

.wh-strip-card:hover {
    background: var(--wh-slate-50);
    text-decoration: none;
    color: var(--wh-slate-800);
}

.wh-strip-card:focus-visible {
    outline: 2px solid var(--wh-green);
    outline-offset: -2px;
}

.wh-strip-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex: 0 0 auto;
}

.wh-strip-icon-green {
    background: var(--wh-green-acc);
    color: var(--wh-green);
}

.wh-strip-icon-blue {
    background: var(--wh-blue-soft);
    color: var(--wh-blue);
}

.wh-strip-icon-amber {
    background: var(--wh-amber-soft);
    color: var(--wh-amber);
}

.wh-strip-body {
    flex: 1;
    min-width: 0;
}

.wh-strip-body strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.wh-strip-body span {
    font-size: .76rem;
    color: var(--wh-slate-500);
    line-height: 1.4;
}

.wh-strip-arrow {
    font-size: .7rem;
    color: var(--wh-slate-300);
    transition: transform .14s;
}

.wh-strip-card:hover .wh-strip-arrow {
    transform: translateX(4px);
    color: var(--wh-green);
}

.wh-section {
    padding: 40px 0;
}

.wh-section-tinted {
    background: var(--wh-slate-50);
}

.wh-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.wh-section-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--wh-slate-800);
    margin: 0 0 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wh-featured-star {
    color: #f59e0b;
    font-size: 1rem;
}

.wh-section-sub {
    font-size: .82rem;
    color: var(--wh-slate-500);
    margin: 0;
}

.wh-see-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--wh-green);
    text-decoration: none;
    white-space: nowrap;
    padding-top: 4px;
    transition: gap .12s;
}

.wh-see-all:hover {
    gap: 8px;
}

.wh-see-all:focus-visible {
    outline: 2px solid var(--wh-green);
    border-radius: 4px;
}

.wh-employer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.wh-emp-card {
    display: flex;
    flex-direction: column;
    background: var(--wh-white);
    border: 1px solid var(--wh-slate-200);
    border-radius: var(--wh-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--wh-slate-800);
    box-shadow: var(--wh-shadow-sm);
    transition: box-shadow .15s, transform .15s, border-color .15s;
}

.wh-emp-card:hover {
    box-shadow: var(--wh-shadow-md);
    transform: translateY(-2px);
    border-color: #c3e6cb;
    text-decoration: none;
    color: var(--wh-slate-800);
}

.wh-emp-card:focus-visible {
    outline: 2px solid var(--wh-green);
    outline-offset: 2px;
}

.wh-emp-logo {
    padding: 14px 14px 8px;
}

.wh-emp-logo img {
    width: 52px;
    height: 52px;
    border-radius: 11px;
    border: 1px solid var(--wh-slate-200);
    object-fit: cover;
    display: block;
    background: var(--wh-slate-50);
}

.wh-emp-name {
    padding: 0 14px 3px;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.3;
}

.wh-emp-card:hover .wh-emp-name {
    color: var(--wh-green);
}

.wh-emp-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 1px 6px;
    border-radius: 999px;
    background: #e7f7ea;
    border: 1px solid #c3e6cb;
    color: var(--wh-green-dark);
    font-size: .58rem;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 4px;
}

.wh-emp-industry,
.wh-emp-location {
    padding: 0 14px 2px;
    font-size: .72rem;
    color: var(--wh-slate-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.wh-emp-industry i {
    font-size: .62rem;
}

.wh-emp-location i {
    font-size: .62rem;
    color: var(--wh-green);
}

.wh-emp-desc {
    padding: 4px 14px 0;
    font-size: .72rem;
    color: var(--wh-slate-500);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wh-emp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    margin-top: auto;
    border-top: 1px solid var(--wh-slate-100);
    background: var(--wh-slate-50);
}

.wh-emp-jobs {
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.wh-emp-jobs i {
    font-size: .42rem;
}

.wh-emp-jobs-open {
    background: var(--wh-green-acc);
    color: var(--wh-green-dark);
    border: 1px solid #c3e6cb;
}

.wh-emp-jobs-none {
    background: var(--wh-slate-100);
    color: var(--wh-slate-400);
    border: 1px solid var(--wh-slate-200);
}

.wh-emp-arrow {
    font-size: .7rem;
    color: var(--wh-slate-300);
    opacity: 0;
    transition: opacity .14s, transform .14s;
}

.wh-emp-card:hover .wh-emp-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.wh-upsell {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--wh-amber-soft);
    border: 1px solid #fed7aa;
    border-radius: var(--wh-radius);
    font-size: .8rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wh-upsell i {
    color: var(--wh-amber);
}

.wh-upsell a {
    color: #c2410c;
    font-weight: 700;
    text-decoration: none;
}

.wh-upsell a:hover {
    text-decoration: underline;
}

.wh-job-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wh-job-list--grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.wh-job-list--grid .jc {
    margin-bottom: 0;
}

.wh-jcard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wh-jcard {
    display: flex;
    flex-direction: column;
    background: var(--wh-white);
    border: 1px solid var(--wh-slate-200);
    border-radius: var(--wh-radius);
    padding: 14px;
    box-shadow: var(--wh-shadow-sm);
    transition: box-shadow .15s, transform .15s, border-color .15s;
    gap: 6px;
}

.wh-jcard:hover {
    box-shadow: var(--wh-shadow-md);
    transform: translateY(-2px);
    border-color: #c3e6cb;
}

.wh-jcard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4px;
}

.wh-jcard-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--wh-slate-200);
    background: var(--wh-slate-50);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.wh-jcard-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 7px;
}

.wh-jcard-badges {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wh-jcard-title {
    margin: 0;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--wh-slate-800);
}

.wh-jcard-title a {
    color: inherit;
    text-decoration: none;
}

.wh-jcard-title a:hover {
    color: var(--wh-green);
}

.wh-jcard-title a:focus-visible {
    outline: 2px solid var(--wh-green);
    border-radius: 2px;
}

.wh-jcard-company {
    margin: 0;
    font-size: .74rem;
    color: var(--wh-slate-500);
    font-weight: 600;
}

.wh-jcard-company a {
    color: inherit;
    text-decoration: none;
}

.wh-jcard-company a:hover {
    color: var(--wh-green);
}

.wh-jcard-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.wh-jcard-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .69rem;
    color: var(--wh-slate-500);
}

.wh-jcard-meta-item i {
    font-size: .6rem;
    color: var(--wh-green);
}

.wh-jcard-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.wh-skill {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    background: var(--wh-green-acc);
    color: var(--wh-green-dark);
    border: 1px solid #c0dd97;
    letter-spacing: .01em;
}

.wh-deadline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    background: var(--wh-slate-50);
    color: var(--wh-slate-600);
    border: 1px solid var(--wh-slate-200);
    white-space: nowrap;
}

.wh-deadline i {
    font-size: .65rem;
}

.wh-deadline-soon {
    background: var(--wh-amber-soft);
    color: var(--wh-amber);
    border-color: #fed7aa;
    font-weight: 700;
}

.wh-deadline-urgent {
    background: var(--wh-red-soft);
    color: var(--wh-red);
    border-color: #fecaca;
    font-weight: 800;
}

.wh-jcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--wh-slate-100);
    gap: 6px;
}

.wh-jcard-time {
    font-size: .68rem;
    color: var(--wh-slate-400);
}

.wh-jcard-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: 7px;
    background: var(--wh-green);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .12s;
    white-space: nowrap;
}

.wh-jcard-btn:hover {
    background: var(--wh-green-dark);
    color: #fff;
    text-decoration: none;
}

.wh-jcard-btn:focus-visible {
    outline: 2px solid var(--wh-green-darker);
    outline-offset: 2px;
}

.wh-tabs-wrap {
    background: var(--wh-white);
    border: 1px solid var(--wh-slate-200);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--wh-shadow-sm);
}

.wh-tabs {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--wh-slate-200);
    background: var(--wh-slate-50);
    scrollbar-width: thin;
}

.wh-tabs::-webkit-scrollbar {
    height: 4px;
}

.wh-tabs::-webkit-scrollbar-thumb {
    background: var(--wh-slate-200);
    border-radius: 999px;
}

.wh-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 18px;
    white-space: nowrap;
    border: none;
    background: none;
    cursor: pointer;
    font-size: .84rem;
    font-weight: 600;
    color: var(--wh-slate-500);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color .14s, background .14s;
    font-family: inherit;
}

.wh-tab:hover {
    color: var(--wh-green);
    background: var(--wh-green-soft);
}

.wh-tab.is-active {
    color: var(--wh-green);
    border-bottom-color: var(--wh-green);
    font-weight: 700;
    background: var(--wh-white);
}

.wh-tab:focus-visible {
    outline: 2px solid var(--wh-green);
    outline-offset: -2px;
}

.wh-tab i {
    font-size: .78rem;
}

.wh-tab-panel {
    display: none;
    padding: 20px;
}

.wh-tab-panel.is-active {
    display: block;
}

.wh-tab-cta {
    margin-top: 16px;
    text-align: center;
}

.wh-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .84rem;
    font-weight: 700;
    color: var(--wh-green);
    text-decoration: none;
    transition: gap .12s;
}

.wh-cta-link:hover {
    gap: 10px;
}

.wh-cta-link:focus-visible {
    outline: 2px solid var(--wh-green);
    border-radius: 4px;
}

.wh-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wh-explore-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--wh-slate-50);
    border: 1px solid var(--wh-slate-200);
    border-radius: 10px;
    text-decoration: none;
    color: var(--wh-slate-700);
    font-size: .82rem;
    font-weight: 600;
    transition: background .13s, border-color .13s, transform .13s;
}

.wh-explore-pill:hover {
    background: var(--wh-green-acc);
    border-color: #c3e6cb;
    color: var(--wh-green-dark);
    transform: translateY(-1px);
    text-decoration: none;
}

.wh-explore-pill:focus-visible {
    outline: 2px solid var(--wh-green);
    outline-offset: 2px;
}

.wh-explore-name {
    flex: 1;
}

.wh-explore-icon {
    font-size: .65rem;
    color: var(--wh-green);
}

.wh-explore-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 20px;
    padding: 0 6px;
    background: var(--wh-slate-200);
    color: var(--wh-slate-600);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
}

.wh-explore-pill:hover .wh-explore-count {
    background: #c3e6cb;
    color: var(--wh-green-dark);
}

.wh-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--wh-slate-400);
    font-size: .86rem;
}

.wh-empty i {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 8px;
    opacity: .4;
}

.s6-section {
    background: linear-gradient(160deg, #0f2d16 0%, #1a4d22 50%, #112810 100%);
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
}

.s6-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.s6-eyebrow {
    text-align: center;
    margin-bottom: 28px;
}

.s6-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.s6-eyebrow-pill i {
    font-size: .68rem;
    color: #7ddc8a;
}

.s6-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.s6-col-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.s6-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3px;
    letter-spacing: -.02em;
}

.s6-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
}

.s6-see-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 700;
    color: #7ddc8a;
    text-decoration: none;
    white-space: nowrap;
    padding-top: 4px;
    transition: gap .12s;
}

.s6-see-all:hover {
    gap: 9px;
    color: #a3f0ad;
}

.s6-see-all:focus-visible {
    outline: 2px solid #7ddc8a;
    border-radius: 4px;
}

.s6-blog-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.s6-blog-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: background .15s, border-color .15s, transform .15s;
    overflow: hidden;
    position: relative;
}

.s6-blog-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(125, 220, 138, .4);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.s6-blog-card:focus-visible {
    outline: 2px solid #7ddc8a;
    outline-offset: 3px;
}

.s6-blog-hero-img {
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
}

.s6-blog-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.s6-blog-card:hover .s6-blog-hero-img img {
    transform: scale(1.03);
}

.s6-blog-body {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    flex: 1;
}

.s6-blog-thumb {
    width: 72px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, .08);
}

.s6-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s6-blog-text {
    flex: 1;
    min-width: 0;
}

.s6-blog-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.s6-blog-tag {
    font-size: .64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #7ddc8a;
    background: rgba(125, 220, 138, .15);
    border: 1px solid rgba(125, 220, 138, .25);
    border-radius: 999px;
    padding: 1px 7px;
}

.s6-blog-dot {
    color: rgba(255, 255, 255, .3);
    font-size: .7rem;
}

.s6-blog-read {
    font-size: .7rem;
    color: rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    gap: 3px;
}

.s6-blog-read i {
    font-size: .62rem;
}

.s6-blog-title {
    margin: 0 0 5px;
    font-size: .88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
    line-height: 1.4;
}

.s6-blog-card-hero .s6-blog-title {
    font-size: .96rem;
}

.s6-blog-card:hover .s6-blog-title {
    color: #fff;
}

.s6-blog-date {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
}

.s6-blog-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    font-size: .72rem;
    color: #7ddc8a;
    opacity: 0;
    transition: opacity .15s, transform .15s;
}

.s6-blog-card:hover .s6-blog-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.s6-empty {
    text-align: center;
    padding: 32px 16px;
    color: rgba(255, 255, 255, .4);
}

.s6-empty-icon {
    font-size: 1.8rem;
    opacity: .35;
    margin-bottom: 10px;
}

.s6-empty p {
    font-size: .84rem;
    margin: 0 0 10px;
}

.s6-col-how {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    padding: 28px 28px 32px;
}

.s6-steps {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.s6-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}

.s6-step:last-child {
    padding-bottom: 0;
}

.s6-step-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wh-green) 0%, #2d9e0a 100%);
    color: #fff;
    font-size: .92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    box-shadow: 0 4px 12px rgba(33, 114, 8, .35);
    position: relative;
    z-index: 1;
}

.s6-step-connector {
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(125, 220, 138, .35), rgba(125, 220, 138, .05));
}

.s6-step-content {
    padding-top: 8px;
    flex: 1;
    min-width: 0;
}

.s6-step-content strong {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -.01em;
}

.s6-step-content span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}

.s6-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 24px;
}

.s6-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
}

.s6-trust-item i {
    font-size: .65rem;
    color: #7ddc8a;
}

.s6-trust-sep {
    color: rgba(255, 255, 255, .2);
    font-size: .7rem;
}

.s6-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.s6-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .14s, box-shadow .14s, background .14s;
}

.s6-cta:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.s6-cta:focus-visible {
    outline: 2px solid #7ddc8a;
    outline-offset: 3px;
}

.s6-cta i {
    font-size: 1.1rem;
    flex: 0 0 auto;
}

.s6-cta span {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.s6-cta strong {
    font-size: .84rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.s6-cta small {
    font-size: .68rem;
    font-weight: 500;
    opacity: .7;
    display: block;
}

.s6-cta-primary {
    background: var(--wh-green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(33, 114, 8, .35);
}

.s6-cta-primary:hover {
    background: var(--wh-green-dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(33, 114, 8, .45);
}

.s6-cta-primary i {
    color: rgba(255, 255, 255, .85);
}

.s6-cta-secondary {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .88);
}

.s6-cta-secondary:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.s6-cta-secondary i {
    color: rgba(255, 255, 255, .6);
}

@media (max-width: 1024px) {
    .wh-jcard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .s6-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .wh-employer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .wh-strip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .wh-jcard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .s6-cta-group {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .wh-job-list--grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wh-employer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .wh-job-list--grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .wh-employer-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}