.job-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.job-card {
  border: 1px solid #000;
  border-radius: 20px;
  max-width: 650px;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.job-card-button-wrap {
  margin-left: auto;
}

.job-card-image {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 12px;
  filter: invert(1);
}

.job-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-card-date {
  font-size: 14px;
  color: #1d2025;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.job-card-button {
  padding: 0.7rem 1.9rem;
  background-color: transparent;
  color: #1d2025;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid black;
}

.job-card-button:hover {
  border-color: #2f2f2f33;
  background-color: #eee;
  color: #1d2025;
}

.job-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}

.job-card-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  color: #1d2025;
  line-height: 1.3;
}

.job-card-subtitle {
  font-size: 16px;
  color: #1d2025;
  margin: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.job-card-text {
  font-size: 16px;
  color: #1d2025;
  font-weight: 300;
  line-height: 1.7;
}

.job-card-text p {
  margin: 0 0 1rem 0;
}

.job-card-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .job-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .job-card {
    padding: 1.25rem;
  }

  .job-card-image {
    height: 48px;
    width: 48px;
  }

  .job-card-title {
    font-size: 20px;
  }

  .job-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (min-width: 2780px){
	.job-card{
		max-width: 100%;
		margin: unset;
	}
}
