/* ================= Job Container ================= */
.job-ui {
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Inter', Arial, sans-serif;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    color: #333;
}

/* ================= Job Badges ================= */
.job-badges span {
    display: inline-block;
    background: #f0f4f8;
    color: #555;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 4px 6px 4px 0;
    font-size: 13px;
    font-weight: 500;
}

/* ================= Company Info ================= */
.job-company {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 1px solid #e2e8f0; /* subtle border */
    background: #f8f9fa;        /* fallback background */
}

.job-company h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

/* ================= Job Title ================= */
.job-ui h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}

/* ================= Job Content ================= */
.job-content {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* ================= Apply Button ================= */
.apply-btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.apply-btn:hover {
    background: #005bb5;
}

/* ================= Job Cards (Archive / List) ================= */
.job-card {
    border: 1px solid #e2e8f0;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    background: #fff;
}

.job-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Job card title */
.job-card h2 a {
    color: #0073e6;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.job-card h2 a:hover {
    text-decoration: underline;
}

/* Job card meta */
.job-meta {
    margin-top: 10px;
    font-size: 13px;
    color: #555;
}

.job-meta span {
    margin-right: 14px;
}
