/* /jobs/ page — job cards built from the client's own check-in records. */
.jobs-intro { max-width: 900px; margin: 0 auto 2rem; text-align: center; }
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
             gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 0 1rem 3rem; }
.job-card { background: #fff; border: 1px solid #e6e6e6; border-radius: 8px;
            overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06);
            display: flex; flex-direction: column; }
.job-card .job-photo { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f2f2f2; }
.job-card .job-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.job-thumbs { display: flex; gap: 4px; padding: 4px; background: #f7f7f7; }
.job-thumbs img { width: 64px; height: 48px; object-fit: cover; border-radius: 3px; display: block; }
.job-body { padding: 1rem 1.25rem 1.5rem; }
.job-body h2 { font-size: 1.25rem; margin: 0 0 .35rem; }
.job-meta { color: #ed8600; font-weight: 600; font-size: .85rem;
            text-transform: uppercase; letter-spacing: .5px; margin-bottom: .6rem; }
.job-body p { margin: 0; font-size: .95rem; line-height: 1.55; }
@media (max-width: 480px) { .jobs-grid { grid-template-columns: 1fr; } }
/* per-page "Most Recent Jobs" strip (replaces the DataPins widget) */
.jobs-strip { max-width: 1200px; margin: 2rem auto 0; }
.jobs-strip h2 { text-align: center; margin-bottom: 1.25rem; }
.jobs-strip .jobs-grid { padding-bottom: 1rem; }
.jobs-more { text-align: center; margin: 0 0 2.5rem; font-weight: 600; }
