/*
Theme Name: Recruitment UI Prototype
Description: Throwaway recruitment-site layout comparison for local development.
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 8.2
*/

:root {
  --ink: #18201d;
  --muted: #66716d;
  --line: #dfe7e2;
  --paper: #ffffff;
  --mint: #c9f5dd;
  --mint-strong: #72dda6;
  --lime: #dff56a;
  --night: #17211f;
  --sand: #f4efe5;
  --orange: #ff785a;
  --purple: #6658d9;
  --shadow: 0 18px 55px rgba(24, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.prototype-controls-visible {
  padding-bottom: 86px;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.prototype-shell {
  min-height: 100vh;
}

.prototype-wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.prototype-eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.prototype-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.prototype-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.prototype-switcher {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 18px;
  display: grid;
  grid-template-columns: 44px minmax(145px, auto) 44px;
  align-items: center;
  width: max-content;
  max-width: calc(100vw - 24px);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 24, 22, 0.96);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.3);
  color: #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.prototype-switcher button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  cursor: pointer;
}

.prototype-switcher button:hover,
.prototype-switcher button:focus-visible {
  background: var(--mint-strong);
  color: var(--ink);
  outline: none;
}

.prototype-switcher__label {
  padding: 0 12px;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Variant A: editorial recruitment landing. */
.variant-a {
  background: #f8fbf9;
}

.a-header {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid #edf1ee;
}

.a-header__utility {
  padding: 7px 0;
  border-bottom: 1px solid #edf1ee;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.a-header__main {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.a-mark {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 850;
  text-decoration: none;
}

.a-mark::before {
  width: 30px;
  height: 30px;
  border-radius: 9px 16px 9px 16px;
  background: linear-gradient(135deg, var(--mint-strong), var(--purple));
  content: "";
  transform: rotate(-7deg);
}

.a-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 700;
}

.a-nav a {
  text-decoration: none;
}

.a-nav__dropdown {
  position: relative;
}

.a-nav__toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.a-nav__chevron {
  display: block;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: translateY(-2px) rotate(45deg);
  transform-origin: 50% 50%;
}

.a-nav__toggle[aria-expanded="true"] .a-nav__chevron {
  transform: translateY(2px) rotate(225deg);
}

.a-nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.a-nav__menu[hidden] {
  display: none;
}

.a-nav__menu a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 9px;
}

.a-nav__menu a:hover,
.a-nav__menu a:focus-visible {
  background: var(--mint);
  outline: none;
}

.a-nav__menu a span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.a-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.a-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: opacity 150ms ease, transform 150ms ease;
}

.a-menu[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.a-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.a-menu[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.a-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--mint);
}

.a-hero::after {
  position: absolute;
  z-index: -1;
  top: -140px;
  right: -90px;
  width: 520px;
  height: 520px;
  border: 72px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.a-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 70px;
  align-items: center;
  min-height: 540px;
  padding-block: 72px;
}

.a-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.a-hero__lead {
  max-width: 610px;
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.a-search {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: 8px;
  max-width: 760px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.a-search label {
  display: grid;
  gap: 2px;
  padding: 4px 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.a-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-weight: 650;
}

.a-search button {
  min-width: 120px;
  border: 0;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.a-hero__art {
  position: relative;
  min-height: 360px;
}

.a-hero__art span {
  position: absolute;
  display: block;
}

.a-art__portrait {
  right: 10%;
  bottom: 0;
  width: 68%;
  height: 85%;
  border: 12px solid rgba(255, 255, 255, 0.85);
  border-radius: 48% 48% 18px 18px;
  background: linear-gradient(155deg, #fff 0 27%, #6658d9 28% 64%, #18201d 65%);
  box-shadow: var(--shadow);
}

.a-art__dot {
  top: 7%;
  left: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--lime);
}

.a-art__tag {
  top: 20%;
  right: 0;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 800;
  transform: rotate(4deg);
}

.a-content {
  padding-block: 68px 90px;
}

.a-content__heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.a-content h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.a-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.a-filter {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.a-filter:first-child {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.a-jobs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.a-job {
  display: flex;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(24, 32, 29, 0.05);
  flex-direction: column;
}

.a-job__meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.a-job h3 {
  margin: 24px 0 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.a-job p {
  margin: 0 0 22px;
  color: var(--muted);
}

.a-job a {
  margin-top: auto;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.a-directory {
  padding-block: 68px 90px;
}

.a-directory__heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.a-directory__heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.a-directory__heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.a-directory__layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.a-directory__filters {
  padding: 24px;
  border-radius: 18px;
  background: #eef1ef;
}

.a-directory__filters h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.a-directory__filters details {
  border-top: 1px solid #cdd4d0;
}

.a-directory__filters details:last-of-type {
  border-bottom: 1px solid #cdd4d0;
}

.a-directory__filters summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.a-directory__filters summary::-webkit-details-marker {
  display: none;
}

.a-directory__filters summary span {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d9dfdb;
  color: #4c5753;
  font-size: 0.72rem;
  place-items: center;
}

.a-directory__filters label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 11px;
  color: #52605b;
  font-size: 0.83rem;
}

.a-directory__search {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.a-open-application {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #cdd4d0;
}

.a-open-application p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.a-open-application a {
  font-size: 0.82rem;
  font-weight: 800;
}

.a-directory__count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.a-directory__count strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.a-directory .a-jobs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.a-directory .a-job {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f7f8f7;
}

.a-job__visual {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #6859dd, #b8aef7);
}

.a-job__visual::before,
.a-job__visual::after {
  position: absolute;
  z-index: -1;
  border-radius: 48% 52% 43% 57%;
  content: "";
}

.a-job__visual::before {
  top: -18%;
  left: -8%;
  width: 65%;
  height: 120%;
  background: var(--orange);
  transform: rotate(18deg);
}

.a-job__visual::after {
  right: -12%;
  bottom: -30%;
  width: 70%;
  height: 100%;
  background: var(--lime);
}

.a-job__visual--2 {
  background: linear-gradient(145deg, #153f36, #71dba5);
}

.a-job__visual--3 {
  background: linear-gradient(145deg, #f5c45d, #ff765b);
}

.a-job__visual--4 {
  background: linear-gradient(145deg, #cbc4ff, #6252d8);
}

.a-job__visual span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--mint);
  font-size: 0.75rem;
  font-weight: 850;
}

.a-job__body {
  padding: 20px;
}

.a-job__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.a-job__chips span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 750;
}

.a-directory .a-job h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.a-directory .a-job p {
  margin: 0 0 18px;
  font-size: 0.9rem;
}

/* Variant B: search-first application shell, deliberately no hero or cards. */
.variant-b {
  min-height: 100vh;
  background: #edf0ed;
}

.b-topbar {
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 68px;
  padding: 0 28px;
  background: var(--night);
  color: #fff;
}

.b-topbar__mark {
  font-weight: 850;
  letter-spacing: -0.02em;
}

.b-topbar__search {
  display: flex;
  flex: 1;
  gap: 8px;
  max-width: 720px;
  margin-inline: auto;
}

.b-topbar__search input {
  min-width: 0;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #44504c;
  border-radius: 8px;
  background: #28322f;
  color: #fff;
  outline: 0;
}

.b-topbar__search button {
  padding-inline: 18px;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 850;
}

.b-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: calc(100vh - 68px);
}

.b-filters {
  padding: 30px 26px;
  border-right: 1px solid #cfd6d2;
  background: #f8faf8;
}

.b-filters h2 {
  margin: 0 0 26px;
  font-size: 1rem;
}

.b-filter-group {
  margin-bottom: 30px;
}

.b-filter-group strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.b-filter-group label {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 10px 0;
  color: #4f5a56;
  font-size: 0.88rem;
}

.b-results {
  padding: 34px clamp(20px, 5vw, 68px) 100px;
}

.b-results__header {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.b-results h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.b-results ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.b-result {
  display: grid;
  grid-template-columns: minmax(180px, 1.25fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) auto;
  gap: 24px;
  align-items: center;
  padding: 25px 4px;
  border-bottom: 1px solid #c7d0cb;
}

.b-result h2 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.b-result p,
.b-result span {
  margin: 0;
  color: #5d6864;
  font-size: 0.86rem;
}

.b-result a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
}

/* Variant C: story-led, asymmetric and without a sidebar or classic grid. */
.variant-c {
  background: var(--sand);
}

.c-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  border-bottom: 1px solid rgba(24, 32, 29, 0.22);
}

.c-header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.c-header a {
  font-weight: 800;
  text-decoration: none;
}

.c-opening {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  place-items: center;
  text-align: center;
}

.c-opening::before,
.c-opening::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
}

.c-opening::before {
  top: 12%;
  left: -9%;
  width: 340px;
  height: 340px;
  background: var(--orange);
}

.c-opening::after {
  right: -7%;
  bottom: 6%;
  width: 290px;
  height: 290px;
  background: var(--purple);
}

.c-opening__inner {
  max-width: 900px;
  padding: 80px 20px;
}

.c-opening h1 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 10vw, 8.5rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.c-opening p {
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
}

.c-ribbon {
  overflow: hidden;
  padding: 14px 0;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.c-story {
  padding-block: 130px;
}

.c-chapter {
  display: grid;
  grid-template-columns: 140px minmax(0, 720px);
  gap: clamp(28px, 8vw, 110px);
  margin: 0 auto 120px;
  justify-content: center;
}

.c-chapter__number {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.8;
}

.c-chapter h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.c-chapter p {
  max-width: 620px;
  color: #4e514c;
  font-size: 1.08rem;
}

.c-opportunities {
  border-top: 1px solid var(--ink);
}

.c-opportunity {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  border-bottom: 1px solid rgba(24, 32, 29, 0.35);
  text-decoration: none;
}

.c-opportunity strong {
  font-size: clamp(1.15rem, 3vw, 1.8rem);
}

.c-opportunity span {
  color: #5b605c;
  font-size: 0.88rem;
}

.c-ending {
  padding: 90px 20px;
  background: var(--purple);
  color: #fff;
  text-align: center;
}

.c-ending h2 {
  max-width: 900px;
  margin: 0 auto 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.92;
}

@media (max-width: 880px) {
  .a-nav {
    display: none;
  }

  .a-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .a-hero__art {
    min-height: 280px;
  }

  .a-jobs {
    grid-template-columns: 1fr;
  }

  .b-layout {
    grid-template-columns: 1fr;
  }

  .b-filters {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid #cfd6d2;
  }

  .b-filters h2 {
    min-width: max-content;
  }

  .b-filter-group {
    min-width: 170px;
    margin: 0;
  }

  .b-result {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .b-result > :nth-child(2),
  .b-result > :nth-child(3) {
    display: none;
  }
}

@media (max-width: 620px) {
  .prototype-wrap {
    width: min(100% - 28px, 1180px);
  }

  .a-header__utility {
    display: none;
  }

  .a-header__main {
    min-height: 64px;
  }

  .a-hero__grid {
    min-height: auto;
    padding-block: 48px;
  }

  .a-search {
    grid-template-columns: 1fr;
  }

  .a-search button {
    min-height: 48px;
  }

  .a-content__heading,
  .b-topbar,
  .b-results__header {
    align-items: stretch;
    flex-direction: column;
  }

  .b-topbar {
    padding: 14px;
  }

  .b-topbar__search {
    width: 100%;
  }

  .b-results {
    padding-inline: 16px;
  }

  .c-opening {
    min-height: 570px;
  }

  .c-opening::before {
    width: 190px;
    height: 190px;
  }

  .c-opening::after {
    width: 160px;
    height: 160px;
  }

  .c-story {
    padding-block: 80px;
  }

  .c-chapter {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 78px;
  }

  .c-chapter__number {
    font-size: 3rem;
  }

  .c-opportunity {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 880px) {
  .a-menu {
    display: flex;
  }

  .a-nav[data-open="true"] {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    gap: 0;
    align-items: stretch;
    padding: 16px 20px 22px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 40px rgba(24, 32, 29, 0.16);
    flex-direction: column;
  }

  .a-nav > a,
  .a-nav__toggle {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .a-nav .prototype-button {
    width: max-content;
    margin-top: 14px;
    padding-inline: 22px;
    border-bottom: 0;
    text-align: center;
  }

  .a-nav__menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 5px 0 10px;
    border-radius: 10px;
    background: #f3f6f4;
    box-shadow: none;
  }
}

@media (max-width: 620px) {
  .a-directory {
    padding-block: 50px 78px;
  }

  .a-directory__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .a-directory__layout {
    grid-template-columns: 1fr;
  }

  .a-directory__filters {
    padding: 20px;
  }

  .a-directory__count {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 16px;
  }

  .a-directory .a-jobs {
    grid-template-columns: 1fr;
  }
}
