.box2{
    padding-bottom: 1.5rem;
}
.filter-wrapper {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1400px;
    margin: .77rem 0;
}

.filter-row {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.filter-row:last-child {
    border-bottom: none;
}

.filter-label {
    width: 2.28rem;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005dab;
    font-weight: 500;
    font-size: .18rem;
    font-family: Sans-Medium;
}

.filter-options {
    flex: 1;
    padding: .19rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.15rem;
}
.filter-options .option_list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 1rem);
    column-gap: 0.15rem;
    row-gap: 0.1rem;
}
.filter-option {
   border-radius: 4px;
   cursor: pointer;
   font-size: 0.18rem;
   transition: all 0.2s ease;
   color: #767676;
   padding: 0.08rem .22rem;
   height: fit-content;
}

.filter-option.active{
    background-color: #005dab;
    color: white;
}
.filter-option a{
    font-family: Sans-Medium;
}
.filter-option:not(.active):hover {
    color: #005dab;
}
.page{
    margin-top: 1.22rem !important;
}
.job-card {
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 0px .2rem 1px rgba(0, 0, 0, 0.1);
    border-radius: .1rem;
    padding: .38rem .7rem;
    margin-bottom: .25rem;
    align-items: center;
    justify-content: space-between;
}

.job-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-info h3 {
    font-weight: bold;
    font-size: .35rem;
    color: #000000;
    line-height: 1.2;
    margin-bottom: .3rem;
    
    font-family: Sans-Bold;
}

.job-meta {
    display: flex;
    flex-direction: column;

    font-size: 0.9rem;
    color: #4b5563;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: .18rem;
    color: #767676;
    line-height: .55rem;
     font-family: Sans-Medium;
}

.job-meta span img {
    width: .2rem;
    height: .2rem;
}
.job-card a:hover .learn-more-btn{
    background: #9BBD00;
     transition: all 0.5s;
    
}
.learn-more-btn {
    width: 2.27rem;
    height: .6rem;
    background: #005DAB;
    border-radius: .35rem;
    border: none;
    color: #FFFFFF;
    font-size: .18rem;
     transition: all 0.5s;
     display: flex;
     align-items: center;
  justify-content: center;
      cursor: pointer;
      font-family: Sans-SemiBold;
}

.learn-more-btn:hover {
    background-color: #005dab;
}
.learn-more-btn img{
    width: .16rem;
    height: .16rem;
    margin-left: .35rem;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 3rem 0;
}

.pagination a,
.pagination span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    color: #4b5563;
    font-size: 1.25rem;
}

.pagination a:hover:not(.active) {
    background-color: #f3f4f6;
}

.pagination a.active {
    background-color: #005dab;
    color: white;
}

.pagination .ellipsis {
    width: auto;
    padding: 0 0.5rem;
}