.careers-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Adjust column widths as needed */
    gap: 0;
}

.careers-grid-header {
    font-weight: bold;
    background: #ffffff;
    padding: 8px 12px;
    border-bottom: 2px solid #000000;
}

.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: 100px;
}

    .careers-grid-link > div {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

	.careers-grid-link:hover {
		background: #e1e1e1;
		font-weight: 100;
		color: black;
	}

#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-bottom: 50px !important;
}



@media only screen and (max-width: 700px) {
	
	.careers-grid-link {
		height: 180px;		
	}
	
	.careersIcon_minicard {
		width: 75%;	
		display: grid;
		row-gap: 20px;
		height: 400px;
	}
	
}
@media only screen and (max-width:400px) {
	
.careers-grid-link {
    display: grid;
    grid-template-columns: inherit;
    grid-column: 1 / -1;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    height: 200px;
}
	
	
	
	
}