<style>
/* ============================
   ROOT VARIABLES
============================ */
:root {
    --primary: #0f766e;
    --accent: #f97316;
    --bg: #f8fafc;
    --text: #1e293b;
    --muted: #64748b;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --transition: .2s ease;
}

/* ============================
   GLOBAL RESET & BODY
============================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

/* ============================
   HERO HEADER
============================ */
.job-hero {
    background: linear-gradient(120deg, var(--primary), #14b8a6);
    padding: 80px 20px;
    color: #fff;
}

.hero-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #fff;
    border-radius: var(--radius);
    padding: 10px;
}

.job-hero h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.job-hero p {
    font-size: 1rem;
    opacity: 0.85;
}

/* ============================
   MAIN LAYOUT
============================ */
.job-layout {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    gap: 35px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.job-content {
    flex: 2;
    min-width: 300px;
}

.job-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
    height: fit-content;
    min-width: 250px;
}

/* ============================
   INFO GRID
============================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 35px;
}

.info-grid div {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-grid strong {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.info-grid span {
    font-weight: 600;
}

/* ============================
   ARTICLE CONTENT
============================ */
article h2, article h3, article h4 {
    margin-top: 32px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary);
    padding-left: 10px;
    font-weight: 700;
}

article p {
    margin: 12px 0;
}

.job-description-preview,
.job-qualifications,
.job-skills {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.job-description-preview a.read-more,
.job-qualifications a,
.job-skills a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.job-description-preview a.read-more:hover,
.job-qualifications a:hover,
.job-skills a:hover {
    color: var(--accent);
}

/* ============================
   SIDEBAR CARDS
============================ */
.apply-card,
.company-card,
.sidebar-card {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.apply-btn {
    display: block;
    margin-top: 15px

    background: linear-gradient(120deg, var(--primary), #14b8a6);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, .4);
}

.closed-box {
    background: #fee2e2;
    padding: 14px;
    border-radius: 12px;
    color: #b91c1c;
    font-weight: bold;
    text-align: center;
}

/* ============================
   SIDEBAR LISTS
============================ */
.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary);
    padding-left: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sidebar-card ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.sidebar-card ul li span {
    font-size: 0.9rem;
    margin-right: 6px;
}

.sidebar-card ul li a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.sidebar-card ul li a:hover {
    color: var(--accent);
}

/* ============================
   MOBILE APPLY BUTTON
============================ */
.apply-mobile {
    display: none;
    margin-top: 30px;
    background: var(--accent);
    color: #fff;
    padding: 16px;
    text-align: center;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* ============================
   ADS BOX
============================ */
.ad-box {
    height: 250px;
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--muted);
    margin-bottom: 25px;
}

/* ============================
   FOOTER
============================ */
.site-footer {
    margin-top: auto;
    padding: 20px 12px;
    background: #0f172a;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: var(--muted);
}

/* ============================
   RESPONSIVE
============================ */
@media(max-width: 900px) {
    .job-layout {
        flex-direction: column;
    }

    .job-sidebar {
        position: relative;
        top: auto;
    }

    .apply-mobile {
        display: block;
    }
}


</style>