/* =========================
   Careers Opportunities
========================= */

.careers-opportunities h2 {
    margin-bottom: 14px;
    color: var(--navy-900);
    font-size: 36px;
    font-weight: 700;
}

.careers-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.careers-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 15px;
}

/* Blue Permanent heading */
.careers-table .careers-table-title th {
    padding: 10px;
    background: #119ee9;
    color: #fff;
    text-align: left;
    font-size: 30px;
    font-weight: 700;
}

/* Column headings */
.careers-table .careers-table-headings th {
    padding: 7px 5px;
    background: #f1f1f1;
    color: #444;
    text-align: left;
    font-weight: 600;
}

/* Column widths */
.careers-table th:nth-child(1),
.careers-table td:nth-child(1) {
    width: 38%;
}

.careers-table th:nth-child(2),
.careers-table td:nth-child(2) {
    width: 15%;
}

.careers-table th:nth-child(3),
.careers-table td:nth-child(3) {
    width: 15%;
}

.careers-table th:nth-child(4),
.careers-table td:nth-child(4) {
    width: 32%;
}

/* Table cells */
.careers-table tbody td {
    padding: 7px 5px;
    color: #555;
    vertical-align: top;
}

/* Alternating row background */
.careers-table tbody tr:nth-child(even) {
    background: #f1f1f1;
}

.careers-table tbody tr:nth-child(odd) {
    background: #fff;
}

/* Position links */
.careers-table tbody td a {
    color: #0796d2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.careers-table tbody td a:hover {
    color: var(--navy-900);
    text-decoration: underline;
}

/* Privacy text below table */
.careers-privacy {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #ddd;

    color: #777;
    font-size: 13px;
    line-height: 1.35;
}

.careers-privacy a {
    color: #0796d2;
    text-decoration: none;
}

.careers-privacy a:hover {
    text-decoration: underline;
}

/* =========================
   Career Job Detail
========================= */

.career-job-detail {
    padding-top: 120px;
}

.career-job-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.career-back-link {
    color: #0b9ad6;
    text-decoration: none;
    font-size: 14px;
}

.career-back-link:hover {
    text-decoration: underline;
}

.career-print-btn {
    cursor: pointer;
}


/* Detail table */

.career-detail-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.career-detail-table th,
.career-detail-table td {
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
}

.career-detail-table th {
    width: 170px;
    padding: 10px 15px 10px 0;

    border-right: 1px solid #e5e5e5;

    text-align: left;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.career-detail-table td {
    padding: 10px 15px;

    color: #666;
    font-size: 14px;
    line-height: 1.45;
}


/* Job title */

.career-job-title {
    margin: 0;

    color: var(--navy-900);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}


/* Paragraph */

.career-detail-table p {
    margin: 0;
}


/* Lists */

.career-detail-list {
    margin: 0;
    padding-left: 22px;
}

.career-detail-list li {
    margin-bottom: 12px;
}

.career-detail-list li:last-child {
    margin-bottom: 0;
}


/* Mobile */

@media (max-width: 768px) {

    .career-detail-table,
    .career-detail-table tbody,
    .career-detail-table tr,
    .career-detail-table th,
    .career-detail-table td {
        display: block;
        width: 100%;
    }

    .career-detail-table th {
        padding: 12px 0 4px;

        border-right: 0;
        border-bottom: 0;
    }

    .career-detail-table td {
        padding: 4px 0 14px;
    }

    .career-job-title {
        font-size: 23px;
    }
}


/* Print */

@media print {

    .site-header,
    .site-footer,
    .career-job-actions {
        display: none !important;
    }

    .career-job-detail {
        padding-top: 0;
    }
}
/* =========================
   Mobile
========================= */

@media (max-width: 768px) {

    .careers-opportunities h2 {
        font-size: 28px;
    }

    .careers-table .careers-table-title th {
        font-size: 24px;
    }

    .careers-table {
        min-width: 650px;
    }

    .careers-table tbody td,
    .careers-table .careers-table-headings th {
        padding: 8px 6px;
    }
}