.JobsSection {
    background-color: #fff;
    padding-top: 10rem;
  padding-bottom: 10rem;
}

.JobsSection-inner p {
    margin-top: 20px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header p {
    margin-top: 0;
}

.jobCard {
    border-radius: 5px;
}

.jobContainer {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    background-color: #fff;
    text-decoration: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: var(--livematters-blue);
    transition: all 0.2s;
}

.jobContainer:hover {
    background-color: gainsboro;
    border-left: 10px solid var(--livematters-blue);
}

.jobs {
    margin-top: 45px;
        display: flex;
    flex-direction: column;
    gap: 15px;
}