

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    
}


body {
    font-family: "Lato", Arial, sans-serif;
    background: #ffffff;
    color: #222222;
    line-height: 1.5;
}


button,
input,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
}


/* =========================================================
   2. HEADER
   ========================================================= */

header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}


nav {
    width: 100%;
    min-height: 70px;

    display: flex;
    align-items: center;

    padding: 0 4%;

    position: relative;
}


.logo {
    font-family: "Montserrat", Arial, sans-serif;

    font-size: 24px;
    font-weight: 700;

    color: #151515;

    text-decoration: none;

    white-space: nowrap;
}


nav > a.logo {
    text-decoration: none;
}


nav ul {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 8px;

    list-style: none;
}


nav ul li a {
    display: block;

    padding: 10px 14px;

    color: #333333;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    border-radius: 8px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


nav ul li a:hover,
nav ul li a.active {
    color: #1558c0;
    background: #f1f6ff;
}


#click {
    display: none;
}


.menu-btn {
    display: none;

    margin-left: auto;

    font-size: 24px;

    color: #222222;

    cursor: pointer;
}


/* =========================================================
   3. SOCIAL TICKER
   ========================================================= */

.social-ticker {
    width: 100%;

    overflow: hidden;

    background: #f7f7f7;

    border-bottom: 1px solid #eeeeee;
}


.ticker-track {
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 7px 15px;
}


.ticker-text {
    color: #555555;

    font-size: 14px;

    text-align: center;
}


.icon-container {
    display: flex;

    align-items: center;

    gap: 9px;
}


.icon-container a {
    text-decoration: none;
}


.icon-link,
.icon-link2,
.icon-link3,
.icon-link4,
.icon-link5,
.icon-link6 {
    width: 32px;
    height: 32px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 15px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.icon-link {
    background: #0a66c2;
}


.icon-link2 {
    background: #25d366;
}


.icon-link3,
.icon-link6 {
    background: #111111;
}


.icon-link4 {
    background: #e1306c;
}


.icon-link5 {
    background: #229ed9;
}


.icon-link:hover,
.icon-link2:hover,
.icon-link3:hover,
.icon-link4:hover,
.icon-link5:hover,
.icon-link6:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* =========================================================
   4. MAIN CONTENT
   ========================================================= */

.content-wrapper {
    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding: 25px 24px 50px;
}


.content-wrapper > h1 {
    margin-bottom: 20px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 30px;

    font-weight: 700;

    color: #222222;
}


.print-message {
    margin-bottom: 18px;

    padding: 12px 15px;

    background: #f8f9fb;

    border: 1px solid #e7e9ed;

    border-radius: 8px;

    color: #555555;

    font-size: 14px;
}


.print-message a {
    color: #1558c0;

    text-decoration: none;

    font-weight: 600;
}


.print-message a:hover {
    text-decoration: underline;
}


/* =========================================================
   5. JOB BOARD
   ========================================================= */

.job-board-wrapper {
    width: 100%;
}


/* =========================================================
   6. FILTER AREA
   ========================================================= */

.filterc {
    width: 100%;

    margin-bottom: 18px;
}


.filter-container {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(170px, 0.7fr)
        minmax(280px, 1.8fr)
        minmax(140px, 0.5fr);

    gap: 14px;

    align-items: end;

    padding: 16px;

    background: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 12px;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.04);
}


.filter-state,
.filter-keyword,
.filter-rows {
    min-width: 0;
}


.filter-label {
    display: block;

    margin-bottom: 6px;

    color: #333333;

    font-size: 13px;

    font-weight: 700;
}


.filter-select {
    width: 100%;

    height: 44px;

    padding: 0 13px;

    background: #ffffff;

    border: 1px solid #cfcfcf;

    border-radius: 8px;

    outline: none;

    color: #222222;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.filter-select:hover {
    border-color: #aeb5bf;
}


.filter-select:focus {
    border-color: #1558c0;

    box-shadow:
        0 0 0 3px rgba(21, 88, 192, 0.10);
}


/* =========================================================
   7. STATUS
   ========================================================= */

.status {
    min-height: 0;

    margin-bottom: 12px;

    color: #555555;

    font-size: 14px;
}


.status.loading,
.status.success,
.status.error {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 12px;

    border-radius: 7px;
}


.status.loading {
    background: #f5f8ff;

    color: #1558c0;
}


.status.success {
    background: #eef9f0;

    color: #217a35;
}


.status.error {
    background: #fff2f2;

    color: #b42318;
}


.loading-spinner {
    width: 15px;
    height: 15px;

    border: 2px solid #d5e1f8;

    border-top-color: #1558c0;

    border-radius: 50%;

    animation:
        jobnexus-spin 0.7s linear infinite;
}


@keyframes jobnexus-spin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   8. DESKTOP JOB LAYOUT
   ========================================================= */

.jobs-layout {
    width: 100%;

    display: block;

    position: relative;
}


/*
   When a job is selected:

   Left = job table
   Right = description

   The right panel is controlled by JS.
*/


.jobs-layout.has-selection {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    gap: 18px;

    align-items: start;
}


/* =========================================================
   9. JOB LIST PANEL
   ========================================================= */

.job-list-panel {
    width: 100%;

    min-width: 0;
}


.jobs-layout.has-selection .job-list-panel {
    min-width: 0;
}


/* =========================================================
   10. JOB TABLE
   ========================================================= */

.job-table-container {
    width: 100%;

    overflow-x: auto;

    background: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 12px;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.04);
}


#jobTable {
    width: 100%;

    border-collapse: separate;

    border-spacing: 0;

    table-layout: fixed;

    background: #ffffff;
}


/* =========================================================
   11. TABLE HEADER
   ========================================================= */

#jobTable thead th {
    position: sticky;

    top: 0;

    z-index: 2;

    padding: 14px 15px;

    background: #f5f7fa;

    color: #333333;

    border-bottom: 1px solid #dcdfe4;

    font-size: 13px;

    font-weight: 700;

    text-align: left;

    white-space: nowrap;
}


/*
   ONLY THREE COLUMNS:

   1. Job Title
   2. Experience
   3. Work Location
*/


#jobTable th.job-title,
#jobTable td.job-title {
    width: 50%;
}


#jobTable th.experience,
#jobTable td.experience {
    width: 25%;
}


#jobTable th.location,
#jobTable td.location {
    width: 25%;
}


/* =========================================================
   12. TABLE ROW
   ========================================================= */

#jobTable tbody tr {
    background: #ffffff;

    cursor: pointer;

    transition:
        background 0.18s ease,
        box-shadow 0.18s ease;
}


#jobTable tbody tr:hover {
    background: #f8fbff;
}


#jobTable tbody tr.selected {
    background: #eef5ff;

    box-shadow:
        inset 4px 0 0 #1558c0;
}


#jobTable tbody td {
    padding: 16px 15px;

    color: #333333;

    border-bottom: 1px solid #eeeeee;

    vertical-align: top;

    font-size: 14px;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


#jobTable tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================================
   13. JOB TITLE
   ========================================================= */

.job-title-button {
    width: 100%;

    padding: 0;

    border: none;

    background: transparent;

    color: #1558c0;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;

    text-align: left;

    cursor: pointer;
}


.job-title-button:hover {
    color: #0b438f;

    text-decoration: underline;
}


.job-title-button:focus-visible {
    outline: 2px solid #1558c0;

    outline-offset: 3px;

    border-radius: 3px;
}


/*
   The entire row is clickable.
   The title button is kept for accessibility,
   but JS also handles row clicks.
*/


#jobTable tbody td.experience {
    color: #444444;

    font-weight: 500;
}


#jobTable tbody td.location {
    color: #444444;

    font-weight: 500;
}


/* =========================================================
   14. EMPTY STATE
   ========================================================= */

.empty {
    padding: 55px 25px !important;

    text-align: center !important;

    color: #666666 !important;
}


.empty-title {
    margin-bottom: 5px;

    color: #333333;

    font-size: 18px;

    font-weight: 700;
}


.empty-text {
    color: #777777;

    font-size: 14px;
}


/* =========================================================
   15. PAGINATION
   ========================================================= */

.pagination-controls {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 18px 0 5px;
}


.pagination-controls > div {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
}


.pagination-controls button {
    min-width: 90px;

    height: 38px;

    padding: 0 14px;

    border: 1px solid #cfd3d8;

    border-radius: 7px;

    background: #ffffff;

    color: #333333;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


.pagination-controls button:hover:not(:disabled) {
    border-color: #1558c0;

    background: #f1f6ff;

    color: #1558c0;
}


.pagination-controls button:disabled {
    cursor: not-allowed;

    opacity: 0.45;
}


#currentPage {
    min-width: 90px;

    text-align: center;

    color: #555555;

    font-size: 14px;

    font-weight: 600;
}


/* =========================================================
   16. JOB DETAILS PANEL - DESKTOP
   ========================================================= */

.job-details-panel {
    display: none;

    width: 100%;

    min-width: 0;

    position: sticky;

    top: 15px;

    height: calc(100vh - 30px);

    max-height: calc(100vh - 30px);

    background: #ffffff;

    border: 1px solid #d8d8d8;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.08);
}


.jobs-layout.has-selection
.job-details-panel {
    display: block;
}


/* =========================================================
   17. JOB DETAILS
   ========================================================= */

.job-details {
    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    overflow: hidden;
}


/* =========================================================
   18. DETAILS HEADER
   ========================================================= */

.details-header {
    flex: 0 0 auto;

    padding: 24px 24px 20px;

    border-bottom: 1px solid #e1e1e1;

    background: #ffffff;
}


.details-title {
    margin-bottom: 10px;

    color: #1d1d1d;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 25px;

    line-height: 1.3;

    font-weight: 700;
}


.details-company {
    margin-bottom: 5px;

    color: #333333;

    font-size: 16px;

    font-weight: 600;
}


.details-location {
    margin-bottom: 18px;

    color: #666666;

    font-size: 14px;
}


/* =========================================================
   19. APPLY AREA
   ========================================================= */

.apply-area {
    display: flex;

    align-items: center;

    gap: 10px;
}


.apply-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 23px;

    border-radius: 8px;

    background: #1558c0;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.15s ease;
}


.apply-button:hover {
    background: #0d47a1;

    transform: translateY(-1px);
}


.apply-button.disabled {
    background: #aeb4bd;

    cursor: not-allowed;

    pointer-events: none;
}


.close-details {
    width: 44px;
    height: 44px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dddddd;

    border-radius: 8px;

    background: #f7f7f7;

    color: #333333;

    font-size: 17px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.close-details:hover {
    background: #eeeeee;

    border-color: #c9c9c9;
}


/* =========================================================
   20. DETAILS CONTENT
   ========================================================= */

.details-content {
    flex: 1 1 auto;

    min-height: 0;

    overflow-y: auto;

    padding: 22px 24px 30px;
}


/* =========================================================
   21. DETAILS META
   ========================================================= */

.details-meta {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 28px;
}


.meta-item {
    padding: 12px;

    background: #f7f8fa;

    border: 1px solid #e5e6e8;

    border-radius: 8px;
}


.meta-label {
    display: block;

    margin-bottom: 4px;

    color: #777777;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.3px;
}


.meta-value {
    display: block;

    color: #333333;

    font-size: 13px;

    font-weight: 600;

    overflow-wrap: anywhere;
}


/* =========================================================
   22. DESCRIPTION
   ========================================================= */

.description-heading {
    margin-bottom: 15px;

    color: #282828;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 20px;

    font-weight: 700;
}


.job-description {
    color: #444444;

    font-size: 15px;

    line-height: 1.7;
}


.job-description p {
    margin: 0 0 14px;
}


.job-description ul,
.job-description ol {
    margin: 0 0 16px;

    padding-left: 24px;
}


.job-description li {
    margin-bottom: 7px;
}


.job-description strong,
.job-description b {
    color: #2a2a2a;

    font-weight: 700;
}


.job-description h1,
.job-description h2,
.job-description h3,
.job-description h4,
.job-description h5,
.job-description h6 {
    margin: 20px 0 10px;

    color: #292929;

    line-height: 1.35;
}


.job-description a {
    color: #1558c0;

    text-decoration: underline;
}


.job-description img {
    max-width: 100%;

    height: auto;
}


/* =========================================================
   23. MOBILE POPUP
   =========================================================

   The desktop details panel becomes a fixed popup
   on mobile.

   JS will add:

   body.job-details-open

   when a job is selected.
*/


.mobile-job-overlay {
    display: none;
}


/*
   The same #jobDetailsPanel becomes
   the popup on mobile.
*/


/* =========================================================
   24. FOOTER
   ========================================================= */

.footer {
    width: 100%;

    margin-top: 30px;

    padding: 35px 5% 20px;

    background: #f5f5f5;

    border-top: 1px solid #e2e2e2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


.box1,
.box2,
.box3 {
    min-width: 0;
}


.footerheading {
    margin-bottom: 10px;

    color: #222222;

    font-size: 16px;

    font-weight: 700;
}


.footercontent {
    color: #666666;

    font-size: 14px;

    line-height: 1.7;
}


.footer .icon-container {
    margin-top: 10px;
}


.copyright {
    grid-column: 1 / -1;

    padding-top: 20px;

    border-top: 1px solid #dddddd;

    text-align: center;
}


.copyright p {
    color: #777777;

    font-size: 13px;
}


.copyright a {
    color: #1558c0;

    text-decoration: none;
}


.copyright a:hover {
    text-decoration: underline;
}


/* =========================================================
   25. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .content-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }


    .jobs-layout.has-selection {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.85fr);

        gap: 12px;
    }


    .details-header {
        padding: 20px;
    }


    .details-content {
        padding: 20px;
    }


    .details-title {
        font-size: 22px;
    }


    #jobTable tbody td,
    #jobTable thead th {
        padding-left: 12px;
        padding-right: 12px;
    }

}


/* =========================================================
   26. TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 900px) {

    .filter-container {
        grid-template-columns:
            1fr 1fr;

        align-items: end;
    }


    .filter-keyword {
        grid-column: span 2;
        grid-row: 1;
    }


    .filter-state {
        grid-column: 1;
        grid-row: 2;
    }


    .filter-rows {
        grid-column: 2;
        grid-row: 2;
    }


    /*
       At this width, keep details beside
       the table, but make the panel narrower.
    */

    .jobs-layout.has-selection {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, 0.75fr);
    }


    .details-meta {
        grid-template-columns: 1fr;
    }


    .details-title {
        font-size: 20px;
    }

}


/* =========================================================
   27. MOBILE
   ========================================================= */

@media (max-width: 700px) {

    body {
        overflow-x: hidden;
    }


    /* ---------------------------------------------
       NAVIGATION
    --------------------------------------------- */

    nav {
        min-height: 60px;

        padding:
            0 15px;
    }


    .logo {
        font-size: 20px;
    }


    .menu-btn {
        display: block;
    }


    nav ul {
        position: absolute;

        top: 60px;
        left: -100%;

        width: 100%;

        margin: 0;

        padding: 10px 15px;

        display: block;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        box-shadow:
            0 8px 15px rgba(0, 0, 0, 0.08);

        transition:
            left 0.25s ease;

        z-index: 1000;
    }


    #click:checked ~ ul {
        left: 0;
    }


    nav ul li {
        width: 100%;
    }


    nav ul li a {
        width: 100%;

        padding: 12px;

        margin-bottom: 3px;
    }


    /* ---------------------------------------------
       SOCIAL TICKER
    --------------------------------------------- */

    .ticker-track {
        min-height: 52px;

        flex-direction: column;

        gap: 5px;

        padding:
            7px 10px;
    }


    .ticker-text {
        font-size: 12px;

        line-height: 1.3;
    }


    .icon-container {
        gap: 6px;
    }


    .icon-link,
    .icon-link2,
    .icon-link3,
    .icon-link4,
    .icon-link5,
    .icon-link6 {
        width: 27px;
        height: 27px;

        font-size: 12px;
    }


    /* ---------------------------------------------
       CONTENT
    --------------------------------------------- */

    .content-wrapper {
        padding:
            18px 10px 35px;
    }


    .content-wrapper > h1 {
        font-size: 23px;

        line-height: 1.3;

        margin-bottom: 15px;
    }


    .print-message {
        font-size: 12px;

        padding: 10px;
    }


    /* ---------------------------------------------
       FILTERS
    --------------------------------------------- */

    .filter-container {
        grid-template-columns: 1fr;

        gap: 11px;

        padding: 12px;
    }


    .filter-keyword,
    .filter-state,
    .filter-rows {
        grid-column: auto;
        grid-row: auto;
    }


    .filter-label {
        font-size: 12px;
    }


    .filter-select {
        height: 43px;

        font-size: 14px;
    }


    /* ---------------------------------------------
       TABLE
    --------------------------------------------- */

    .job-table-container {
        border-radius: 10px;

        overflow-x: hidden;
    }


    #jobTable {
        table-layout: fixed;
    }


    /*
       Mobile table has only 3 columns.

       Title gets most space.
    */

    #jobTable th.job-title,
    #jobTable td.job-title {
        width: 52%;
    }


    #jobTable th.experience,
    #jobTable td.experience {
        width: 25%;
    }


    #jobTable th.location,
    #jobTable td.location {
        width: 23%;
    }


    #jobTable thead th {
        padding:
            11px 8px;

        font-size: 11px;

        white-space: normal;

        line-height: 1.25;
    }


    #jobTable tbody td {
        padding:
            13px 8px;

        font-size: 12px;

        line-height: 1.4;
    }


    .job-title-button {
        font-size: 13px;

        line-height: 1.35;
    }


    #jobTable tbody td.experience,
    #jobTable tbody td.location {
        font-size: 11px;
    }


    /* ---------------------------------------------
       PAGINATION
    --------------------------------------------- */

    .pagination-controls {
        padding-top: 14px;
    }


    .pagination-controls > div {
        gap: 7px;
    }


    .pagination-controls button {
        min-width: 75px;

        height: 36px;

        padding:
            0 9px;

        font-size: 12px;
    }


    #currentPage {
        min-width: 75px;

        font-size: 12px;
    }


    /* ---------------------------------------------
       MOBILE DETAILS
    --------------------------------------------- */

    /*
       The desktop two-column layout is disabled.
    */

    .jobs-layout.has-selection {
        display: block;
    }


    /*
       Full-screen dark overlay.
    */

    body.job-details-open::before {
        content: "";

        position: fixed;

        inset: 0;

        z-index: 4999;

        background:
            rgba(0, 0, 0, 0.55);
    }


    /*
       Turn details panel into modal.
    */

    .jobs-layout.has-selection
    .job-details-panel {

        display: block;

        position: fixed;

        z-index: 5000;

        top: 50%;

        left: 50%;

        width: calc(100vw - 24px);

        height: calc(100vh - 30px);

        max-height: calc(100vh - 30px);

        transform:
            translate(-50%, -50%);

        border-radius: 14px;

        border: none;

        box-shadow:
            0 15px 50px
            rgba(0, 0, 0, 0.30);

        overflow: hidden;
    }


    .details-header {
        padding:
           0px 15px;
        padding-top: 20px; 
    }

  

     #jobDetailsPanel {
        padding-top: 10px;
    } 

    #detailsTitle {
        margin-top: 10px;
    }




    .details-title {
        padding-right: 5px;

        font-size: 20px;

        line-height: 1.3;
    }


    .details-company {
        font-size: 14px;
    }


    .details-location {
        font-size: 13px;

        margin-bottom: 13px;
    }


    .apply-area {
        gap: 7px;
    }


    .apply-button {
        min-height: 42px;

        padding:
            0 18px;

        font-size: 14px;

        flex: 1;
    }


    .close-details {
        width: 42px;
        height: 42px;

        flex: 0 0 42px;
    }


    .details-content {
        padding:
            16px 15px 25px;
    }


    .details-meta {
        grid-template-columns: 1fr;

        gap: 7px;

        margin-bottom: 22px;
    }


    .meta-item {
        padding: 9px 11px;
    }


    .meta-label {
        font-size: 10px;
    }


    .meta-value {
        font-size: 12px;
    }


    .description-heading {
        font-size: 18px;

        margin-bottom: 12px;
    }


    .job-description {
        font-size: 14px;

        line-height: 1.65;
    }


    .job-description p {
        margin-bottom: 12px;
    }


    /* ---------------------------------------------
       FOOTER
    --------------------------------------------- */

    .footer {
        grid-template-columns: 1fr;

        gap: 25px;

        padding:
            30px 20px 20px;
    }


    .copyright {
        grid-column: auto;
    }

}


/* =========================================================
   28. VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .content-wrapper > h1 {
        font-size: 21px;
    }


    /*
       Make the table slightly more compact.
    */

    #jobTable th.job-title,
    #jobTable td.job-title {
        width: 50%;
    }


    #jobTable th.experience,
    #jobTable td.experience {
        width: 27%;
    }


    #jobTable th.location,
    #jobTable td.location {
        width: 23%;
    }


    #jobTable thead th {
        padding:
            10px 6px;

        font-size: 10px;
    }


    #jobTable tbody td {
        padding:
            12px 6px;

        font-size: 11px;
    }


    .job-title-button {
        font-size: 12px;
    }


    #jobTable tbody td.experience,
    #jobTable tbody td.location {
        font-size: 10px;
    }


    .jobs-layout.has-selection
    .job-details-panel {

        width: calc(100vw - 14px);

        height: calc(100vh - 16px);

        max-height: calc(100vh - 16px);
    }


    .details-title {
        font-size: 18px;
    }


    .apply-button {
        font-size: 13px;

        padding:
            0 12px;
    }

}


/* =========================================================
   29. ACCESSIBILITY
   ========================================================= */

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
    outline: 2px solid #1558c0;

    outline-offset: 2px;
}


/* =========================================================
   30. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
