/* Header */
.job-header {
    padding-top: 182px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
    margin-left: 35px;
}

.job-breadcrumb {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 20px;
    font-family: 'gt-america-regular';
}

.job-header__title {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-family: 'lyon-regular';
}

.job-header__position {
    font-size: 80px;
    line-height: 100%;
    font-weight: 500;
    margin: 0;
}

.job-header__subtitle {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    font-family: 'gt-america-regular';
    margin: 0;
}

/* Job Details Section */
.job-details {
    display: flex;
    flex-direction: row;
    gap: 40px;
    font-size: 16px;
    color: #475467;
    margin-top: 20px;
    margin-left: 35px;
}

.job-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-detail__label {
    line-height: 140%;
    color: #475467;
}

.job-detail__value {
    font-weight: 700;
    line-height: 120%;
    color: #000;
}

/* Layout job-section */
.job-section {
    width: 100%;
    display: flex;
    gap: 30px;
    padding: 0 267px 0 30px;
    box-sizing: border-box;
    align-items: flex-start;
}

/* Sidebar */
.job-sidebar {
    width: 323px;
    background-color: #eff0db;
    padding: 24px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-title {
    font-family: 'gt-america-regular';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.2px;
}

.sidebar-text {
    line-height: 140%;
}

.sidebar-divider {
    border-top: 1px solid #000;
    height: 1px;
}

.sidebar-list {
    margin: 0;
    padding-left: 21px;
    line-height: 140%;
}

.apply-btn {
    background-color: #000;
    color: #eeff75;
    text-align: center;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

/* Main Content */
.job-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: 'lyon-regular';
    font-size: 30px;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title {
    font-weight: 500;
    line-height: 100%;
}

.section-body {
    font-family: 'gt-america-regular';
    font-size: 16px;
    line-height: 140%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-list {
    margin: 0;
    padding-left: 21px;
}
.applybtnsecondary {
   margin-bottom:43px;
}
.apply-btn-secondary {
    background-color: #eeff75;
    padding: 15px 28px;
    font-size: 14px;
    font-family: 'gt-america-regular';
    text-align: center;
    cursor: pointer;
}

/* -------------------------
       Responsive Design
    ------------------------- */
@media (max-width: 1024px) {
    .job-section {
        padding: 0 40px;
        flex-direction: column-reverse;
        /* sidebar moves below main content */
        gap: 32px;
    }

    .job-sidebar {
        width: 100%;
    }

    .job-main {
        font-size: 24px;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .job-breadcrumb {
       line-height: 30px;
       .job-header__position {
        font-size: 40px;
       }
    }
}
@media (max-width: 600px) {
    .job-section {
        padding: 0 20px;
        gap: 24px;
    }

    .job-main {
        font-size: 20px;
        gap: 24px;
    }

    .apply-btn,
    .apply-btn-secondary {
        width: 100%;
        padding: 12px 20px;
    }
}

.divider-line {
    width: 100%;
    /* full width of parent */
    max-width: 1360px;
    /* optional max width */
    height: 2px;
    /* line thickness */
    margin: 80px auto;
    /* vertical spacing and centered */
    display: block;
    /* ensures margin auto works */
}

@media (max-width: 1024px) {
    .divider-line {
        margin: 60px auto;
        /* smaller vertical spacing on tablet */
    }
}

@media (max-width: 600px) {
    .divider-line {
        margin: 40px auto;
        /* smaller spacing on mobile */
    }
}