:root {
    --everleaf-green: #a1d183;
    --everleaf-teal: #155459;
    --everleaf-cream: #f3f4e5;
    --everleaf-ink: #12383b;
    --everleaf-muted: #60777a;
    --everleaf-border: rgba(21, 84, 89, 0.14);
    --everleaf-shadow: 0 18px 55px rgba(21, 84, 89, 0.12);
}

.everleaf-jobs-board,
.everleaf-single-job-enhanced,
.everleaf-application-box {
    font-family: inherit;
    color: var(--everleaf-ink);
}

.everleaf-jobs-board {
    width: 100%;
    margin: 0 auto;
}

.everleaf-jobs-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--everleaf-teal) 0%, #1c6f73 58%, var(--everleaf-green) 180%);
    border-radius: 28px;
    padding: clamp(34px, 5vw, 68px);
    margin-bottom: 28px;
    color: #fff;
    box-shadow: var(--everleaf-shadow);
}

.everleaf-jobs-hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -110px;
    top: -120px;
    border-radius: 999px;
    background: rgba(161, 209, 131, 0.24);
    pointer-events: none;
}

.everleaf-jobs-hero h2 {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 10px 0 12px;
    color: #fff;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.everleaf-jobs-hero p {
    position: relative;
    z-index: 1;
    max-width: 690px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.7;
    margin: 0;
}

.everleaf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--everleaf-green);
}

.everleaf-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(161, 209, 131, 0.18);
}

.everleaf-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.everleaf-job-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1px solid var(--everleaf-border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 36px rgba(21, 84, 89, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.everleaf-job-card:hover {
    transform: translateY(-5px);
    border-color: rgba(161, 209, 131, 0.75);
    box-shadow: 0 22px 60px rgba(21, 84, 89, 0.16);
}

.everleaf-job-card.is-sticky {
    background: linear-gradient(180deg, rgba(161, 209, 131, 0.15) 0%, #fff 42%);
    border-color: rgba(161, 209, 131, 0.75);
}

.everleaf-job-card__top,
.everleaf-job-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.everleaf-pill,
.everleaf-featured {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.everleaf-pill {
    background: rgba(21, 84, 89, 0.08);
    color: var(--everleaf-teal);
}

.everleaf-featured {
    background: var(--everleaf-green);
    color: var(--everleaf-teal);
}

.everleaf-job-card h3 {
    margin: 22px 0 10px;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.13;
    letter-spacing: -0.025em;
    color: var(--everleaf-teal);
}

.everleaf-job-card h3 a {
    color: inherit;
    text-decoration: none;
}

.everleaf-job-card h3 a:hover {
    color: var(--everleaf-teal);
    text-decoration: underline;
    text-decoration-color: var(--everleaf-green);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.everleaf-job-card__excerpt {
    color: var(--everleaf-muted);
    line-height: 1.65;
    margin: 0 0 20px;
}

.everleaf-job-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin: auto 0 22px;
    padding-top: 4px;
}

.everleaf-job-meta span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--everleaf-teal);
}

.everleaf-job-meta svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: var(--everleaf-green);
}

.everleaf-btn,
.everleaf-submit-row input[type="submit"],
.everleaf-cf7-application input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: var(--everleaf-teal);
    color: #fff !important;
    padding: 13px 20px;
    min-height: 46px;
    font-weight: 800;
    text-decoration: none !important;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 24px rgba(21, 84, 89, 0.18);
}

.everleaf-btn:hover,
.everleaf-submit-row input[type="submit"]:hover,
.everleaf-cf7-application input[type="submit"]:hover {
    transform: translateY(-2px);
    background: #0f4246;
    box-shadow: 0 16px 30px rgba(21, 84, 89, 0.24);
}

.everleaf-share {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.everleaf-share a,
.everleaf-share button {
    appearance: none;
    border: 1px solid rgba(21, 84, 89, 0.14);
    background: #fff;
    color: var(--everleaf-teal) !important;
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.everleaf-share a:hover,
.everleaf-share button:hover,
.everleaf-share button.is-copied {
    background: rgba(161, 209, 131, 0.2);
    border-color: rgba(161, 209, 131, 0.85);
}

.everleaf-share--compact a:not(:first-child) {
    display: none;
}

.everleaf-share--compact button {
    padding-inline: 10px;
}

.everleaf-job-details-panel,
.everleaf-application-box,
.everleaf-empty-state {
    border-radius: 26px;
    border: 1px solid var(--everleaf-border);
    background: #fff;
    box-shadow: var(--everleaf-shadow);
}

.everleaf-job-details-panel {
    margin: 32px 0;
    overflow: hidden;
}

.everleaf-job-details-panel__head {
    padding: 28px 30px 18px;
    background: linear-gradient(135deg, var(--everleaf-teal), #1b6a6f);
    color: #fff;
}

.everleaf-job-details-panel__head h3 {
    color: #fff;
    margin: 8px 0 0;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.03em;
}

.everleaf-job-details-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--everleaf-border);
}

.everleaf-job-details-list div {
    min-height: 94px;
    background: #fff;
    padding: 22px;
}

.everleaf-job-details-list span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--everleaf-muted);
}

.everleaf-job-details-list strong {
    display: block;
    color: var(--everleaf-teal);
    font-size: 17px;
    line-height: 1.35;
}

.everleaf-single-share-block {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 26px 0;
    color: var(--everleaf-teal);
    font-weight: 800;
}

.everleaf-application-box {
    position: relative;
    overflow: hidden;
    margin: 34px 0;
    padding: clamp(24px, 4vw, 42px);
    background: linear-gradient(180deg, rgba(161, 209, 131, 0.18), #fff 38%);
}

.everleaf-application-box::after {
    content: "";
    position: absolute;
    inset: auto -90px -110px auto;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background: rgba(21, 84, 89, 0.08);
    pointer-events: none;
}

.everleaf-application-box__intro {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 24px;
}

.everleaf-application-box__intro h3 {
    margin: 8px 0 8px;
    color: var(--everleaf-teal);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.everleaf-application-box__intro p {
    margin: 0;
    color: var(--everleaf-muted);
    line-height: 1.7;
}

.everleaf-cf7-application {
    position: relative;
    z-index: 1;
}

.everleaf-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.everleaf-form-grid label,
.everleaf-consent-box {
    display: block;
    color: var(--everleaf-teal);
    font-size: 13px;
    font-weight: 800;
}

.everleaf-cf7-application input[type="text"],
.everleaf-cf7-application input[type="email"],
.everleaf-cf7-application input[type="tel"],
.everleaf-cf7-application select,
.everleaf-cf7-application textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(21, 84, 89, 0.16);
    border-radius: 16px;
    background: #fff;
    color: var(--everleaf-ink);
    padding: 13px 15px;
    font: inherit;
    font-size: 15px;
    line-height: 1.3;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-top: 7px;
}

.everleaf-cf7-application input:focus,
.everleaf-cf7-application select:focus,
.everleaf-cf7-application textarea:focus {
    border-color: var(--everleaf-green);
    box-shadow: 0 0 0 4px rgba(161, 209, 131, 0.22);
}

.everleaf-cf7-application input.everleaf-readonly,
.everleaf-cf7-application input[readonly] {
    background: rgba(21, 84, 89, 0.055);
    color: var(--everleaf-teal);
    font-weight: 800;
    cursor: not-allowed;
}

.everleaf-consent-box {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgba(21, 84, 89, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
}

.everleaf-consent-box p {
    margin: 0 0 10px;
    color: var(--everleaf-teal);
}

.everleaf-consent-box .wpcf7-list-item {
    margin-left: 0;
}

.everleaf-submit-row {
    margin-top: 22px;
}

.everleaf-form-admin-warning,
.everleaf-empty-state {
    padding: 24px;
    color: var(--everleaf-teal);
    background: rgba(161, 209, 131, 0.16);
}

.everleaf-empty-state h3 {
    color: var(--everleaf-teal);
    margin: 0 0 8px;
}

.everleaf-empty-state p {
    margin: 0;
    color: var(--everleaf-muted);
}

.everleaf-cf7-application .wpcf7-not-valid-tip {
    margin-top: 7px;
    color: #b3261e;
    font-size: 13px;
    font-weight: 700;
}

.everleaf-cf7-application .wpcf7-response-output {
    border-radius: 16px;
    margin: 18px 0 0;
    padding: 14px 16px;
    border-color: var(--everleaf-green);
    color: var(--everleaf-teal);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .everleaf-jobs-grid,
    .everleaf-job-details-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .everleaf-jobs-hero,
    .everleaf-job-card,
    .everleaf-application-box,
    .everleaf-job-details-panel {
        border-radius: 20px;
    }

    .everleaf-jobs-grid,
    .everleaf-job-details-list,
    .everleaf-form-grid {
        grid-template-columns: 1fr;
    }

    .everleaf-job-card__footer,
    .everleaf-single-share-block {
        align-items: flex-start;
        flex-direction: column;
    }

    .everleaf-btn {
        width: 100%;
    }

    .everleaf-share--compact a:not(:first-child) {
        display: inline-flex;
    }

    .everleaf-job-details-list div {
        min-height: auto;
    }
}

/* Single job page redesign - v1.0.1 */
.single-everleaf_job h1.entry-title,
.single-everleaf_job .entry-header,
.single-everleaf_job .et_post_meta_wrapper > h1,
.single-everleaf_job .post-meta {
    display: none !important;
}

.everleaf-single-job-page,
.everleaf-single-job-page * {
    box-sizing: border-box;
}

.everleaf-single-job-page {
    width: min(1180px, calc(100vw - 40px));
    margin: clamp(34px, 5vw, 70px) auto clamp(54px, 7vw, 96px) !important;
    color: var(--everleaf-ink);
}

.everleaf-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--everleaf-teal) !important;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none !important;
}

.everleaf-back-link:hover {
    text-decoration: underline !important;
    text-decoration-color: var(--everleaf-green) !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 5px !important;
}

.everleaf-single-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
    gap: clamp(20px, 3vw, 34px);
    align-items: stretch;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 32px;
    background: linear-gradient(135deg, var(--everleaf-teal) 0%, #1d6b6f 62%, #26787a 100%);
    box-shadow: 0 24px 70px rgba(21, 84, 89, 0.18);
    color: #fff;
}

.everleaf-single-hero::before,
.everleaf-single-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.everleaf-single-hero::before {
    width: 360px;
    height: 360px;
    right: -150px;
    top: -160px;
    background: rgba(161, 209, 131, 0.22);
}

.everleaf-single-hero::after {
    width: 220px;
    height: 220px;
    left: -85px;
    bottom: -110px;
    background: rgba(255, 255, 255, 0.08);
}

.everleaf-single-hero__content,
.everleaf-single-hero__facts {
    position: relative;
    z-index: 1;
}

.everleaf-single-hero h1 {
    margin: 12px 0 14px !important;
    color: #fff !important;
    font-size: clamp(38px, 6vw, 72px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.055em !important;
    text-align: left !important;
}

.everleaf-single-hero p {
    max-width: 720px;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: clamp(16px, 1.5vw, 19px) !important;
    line-height: 1.75 !important;
}

.everleaf-single-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.everleaf-single-hero__actions .everleaf-btn {
    background: var(--everleaf-green);
    color: var(--everleaf-teal) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.everleaf-single-hero__actions .everleaf-btn:hover {
    background: #b4e596;
}

.everleaf-hero-share-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 850;
}

.everleaf-single-hero .everleaf-share a,
.everleaf-single-hero .everleaf-share button {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff !important;
}

.everleaf-single-hero .everleaf-share a:hover,
.everleaf-single-hero .everleaf-share button:hover,
.everleaf-single-hero .everleaf-share button.is-copied {
    background: rgba(161, 209, 131, 0.24);
    border-color: rgba(161, 209, 131, 0.78);
}

.everleaf-single-hero__facts {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.everleaf-single-hero__facts > span {
    display: grid;
    grid-template-columns: 22px minmax(84px, 0.7fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px 13px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--everleaf-teal);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.everleaf-single-hero__facts svg {
    width: 20px;
    height: 20px;
    fill: var(--everleaf-green);
}

.everleaf-single-hero__facts strong {
    color: rgba(21, 84, 89, 0.66);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.everleaf-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
    gap: clamp(24px, 3vw, 38px);
    align-items: start;
    margin-top: clamp(26px, 4vw, 42px);
}

.everleaf-job-main {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.everleaf-content-card,
.everleaf-process-card,
.everleaf-job-summary-card,
.everleaf-sidebar-share {
    border: 1px solid var(--everleaf-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(21, 84, 89, 0.10);
}

.everleaf-content-card,
.everleaf-process-card {
    padding: clamp(26px, 4vw, 42px);
}

.everleaf-job-description {
    margin-top: 20px;
    color: var(--everleaf-ink);
    font-size: 17px;
    line-height: 1.78;
}

.everleaf-job-description > *:first-child {
    margin-top: 0 !important;
}

.everleaf-job-description p {
    display: block !important;
    max-width: 760px;
    margin: 0 0 24px !important;
    color: var(--everleaf-muted);
    font-size: 17px !important;
    line-height: 1.78 !important;
}

.everleaf-job-description h2,
.everleaf-job-description h3,
.everleaf-process-card h2 {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    margin: 34px 0 16px !important;
    color: var(--everleaf-teal) !important;
    font-size: clamp(24px, 3vw, 34px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    text-align: left !important;
}

.everleaf-job-description ul,
.everleaf-job-description ol {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 0 24px !important;
    padding: 0 !important;
    list-style: none !important;
}

.everleaf-job-description li {
    position: relative;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 14px 18px 14px 44px !important;
    border: 1px solid rgba(21, 84, 89, 0.10);
    border-radius: 18px;
    background: rgba(161, 209, 131, 0.12);
    color: var(--everleaf-ink);
    font-size: 16px;
    line-height: 1.55;
}

.everleaf-job-description li::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--everleaf-green);
    box-shadow: 0 0 0 6px rgba(161, 209, 131, 0.2);
}

.everleaf-process-card {
    background: linear-gradient(180deg, rgba(161, 209, 131, 0.14), #fff 45%);
}

.everleaf-process-card h2 {
    margin-top: 12px !important;
}

.everleaf-process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.everleaf-process-steps div {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(21, 84, 89, 0.10);
    border-radius: 20px;
    background: #fff;
}

.everleaf-process-steps strong {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--everleaf-teal);
    color: #fff;
    font-size: 16px;
}

.everleaf-process-steps span {
    color: var(--everleaf-teal);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
}

.everleaf-single-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 22px;
    min-width: 0;
}

.everleaf-job-summary-card {
    overflow: hidden;
}

.everleaf-job-summary-card__head {
    padding: 24px 24px 18px;
    background: linear-gradient(135deg, var(--everleaf-teal), #1b6a6f);
    color: #fff;
}

.everleaf-job-summary-card__head h2 {
    margin: 9px 0 0 !important;
    color: #fff !important;
    font-size: 28px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
}

.everleaf-job-summary-list {
    display: grid;
    margin: 0 !important;
    padding: 0 !important;
}

.everleaf-job-summary-list div {
    display: grid;
    grid-template-columns: minmax(108px, 0.8fr) minmax(0, 1fr);
    gap: 12px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(21, 84, 89, 0.09);
}

.everleaf-job-summary-list div:nth-child(even) {
    background: rgba(21, 84, 89, 0.035);
}

.everleaf-job-summary-list div:last-child {
    border-bottom: 0;
}

.everleaf-job-summary-list dt,
.everleaf-job-summary-list dd {
    margin: 0 !important;
}

.everleaf-job-summary-list dt {
    color: rgba(21, 84, 89, 0.66);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.everleaf-job-summary-list dd {
    color: var(--everleaf-teal);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
}

.everleaf-sidebar-share {
    padding: 22px;
}

.everleaf-sidebar-share > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--everleaf-teal);
    font-size: 14px;
    font-weight: 900;
}

.everleaf-single-sidebar .everleaf-share {
    gap: 7px;
}

.everleaf-single-sidebar .everleaf-share a,
.everleaf-single-sidebar .everleaf-share button {
    padding: 9px 10px;
    font-size: 11px;
}

.everleaf-single-sidebar .everleaf-application-box {
    margin: 0 !important;
    padding: 24px;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(21, 84, 89, 0.10);
}

.everleaf-single-sidebar .everleaf-application-box__intro {
    margin-bottom: 18px;
}

.everleaf-single-sidebar .everleaf-application-box__intro h3 {
    font-size: 30px;
    line-height: 1.05;
}

.everleaf-single-sidebar .everleaf-application-box__intro p {
    font-size: 14px;
    line-height: 1.6;
}

.everleaf-single-sidebar .everleaf-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.everleaf-single-sidebar .everleaf-form-grid label,
.everleaf-single-sidebar .everleaf-consent-box {
    font-size: 12px;
}

.everleaf-single-sidebar .everleaf-cf7-application input[type="text"],
.everleaf-single-sidebar .everleaf-cf7-application input[type="email"],
.everleaf-single-sidebar .everleaf-cf7-application input[type="tel"],
.everleaf-single-sidebar .everleaf-cf7-application select,
.everleaf-single-sidebar .everleaf-cf7-application textarea {
    min-height: 48px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
}

.everleaf-single-sidebar .everleaf-consent-box {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
}

.everleaf-single-sidebar .everleaf-submit-row input[type="submit"],
.everleaf-single-sidebar .everleaf-cf7-application input[type="submit"] {
    width: 100%;
}

@media (max-width: 1100px) {
    .everleaf-single-layout,
    .everleaf-single-hero {
        grid-template-columns: 1fr;
    }

    .everleaf-single-sidebar {
        position: static;
    }

    .everleaf-single-sidebar .everleaf-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .everleaf-single-job-page {
        width: min(100% - 24px, 1180px);
        margin-top: 24px !important;
    }

    .everleaf-single-hero,
    .everleaf-content-card,
    .everleaf-process-card,
    .everleaf-job-summary-card,
    .everleaf-sidebar-share,
    .everleaf-single-sidebar .everleaf-application-box {
        border-radius: 22px;
    }

    .everleaf-single-hero {
        padding: 26px;
    }

    .everleaf-single-hero h1 {
        font-size: clamp(34px, 12vw, 48px) !important;
    }

    .everleaf-single-hero__facts > span,
    .everleaf-job-summary-list div,
    .everleaf-process-steps,
    .everleaf-single-sidebar .everleaf-form-grid {
        grid-template-columns: 1fr;
    }

    .everleaf-single-hero__facts > span {
        gap: 6px;
    }

    .everleaf-single-hero__facts svg {
        display: none;
    }

    .everleaf-single-hero__actions,
    .everleaf-single-hero__actions .everleaf-share {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .everleaf-single-hero__actions .everleaf-btn,
    .everleaf-single-hero__actions .everleaf-share a,
    .everleaf-single-hero__actions .everleaf-share button {
        width: 100%;
    }

    .everleaf-job-description p,
    .everleaf-job-description li {
        font-size: 15px !important;
    }
}

/* EverLeaf Jobs 1.0.2 - simplified single job layout */
.everleaf-process-card {
    display: none !important;
}

.everleaf-single-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 430px);
    gap: clamp(22px, 3vw, 34px);
}

.everleaf-job-main {
    gap: 0;
}

.everleaf-content-card {
    padding: clamp(28px, 4vw, 46px);
}

.everleaf-content-card > .everleaf-eyebrow {
    margin-bottom: 4px;
}

.everleaf-job-description {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.82;
}

.everleaf-job-description p {
    max-width: 820px;
    margin-bottom: 20px !important;
}

.everleaf-job-description h2,
.everleaf-job-description h3 {
    margin-top: 28px !important;
    margin-bottom: 14px !important;
}

.everleaf-single-sidebar {
    top: 86px;
    gap: 18px;
}

.everleaf-single-sidebar .everleaf-application-box {
    border: 2px solid rgba(161, 209, 131, 0.92);
    background: linear-gradient(180deg, rgba(161, 209, 131, 0.26), #fff 32%);
    box-shadow: 0 28px 80px rgba(21, 84, 89, 0.18);
}

.everleaf-single-sidebar .everleaf-application-box__intro {
    margin-bottom: 16px;
}

.everleaf-single-sidebar .everleaf-application-box__intro h3 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    font-size: clamp(28px, 3vw, 34px) !important;
    line-height: 1.04 !important;
}

.everleaf-single-sidebar .everleaf-application-box__intro p {
    max-width: none;
    color: var(--everleaf-teal);
    font-size: 14px;
    line-height: 1.55;
}

.everleaf-single-sidebar .everleaf-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
}

.everleaf-cf7-application select {
    appearance: auto;
}

.everleaf-cf7-application input.everleaf-readonly,
.everleaf-cf7-application input[readonly] {
    cursor: default;
}

.everleaf-single-sidebar .everleaf-cf7-application input[type="text"],
.everleaf-single-sidebar .everleaf-cf7-application input[type="email"],
.everleaf-single-sidebar .everleaf-cf7-application input[type="tel"],
.everleaf-single-sidebar .everleaf-cf7-application select,
.everleaf-single-sidebar .everleaf-cf7-application textarea {
    min-height: 50px;
    border-radius: 14px;
    background: #fff;
}

.everleaf-single-sidebar .everleaf-cf7-application select {
    color: var(--everleaf-ink);
    font-weight: 750;
}

.everleaf-single-sidebar .everleaf-consent-box {
    background: rgba(255, 255, 255, 0.88);
}

.everleaf-single-sidebar .everleaf-submit-row {
    margin-top: 16px;
}

.everleaf-single-sidebar .everleaf-submit-row input[type="submit"],
.everleaf-single-sidebar .everleaf-cf7-application input[type="submit"] {
    min-height: 50px;
    font-size: 14px;
}

.everleaf-job-summary-card__head {
    padding: 20px 22px 16px;
}

.everleaf-job-summary-card__head h2 {
    font-size: 23px !important;
    line-height: 1.1 !important;
}

.everleaf-job-summary-list div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 20px;
}

.everleaf-job-summary-list dd {
    font-size: 14px;
}

@media (max-width: 1100px) {
    .everleaf-single-layout {
        grid-template-columns: 1fr;
    }

    .everleaf-single-sidebar {
        order: -1;
        position: static;
    }

    .everleaf-single-sidebar .everleaf-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .everleaf-single-sidebar {
        order: -1;
    }

    .everleaf-single-sidebar .everleaf-form-grid {
        grid-template-columns: 1fr;
    }

    .everleaf-single-sidebar .everleaf-application-box {
        padding: 22px;
    }
}

/* EverLeaf Jobs 1.0.3 - cleaner single job page */
body.single-everleaf_job .entry-header,
body.single-everleaf_job .entry-title,
body.single-everleaf_job .et_post_meta_wrapper,
body.single-everleaf_job .post-meta,
body.single-everleaf_job .et_pb_title_container,
body.single-everleaf_job .et_pb_post > h1,
body.single-everleaf_job #left-area > article > h1 {
    display: none !important;
}

body.single-everleaf_job .everleaf-single-hero h1,
body.single-everleaf_job .everleaf-job-summary-card__head h2,
body.single-everleaf_job .everleaf-application-box__intro h3 {
    display: block !important;
}

.everleaf-single-job-page {
    width: min(1120px, calc(100vw - 36px));
    margin: clamp(18px, 3vw, 34px) auto clamp(48px, 6vw, 82px) !important;
    padding-top: clamp(12px, 2vw, 22px);
}

.everleaf-single-job-page .everleaf-share,
.everleaf-single-job-page .everleaf-hero-share-label,
.everleaf-single-job-page .everleaf-sidebar-share {
    display: none !important;
}

.everleaf-back-link {
    margin-bottom: 10px !important;
    font-size: 13px;
}

.everleaf-single-hero.everleaf-single-hero--compact,
.everleaf-single-job-page .everleaf-single-hero {
    display: block !important;
    grid-template-columns: 1fr !important;
    padding: clamp(24px, 4vw, 42px) !important;
    border-radius: 26px !important;
    background: linear-gradient(135deg, var(--everleaf-teal) 0%, #1b6b70 72%, rgba(161, 209, 131, 0.92) 160%) !important;
    box-shadow: 0 18px 50px rgba(21, 84, 89, 0.15) !important;
}

.everleaf-single-hero__facts {
    display: none !important;
}

.everleaf-single-hero h1 {
    max-width: 840px;
    margin: 9px 0 10px !important;
    font-size: clamp(34px, 5vw, 58px) !important;
    line-height: 1 !important;
    letter-spacing: -0.045em !important;
}

.everleaf-single-hero p {
    max-width: 760px !important;
    font-size: clamp(15px, 1.35vw, 18px) !important;
    line-height: 1.6 !important;
}

.everleaf-single-hero__actions {
    margin-top: 20px !important;
}

.everleaf-single-hero__actions .everleaf-btn {
    min-height: 46px;
    padding: 13px 20px;
    border-radius: 999px;
}

.everleaf-single-job-page > .everleaf-job-summary-card {
    display: grid !important;
    grid-template-columns: 245px minmax(0, 1fr) !important;
    align-items: stretch;
    margin-top: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(21, 84, 89, 0.13) !important;
    border-radius: 24px !important;
    background: #fff !important;
    box-shadow: 0 16px 46px rgba(21, 84, 89, 0.10) !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card .everleaf-job-summary-card__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 22px 24px !important;
    background: linear-gradient(145deg, var(--everleaf-teal), #1b676b) !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card .everleaf-job-summary-card__head .everleaf-eyebrow {
    color: var(--everleaf-green) !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card .everleaf-job-summary-card__head h2 {
    margin: 8px 0 0 !important;
    color: #fff !important;
    font-size: clamp(22px, 2.4vw, 28px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.04em !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card .everleaf-job-summary-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: stretch;
    margin: 0 !important;
    padding: 0 !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card .everleaf-job-summary-list div,
.everleaf-single-job-page > .everleaf-job-summary-card .everleaf-summary-item {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
    min-height: 78px;
    padding: 14px 18px !important;
    border-right: 1px solid rgba(21, 84, 89, 0.08) !important;
    border-bottom: 1px solid rgba(21, 84, 89, 0.08) !important;
    background: #fff !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card .everleaf-summary-item:nth-child(3n) {
    border-right: 0 !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card .everleaf-summary-item--hinweis {
    grid-column: span 3;
    min-height: auto;
    background: rgba(161, 209, 131, 0.13) !important;
    border-bottom: 0 !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card dt {
    margin: 0 !important;
    color: rgba(21, 84, 89, 0.62) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
}

.everleaf-single-job-page > .everleaf-job-summary-card dd {
    margin: 0 !important;
    color: var(--everleaf-teal) !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
}

.everleaf-single-layout.everleaf-single-layout--content,
.everleaf-single-job-page .everleaf-single-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px) !important;
    gap: clamp(20px, 3vw, 32px) !important;
    align-items: start !important;
    margin-top: 20px !important;
}

.everleaf-single-job-page .everleaf-job-main {
    min-width: 0 !important;
}

.everleaf-single-job-page .everleaf-content-card {
    padding: clamp(24px, 3.4vw, 38px) !important;
    border: 1px solid rgba(21, 84, 89, 0.12) !important;
    border-radius: 24px !important;
    background: #fff !important;
    box-shadow: 0 14px 42px rgba(21, 84, 89, 0.08) !important;
}

.everleaf-single-job-page .everleaf-content-card > .everleaf-eyebrow {
    margin-bottom: 8px !important;
    color: var(--everleaf-green) !important;
}

.everleaf-single-job-page .everleaf-job-description {
    margin-top: 10px !important;
    color: var(--everleaf-ink) !important;
    font-size: 16px !important;
    line-height: 1.74 !important;
}

.everleaf-single-job-page .everleaf-job-description p {
    max-width: 760px !important;
    margin: 0 0 18px !important;
    color: var(--everleaf-muted) !important;
    font-size: 16px !important;
    line-height: 1.74 !important;
}

.everleaf-single-job-page .everleaf-job-description h2,
.everleaf-single-job-page .everleaf-job-description h3 {
    margin: 26px 0 12px !important;
    color: var(--everleaf-teal) !important;
    font-size: clamp(22px, 2.4vw, 30px) !important;
    line-height: 1.14 !important;
}

.everleaf-single-job-page .everleaf-job-description ul,
.everleaf-single-job-page .everleaf-job-description ol {
    gap: 10px !important;
    margin-bottom: 18px !important;
}

.everleaf-single-job-page .everleaf-job-description li {
    padding: 12px 16px 12px 40px !important;
    border-radius: 16px !important;
    background: rgba(161, 209, 131, 0.10) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.everleaf-single-job-page .everleaf-job-description li::before {
    top: 18px !important;
    left: 17px !important;
    width: 8px !important;
    height: 8px !important;
}

.everleaf-single-job-page .everleaf-single-sidebar {
    position: sticky !important;
    top: 88px !important;
    display: block !important;
    min-width: 0 !important;
}

.everleaf-single-job-page .everleaf-application-box {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: 2px solid rgba(161, 209, 131, 0.95) !important;
    border-radius: 26px !important;
    background: #fff !important;
    box-shadow: 0 22px 64px rgba(21, 84, 89, 0.16) !important;
}

.everleaf-single-job-page .everleaf-application-box__intro {
    margin: 0 !important;
    padding: 22px 24px 18px !important;
    background: linear-gradient(145deg, rgba(161, 209, 131, 0.30), rgba(243, 244, 229, 0.72));
    border-bottom: 1px solid rgba(21, 84, 89, 0.09);
}

.everleaf-single-job-page .everleaf-application-box__intro h3 {
    margin: 7px 0 8px !important;
    color: var(--everleaf-teal) !important;
    font-size: clamp(28px, 3vw, 36px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
}

.everleaf-single-job-page .everleaf-application-box__intro p {
    max-width: none !important;
    margin: 0 !important;
    color: rgba(21, 84, 89, 0.78) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.everleaf-single-job-page .everleaf-cf7-application {
    padding: 22px 24px 24px !important;
}

.everleaf-single-job-page .everleaf-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 13px !important;
}

.everleaf-single-job-page .everleaf-form-grid label:nth-child(5),
.everleaf-single-job-page .everleaf-form-grid label:nth-child(6),
.everleaf-single-job-page .everleaf-form-grid label:nth-child(7) {
    grid-column: span 1;
}

.everleaf-single-job-page .everleaf-form-grid label,
.everleaf-single-job-page .everleaf-consent-box {
    color: var(--everleaf-teal) !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

.everleaf-single-job-page .everleaf-cf7-application input[type="text"],
.everleaf-single-job-page .everleaf-cf7-application input[type="email"],
.everleaf-single-job-page .everleaf-cf7-application input[type="tel"],
.everleaf-single-job-page .everleaf-cf7-application select,
.everleaf-single-job-page .everleaf-cf7-application textarea {
    width: 100% !important;
    min-height: 48px !important;
    margin-top: 6px !important;
    padding: 12px 13px !important;
    border: 1px solid rgba(21, 84, 89, 0.16) !important;
    border-radius: 14px !important;
    background-color: #fff !important;
    color: var(--everleaf-ink) !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
}

.everleaf-single-job-page .everleaf-cf7-application select {
    display: block !important;
    appearance: auto !important;
    -webkit-appearance: menulist !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    cursor: pointer !important;
}

.everleaf-single-job-page .everleaf-cf7-application input.everleaf-readonly,
.everleaf-single-job-page .everleaf-cf7-application input[readonly] {
    background: rgba(21, 84, 89, 0.06) !important;
    color: var(--everleaf-teal) !important;
}

.everleaf-single-job-page .everleaf-consent-box {
    margin-top: 16px !important;
    padding: 16px !important;
    border: 1px solid rgba(21, 84, 89, 0.10) !important;
    border-radius: 18px !important;
    background: rgba(161, 209, 131, 0.10) !important;
}

.everleaf-single-job-page .everleaf-consent-box p {
    margin: 0 0 10px !important;
    color: var(--everleaf-teal) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.everleaf-single-job-page .everleaf-submit-row {
    margin-top: 16px !important;
}

.everleaf-single-job-page .everleaf-submit-row input[type="submit"],
.everleaf-single-job-page .everleaf-cf7-application input[type="submit"] {
    width: 100% !important;
    min-height: 50px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--everleaf-teal) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0.01em !important;
    box-shadow: 0 14px 32px rgba(21, 84, 89, 0.22) !important;
}

.everleaf-single-job-page .everleaf-submit-row input[type="submit"]:hover,
.everleaf-single-job-page .everleaf-cf7-application input[type="submit"]:hover {
    background: #0f4448 !important;
}

@media (max-width: 980px) {
    .everleaf-single-job-page > .everleaf-job-summary-card {
        grid-template-columns: 1fr !important;
    }

    .everleaf-single-job-page > .everleaf-job-summary-card .everleaf-job-summary-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .everleaf-single-job-page > .everleaf-job-summary-card .everleaf-summary-item--hinweis {
        grid-column: span 2;
    }

    .everleaf-single-layout.everleaf-single-layout--content,
    .everleaf-single-job-page .everleaf-single-layout {
        grid-template-columns: 1fr !important;
    }

    .everleaf-single-job-page .everleaf-single-sidebar {
        position: static !important;
        order: -1 !important;
    }
}

@media (max-width: 640px) {
    .everleaf-single-job-page {
        width: min(100% - 22px, 1120px) !important;
        margin-top: 12px !important;
    }

    .everleaf-single-hero.everleaf-single-hero--compact,
    .everleaf-single-job-page .everleaf-single-hero {
        padding: 22px !important;
        border-radius: 22px !important;
    }

    .everleaf-single-hero h1 {
        font-size: clamp(30px, 10vw, 42px) !important;
    }

    .everleaf-single-job-page > .everleaf-job-summary-card .everleaf-job-summary-list {
        grid-template-columns: 1fr !important;
    }

    .everleaf-single-job-page > .everleaf-job-summary-card .everleaf-summary-item--hinweis {
        grid-column: span 1;
    }

    .everleaf-single-job-page .everleaf-form-grid {
        grid-template-columns: 1fr !important;
    }

    .everleaf-single-job-page .everleaf-cf7-application,
    .everleaf-single-job-page .everleaf-application-box__intro {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Single job page refinements requested 2026-07-09 */
body.single-everleaf_job h1.page-title,
body.single-everleaf_job .page-title.mb-4 {
    display: none !important;
}

body.single-everleaf_job .page-content-wrapper {
    padding: 0 !important;
}

body.single-everleaf_job .page-content-wrapper > .container,
body.single-everleaf_job .page-content-wrapper > .custom-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.everleaf-single-job-page .everleaf-form-grid label:nth-child(7) {
    grid-column: 1 / -1 !important;
}

.everleaf-single-job-page .everleaf-form-grid label:nth-child(7) .wpcf7-form-control-wrap,
.everleaf-single-job-page .everleaf-form-grid label:nth-child(7) select {
    width: 100% !important;
    display: block !important;
}

/* Single job page width + spacing refinement requested 2026-07-09 */
body.single-everleaf_job .everleaf-single-job-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.single-everleaf_job .everleaf-back-link {
    margin-bottom: 25px !important;
}
