.job-board {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.job-board h4 {
    padding-bottom: 16px;
    margin: 0;
    font-family: inherit;
    font-size: 24px;
    font-weight: inherit;
    line-height: 1.3333;
    letter-spacing: 0;
}

.job-board h5 {
    padding-bottom: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: inherit;
    font-weight: 700;
    line-height: 1.5;
    color: #101921;
    letter-spacing: 0;
}

.job-filters {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 900px) {
    .job-filters > div {
        width: calc(25% - 16px);
        max-width: 274px;
    }
}

.job-count {
    font-size: 32px;
    color: #445a3e;
    margin-bottom: 36px;
}

.job-filters input,
.job-filters select {
    display: block;
    width: 100%;
    height: 62px;
    border: 1px solid #bbb;
    border-radius: 6px;
    padding: 20px 15px 14px;
    font-size: 15px;
    color: #333;
    outline: none;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0d0d0d;
    text-align: center;
    letter-spacing: 0.04em;
}
.job-filters input::placeholder {
    color: #0d0d0d;
}

.job-filters input[name="search"] {
    padding-right: 75px;
    padding-left: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%230d0d0d" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) center;
    text-align: left;
}

#filter-career-area,
#filter-location {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24"><path fill="%230d0d0d" d="M12 21l-12-18h24z"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 17px) calc(50% + 2px);
    padding-right: 40px;
}

.btn-clear {
    color: #004a61;
    text-decoration: underline;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.dept-heading {
    font-family: "Georgia", serif;
    font-size: 24px;
    color: #333;
    margin: 40px 0 20px;
    font-weight: normal;
}

.job-group-section {
    margin-bottom: 40px;
}

.job-card {
    position: relative;
    border-bottom: 1px solid #bbb;
    padding: 13px 52px 11px 6px;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-card:hover {
    background-color: #cee3f3;
}

.job-main {
    font-size: 14px;
    line-height: 1.4286;
}

.job-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.job-location {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.job-actions {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.job-card:hover .job-actions {
    opacity: 1;
}

.job-card a.btn-apply {
    padding: 10px 30px;
    border-radius: 25px;
    background-color: #184c76;
    font-size: 13px;
    font-weight: 700;
    color: #cee3f3;
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.job-card a.btn-apply:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.job-card a.btn-apply:hover {
    background-color: #184c76;
    color: #cee3f3;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 64px;
}

.pagination-container button {
    padding: 10px 16px 6px;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #101921;
    cursor: pointer;
    transition: border 0.2s ease, background-color 0.2s ease;
}

.pagination-container button svg {
    width: 7px;
    height: 12px;
    margin-top: 2px;
}

.pagination-container button:not(:first-child):not(:last-child):hover,
.pagination-container button.active {
    border-color: #10192199;
    background-color: #1019211a;
    font-weight: 500;
    color: #101921;
}

.pagination-container button:first-child,
.pagination-container button:last-child {
    border: none;
}

.pagination-container button:disabled {
    cursor: auto;
}

.pagination-container button:disabled svg path {
    fill: #10192199;
}
.job-new {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: #2f80c9;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    vertical-align: middle;
}