/* ── Jobs Archive ── */
.jobs-archive { width: 100%; }
.jobs-archive-inner {
    width: min(calc(100% - 42px), 956px);
    margin: 0 auto;
}
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.job-card {
    min-height: 156px;
    width: 100%;
    box-sizing: border-box;
    padding: 32px 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #eef9fd;
    border-radius: 26px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,35,60,.06);
}
.job-card-title {
    margin: 0 0 20px;
    color: #050a3b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -.4px;
}
.job-card-meta {
    display: flex;
    align-items: center;
    gap: 27px;
    color: #555;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1;
}
.job-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
}
.job-meta-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    fill: none;
    stroke: #555;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.job-card-action { flex-shrink: 0; }
.job-view-button {
    width: fit-content;
    gap:10px;
    height: 50px;
    box-sizing: border-box;
    padding: 0 9px 0 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #079bd3;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: background 180ms ease, transform 180ms ease;
}
.job-view-button:hover {
    color: #fff;
    background: #078ec2;
    transform: translateY(-1px);
}
.job-view-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

/* ── Single Job ── */
.single-job { width: 100%; }
.single-job-inner {
    width: min(calc(100% - 42px), 956px);
    margin: 0 auto;
}
.single-job-header {
    padding: 40px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #eef9fd;
    border-radius: 26px;
}
.single-job-header h1 {
    margin: 0 0 20px;
    color: #050a3b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -.5px;
}
.single-job-meta {
    display: flex;
    gap: 25px;
    color: #555;
    font-size: 18px;
}
.job-apply-button {
    width: fit-content;
    gap:10px;
    height: 50px;
    flex-shrink: 0;
    padding: 0 9px 0 27px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    background: #079bd3;
    color: #fff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background 180ms ease, transform 180ms ease;
}
.job-apply-button:hover {
    color: #fff;
    background: #078ec2;
    transform: translateY(-1px);
}
.single-job-content { 
    max-width: 820px;
    margin-bottom: 20px;
 }
.single-job-section { margin-bottom: 48px; }
.single-job-section h2 {
    margin: 0 0 20px;
    color: #050a3b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.15;
}
.single-job-description,
.single-job-section li {
    color: #555;
    font-size: 17px;
    line-height: 1.75;
}
.single-job-section ul {
    margin: 0;
    padding-left: 25px;
}
.single-job-section li { margin-bottom: 9px; }
.single-job-apply {
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #e3e3e3;
}

/* ── Responsive ── */
@media (max-width: 700px) {
    .jobs-archive-inner { width: calc(100% - 30px); }
    .job-card {
        min-height: 0;
        padding: 28px;
        flex-direction: column;
        align-items: flex-start;
    }
    .job-card-title { font-size: 27px; margin-bottom: 18px; }
    .job-card-meta {
        flex-wrap: wrap;
        gap: 15px 22px;
        font-size: 16px;
    }
    .job-card-action { width: 100%; }
    .job-view-button { width: 100%; }

    .single-job-inner { width: calc(100% - 30px); }
    .single-job-header {
        padding: 28px;
        flex-direction: column;
        align-items: flex-start;
    }
    .single-job-header h1 { font-size: 36px; }
    .single-job-meta {
        flex-wrap: wrap;
        font-size: 16px;
    }
    .job-apply-button { width: 100%; }
}
