.jobs-container {
  display: grid;
  grid-template-columns: 1fr; /* always one column */
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.job-box {
  background-color: #f0f0f0; /* light grey */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.job-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
}

img[src="/images/logo.jpg"] {
  border-radius: 50%;
  object-fit: cover;
  width: 50px;
  height: 50px;
}

