.food-jobs-page,
.food-job-view-page {
  width: 100%;
  max-width: 100vw;
  overflow: clip;
  background: var(--paper);
  color: var(--ink);
}

.food-jobs-hero,
.food-job-view-hero {
  position: relative;
  height: var(--food-hero-height);
  min-height: var(--food-hero-height);
  max-height: var(--food-hero-height);
  overflow: hidden;
  color: #fff;
  background:
    var(--food-hero-overlay),
    url("../../img/hero-foodtruck-v2.jpg") center right / cover no-repeat;
}

.food-jobs-hero::after,
.food-job-view-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 42px;
  background: var(--food-hero-bottom-fade);
  pointer-events: none;
}

.food-jobs-hero-inner,
.food-job-view-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 88px;
  padding-bottom: 56px;
}

.food-jobs-hero-copy,
.food-job-view-hero-copy {
  max-width: 610px;
}

.food-jobs-script,
.food-job-view-script {
  margin: 0 0 8px;
  color: var(--olive);
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.food-jobs-page h1,
.food-jobs-page h2,
.food-jobs-page h3,
.food-job-view-page h1,
.food-job-view-page h2,
.food-job-view-page h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: .01em;
  line-height: .98;
  text-transform: uppercase;
}

.food-jobs-hero h1,
.food-job-view-hero h1 {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 5vw, 5rem);
  font-weight: 400;
}

.food-job-view-hero h1 small {
  color: rgba(255, 255, 255, .68);
  font-size: .48em;
}

.food-jobs-hero-copy > p:not(.food-jobs-script),
.food-job-view-hero-copy > p:not(.food-job-view-script) {
  max-width: 580px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
  line-height: 1.6;
}

.food-jobs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.food-jobs-hero-actions .btn {
  display: inline-flex;
  min-width: 190px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.food-jobs-main,
.food-job-view-main {
  padding: 86px 0 100px;
}

.food-jobs-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}

.food-jobs-eyebrow {
  margin: 0 0 7px;
  color: var(--olive-dark);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.food-jobs-heading h2,
.food-jobs-cta h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.food-jobs-heading > p {
  margin: 0;
  color: #5c5954;
  line-height: 1.75;
}

.food-jobs-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 24px;
  border-top: 4px solid var(--olive);
  border-radius: 5px;
  background: #151818;
  box-shadow: 0 22px 55px rgba(17, 19, 20, .13);
}

.food-jobs-filter label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.food-jobs-filter input,
.food-job-application input,
.food-job-application textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid #ded8ce;
  border-radius: 4px;
  background: #fff;
  color: #202020;
  font: inherit;
  outline: none;
}

.food-jobs-filter input:focus,
.food-job-application input:focus,
.food-job-application textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(152, 165, 31, .14);
}

.food-jobs-filter .btn {
  min-height: 50px;
}

.food-jobs-reset {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.food-jobs-result {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 36px 0 20px;
}

.food-jobs-result span {
  color: var(--olive);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.4rem;
}

.food-jobs-result strong {
  color: #45423f;
  font-size: .88rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.food-jobs-grid {
  display: grid;
  gap: 18px;
}

.food-job-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid rgba(17, 19, 20, .09);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 19, 20, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.food-job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(17, 19, 20, .1);
}

.food-job-card-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 1.35rem;
}

.food-job-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.food-job-card h3 a {
  color: #202222;
}

.food-job-card h3 small {
  color: #77736c;
  font-size: .5em;
}

.food-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 12px;
  color: #6b6761;
  font-size: .86rem;
}

.food-job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.food-job-meta i {
  color: var(--olive);
}

.food-job-excerpt {
  max-width: 750px;
  margin: 14px 0 0;
  color: #5e5a55;
  line-height: 1.65;
}

.food-job-link {
  display: inline-flex;
  min-width: 156px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #202222;
  color: #202222;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.food-job-link:hover {
  border-color: var(--olive);
  background: var(--olive);
  color: #fff;
}

.food-jobs-empty {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 25px;
  align-items: center;
  padding: 34px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 19, 20, .07);
}

.food-jobs-empty > i {
  color: var(--olive);
  font-size: 2.8rem;
}

.food-jobs-empty h3 {
  margin: 0 0 8px;
  font-size: 2.4rem;
}

.food-jobs-empty p:not(.food-jobs-eyebrow) {
  margin: 0;
  color: #625f59;
}

.food-jobs-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 62px;
  padding: 42px 44px;
  border-radius: 5px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 14, 14, .98), rgba(12, 14, 14, .72)),
    url("../../img/hero-menu-v2.jpg") center / cover no-repeat;
}

.food-jobs-cta h2 {
  color: #fff;
}

.food-jobs-cta p:not(.food-jobs-eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .78);
}

/* Detailseite */
.food-job-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .78);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.food-job-view-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.food-job-view-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(10, 12, 12, .3);
  color: rgba(255, 255, 255, .9);
  font-size: .86rem;
}

.food-job-view-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: start;
}

.food-job-info-card,
.food-job-application {
  padding: 34px 36px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 19, 20, .07);
}

.food-job-info-card + .food-job-info-card {
  margin-top: 24px;
}

.food-job-info-card h2,
.food-job-application h2 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
}

.food-job-wysiwyg,
.food-job-wysiwyg p,
.food-job-wysiwyg li {
  color: #5f5b55;
  line-height: 1.75;
}

.food-job-wysiwyg h1,
.food-job-wysiwyg h2,
.food-job-wysiwyg h3 {
  color: #242626;
}

.food-job-divider {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid rgba(17, 19, 20, .12);
}

.food-job-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.food-job-detail-grid div {
  padding: 18px;
  border-radius: 4px;
  background: #f3f0ea;
}

.food-job-detail-grid small {
  display: block;
  margin-bottom: 5px;
  color: var(--olive-dark);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.food-job-application {
  position: sticky;
  top: 112px;
  border-top: 4px solid var(--olive);
}

.food-job-application > p {
  color: #66625d;
  line-height: 1.65;
}

.food-job-application form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.food-job-field label {
  display: block;
  margin-bottom: 7px;
  font-size: .82rem;
  font-weight: 800;
}

.food-job-field label small {
  color: #77736c;
  font-size: .78em;
  font-weight: 600;
}

.food-job-application textarea {
  min-height: 120px;
  resize: vertical;
}

.food-job-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #625f59;
  font-size: .86rem;
}

.food-job-check input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
}

.food-job-alert {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 4px;
  line-height: 1.55;
}

.food-job-alert.success { background: #eef5d5; color: #3f4a0e; }
.food-job-alert.error { background: #fee7e3; color: #79261c; }

@media (max-width: 991.98px) {
  .food-jobs-hero-inner,
  .food-job-view-hero-inner { padding-top: 60px; padding-bottom: 50px; }
  .food-jobs-heading { grid-template-columns: 1fr; gap: 20px; }
  .food-jobs-filter { grid-template-columns: minmax(0, 1fr) auto; }
  .food-job-view-layout { grid-template-columns: 1fr; }
  .food-job-application { position: static; }
}

@media (max-width: 767.98px) {
  .food-jobs-hero,
  .food-job-view-hero {
    height: var(--food-hero-height);
    min-height: var(--food-hero-height);
    max-height: var(--food-hero-height);
    background-position: 66% center;
  }
  .food-jobs-hero-inner,
  .food-job-view-hero-inner { padding: 48px 22px 42px; }
  .food-jobs-script,
  .food-job-view-script { font-size: clamp(2rem, 11vw, 2.6rem); }
  .food-jobs-hero h1,
  .food-job-view-hero h1 { font-size: clamp(3.4rem, 14vw, 4.7rem); }
  .food-jobs-hero-copy > p:not(.food-jobs-script) { font-size: 1rem; }
  .food-jobs-hero-actions { display: grid; gap: 12px; }
  .food-jobs-hero-actions .btn { width: calc(100vw - 44px); max-width: 235px; }
  .food-jobs-main,
  .food-job-view-main { padding: 58px 0 72px; }
  .food-jobs-main > .container-xl,
  .food-job-view-main > .container-xl { padding-right: 22px; padding-left: 22px; }
  .food-jobs-filter { grid-template-columns: 1fr; padding: 20px; }
  .food-jobs-filter .btn { grid-column: auto; }
  .food-job-card { grid-template-columns: 52px minmax(0, 1fr); padding: 23px 20px; }
  .food-job-card-icon { width: 50px; height: 50px; }
  .food-job-link { grid-column: 1 / -1; width: 100%; }
  .food-jobs-empty { grid-template-columns: 1fr; padding: 28px 24px; }
  .food-jobs-cta { align-items: flex-start; flex-direction: column; padding: 30px 24px; }
  .food-job-view-meta { gap: 8px; }
  .food-job-view-meta span { width: 100%; }
  .food-job-info-card,
  .food-job-application { padding: 27px 22px; }
  .food-job-detail-grid { grid-template-columns: 1fr; }
}
