/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 20px;
  font-family: 'Poppins', serif;
}

.jobs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f6f6;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 2px 3px 3px 1px #eae7e7;
}

.job-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.job-info p {
  font-size: 16px;
  color: #8b8b8b;
}

.learn-more-btn {
  font-size: 16px;
  width: 200px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  justify-self: end;
  padding: 16px 20px 16px 20px;
  background-color: transparent;
  font-family: 'Poppins', Sans-serif;
  font-weight: 500;
  color: #fff;
  background-image: linear-gradient(180deg, #007bff 0%, #2563eb 100%);
  border-style: none;
  border-radius: 10px;
}

.learn-more-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .learn-more-btn {
    width: 100%;
    justify-self: start;
  }
}
