.job-postings-grid {
  display: grid;
  gap: 24px;
}

.job-postings-grid.columns-1 {
  display: flex;
  width: 100%;
  justify-content: center;
}

.job-postings-grid.columns-2 {
  display: flex;
  width: 100%;
  justify-content: center;
}

.job-postings-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.job-postings-grid.columns-1 .job-card {
  width: 450px;
}

.job-postings-grid.columns-2 .job-card {
  flex: 1;
}

.job-card {
  border-radius: 9px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12) !important;
  padding: 25px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-decoration: none;
  max-width: 450px;
}

.job-card > div {
  display: flex;
  flex-direction: column;
}

.job-date {
  color: #101820;
  font-family: "Poppins", serif;
  font-size: 0.75rem;
  font-weight: 300;
  margin: 0;
}

.job-title {
  color: #101820;
  font-family: "all-round-gothic";
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
}

.job-location {
  color: #101820;
  font-family: "Poppins", serif;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

.job-button {
  border-radius: 42px;
  border: none;
  background: linear-gradient(154deg, #f23d4c 16.07%, #f99f38 83.87%);
  backdrop-filter: blur(2px);
  color: #fff;
  font-family: "Poppins", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.01rem;
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.3s ease;
  margin-top: 20px;
}

.job-button:hover {
  opacity: 0.8;
}

.no-jobs-box {
  border-radius: 40px;
  background: #101820;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
}

.no-jobs-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.no-jobs-subtext {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

@media (max-width: 1024px) {
  .job-postings-grid.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .job-postings-grid.columns-3 {
    grid-template-columns: 1fr;
  }

  .job-postings-grid.columns-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .job-postings-grid.columns-2 .job-card {
    width: 100%;
  }
}
