.find-a-job-section {
  padding: 3rem 2rem 4rem;
  text-align: center;
}

.find-a-job-title {

  font-weight: 700;
  margin-bottom: 3.5rem;
text-transform:uppercase;
 background-image: linear-gradient(
    90deg,
    #00addc 0%,
    #692c8b 50%,
    #F36d24 100%
  );
	width:fit-content;
	margin-left:auto;
	margin-right:auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.job-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

.job-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
	  position: relative;
  z-index: 1;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card-logo img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.job-card-title {
  font-size: 1.7rem;
  font-weight: 700;
	text-transform:uppercase;
	font-family:'proxima-nova', sans-serif;
  margin: 0;
		 color: white !important;
	 position: relative;
  z-index: 10 !important;
}
.job-card::after,
.job-card::before {
  display: none !important;
}
a.job-card {
	-webkit-text-fill-color:white !important;
	color:white !important;
}
/* Responsive tweak */
@media (max-width: 768px) {
	.find-a-job-section {
		padding: 2rem 2rem 4rem;}
  .job-card {
    padding: 1.5rem;
  }
}
