.customer-jobs { border-top: 1px solid var(--line); }
.customer-jobs-heading { align-items: end; gap: 24px; }
.customer-jobs-heading > p {
  max-width: 320px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.customer-jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.customer-job { min-width: 0; border: 1px solid var(--line); }
.customer-job-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: #edf4f4;
  color: #527078;
  font-size: 14px;
}
.customer-job-placeholder svg { color: var(--teal-dark); }
.customer-job-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.customer-job-caption { padding: 20px; }
.customer-job-caption h3 {
  margin: 0 0 7px;
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.customer-job-caption p { margin: 0; color: var(--muted); font-size: 16px; }
@media (min-width: 1101px) {
  .customer-jobs h2 { font-size: 32px; }
}
@media (min-width: 601px) and (max-width: 850px) {
  .customer-jobs-grid { gap: 16px; }
  .customer-job-caption { padding: 16px; }
  .customer-job-caption h3 { font-size: 18px; }
}
@media (max-width: 600px) {
  .customer-jobs-heading > p { margin-top: 14px; }
  .customer-jobs-grid { grid-template-columns: 1fr; gap: 24px; }
  .customer-job-placeholder, .customer-job-photo { aspect-ratio: 16 / 9; }
}
