.careers-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Adjust column widths as needed */
    gap: 0;
}

.careers-grid-header {
    font-weight: bold;
    background: #f5f5f5;
    padding: 8px 12px;
    border-bottom: 1px solid #ccc;
  
}

.careers-grid-row {
    display: contents; /* Allows <a> to span multiple columns */
}

.careers-grid-link {
    display: grid;
    grid-template-columns: inherit;
    grid-column: 1 / -1;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    height: 85px;
}

    .careers-grid-link > div {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

    .careers-grid-link:hover {
        background: #f5f5f5;
    }

#pagination{
    height: 50px;
}

.jobTitle {
    font-family: inherit;
    font-weight: 800;
    line-height: 1.1;
    color: #525052;
}
ol, ul {
    list-style: circle !important;
}

    ul li {
        list-style: circle !important;
    }

.careers-button {
	margin-top: 50px !important;
    margin-bottom: 50px !important;
}
.applyLink {
    margin: 6pt 0in;
    line-height: 115%;
    font-size: 12pt;
    font-family: Arial, sans-serif;
    font-weight: 800;
}