/* Job Detail Page Styles */
/* Design: 1512px frame, container 1420px (46px margins), content block w=1276px */

/* =====================================================
   DARK SECTION
   Background: #131316, hero image top ~934px, footer y=1251
   ===================================================== */

.job-dark {
    position: relative;
    background: #131316;
    padding-bottom: 120px;
}

/* Hero image overlay */


/* Watermark logo: x=46, y=282, w=452, h=452, opacity=5% */
.job-watermark {
    position: absolute;
    left: 46px;
    top: 282px;
    width: 452px;
    height: 452px;

    pointer-events: none;
    z-index: 0;
}

.job-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =====================================================
   CONTENT WRAPPER
   Inside .container (1420px centered, 46px margins)
   Content block: w=1276px, left-aligned
   ===================================================== */

.job-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 225px; /* y=225 from design */
    max-width: 1276px;  /* w=1276 from design */
}

/* =====================================================
   JOB TITLE
   Brodaers Expanded, 50px, lh=1.1, ls=2, color=#eff2f1
   gap=50 below (block gap from design)
   ===================================================== */

.job-title {
    font-family: 'Brodaers Expanded', 'Roboto Flex', sans-serif;
    font-size: 50px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #eff2f1;
    margin: 0 0 50px 0;
}

/* =====================================================
   TWO-COLUMN LAYOUT
   gap=98 between sidebar(386px) and content(800px)
   1276 - 386 - 800 = 90px actual gap
   ===================================================== */

.job-layout {
    display: flex;
    gap: 90px;
    align-items: flex-start;
}

/* =====================================================
   LEFT SIDEBAR
   w=386, padding=20, gap=14
   border-bottom: 1px solid #67ff56 (green line from design)
   ===================================================== */

.job-sidebar {
    flex: 0 0 386px;
    width: 386px;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-bottom: 1px solid #67ff56;
}

/* "Location:" — Roboto Flex, 18px, fw=700, lh=1.4, ls=-0.192 */
.job-meta-label {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.192px;
    color: #eff2f1;
}

/* Value — Roboto Flex, 16px, normal, lh=1.4 */
.job-meta-value {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    color: #eff2f1;
}

/* =====================================================
   RIGHT CONTENT
   w=800, gap=30 between sections
   ===================================================== */

.job-content {
    flex: 0 0 800px;
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* =====================================================
   SECTION — title + text, gap=10
   ===================================================== */

.job-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.job-section a
	{
		color: #67FF56;

	}

/* Section title: Roboto Flex, 18px, fw=700, lh=1.4, ls=-0.192 */
.job-section-title {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 700!important;
    line-height: 1.4;
    letter-spacing: -0.192px;
    color: #eff2f1;
		text-transform: none!important;
		font-style: normal!important;
    margin: 0;
}

/* Section text: Roboto Flex, 16px, normal, lh=1.4 */
.job-section-text {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    color: #eff2f1;
}

.job-section-text p {
    margin: 0 0 8px 0;
}

.job-section-text p:last-child {
    margin-bottom: 0;
}

.job-section-text ul,
.job-section-text ol {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.job-section-text li {
    font-size: 16px;
    line-height: 1.4;
    color: #eff2f1;
}

/* =====================================================
   MOBILE (max-width: 767px)
   Mobile design: all stacks vertically, gap=32
   Header h=128, block at y=274, margin=16
   ===================================================== */

@media (max-width: 767px) {

    .job-dark {
        padding-bottom: 60px;
    }

  

    .job-watermark {
        width: 243px;
        height: 243px;
        left: 25%;
        top: 76px;
    }

    .job-wrapper {
        padding-top: 50px;
        max-width: none;
    }

    .job-title {
        font-size: 32px;
        line-height: 1;
        margin-bottom: 32px;
    }

    .job-layout {
        flex-direction: column;
        gap: 32px;
    }

    .job-sidebar {
        flex: none;
        width: 100%;
    }

    .job-content {
        flex: none;
        width: 100%;
        gap: 16px;
    }
}
