/* Design Tokens */
:root {
  --ja-bg: #ffffff;
  --ja-fg: #0f172a;
  --ja-muted: #475569;
  --ja-muted-foreground: #64748b;
  --ja-border: rgba(15, 23, 42, 0.1);
  --ja-panel: #ffffff;
  --ja-primary: #22c55e;
  --ja-primary-hover: #16a34a;
  --ja-accent: #0ea5e9;
  --ja-success: #16a34a;
  --ja-radius-md: 16px;
  --ja-radius-lg: 16px;
  --ja-hero-height: 420px;
  --ja-hero-content-offset: 108px;
  --ja-sidebar-width: 320px;
  --ja-layout-gap: 1.25rem;
  --ja-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --ja-shadow-hover: 0 18px 44px rgba(15, 23, 42, 0.12);
  --ja-focus: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

/* Search-rekrytering: enforce main -> form stacking on all sub-desktop widths */
@media (max-width: 1280px) {
  .sr-page .sr-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "aside";
    gap: 24px;
  }

  .sr-page .sr-grid > .ja-jobdetail__main {
    grid-area: main;
    display: block;
    order: initial;
  }

  .sr-page .sr-grid > .sr-aside {
    grid-area: aside;
    display: block;
    order: initial;
    position: static;
    top: auto;
    margin-top: 0;
  }
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ja-fg);
  background: var(--ja-bg);
}

footer:not(.site-footer) {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ja-muted);
  padding: 1rem 2rem;
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid var(--ja-border);
}

.ja-nav-wrap {
  position: relative;
  top: auto;
  left: 0;
  right: 0;
  z-index: 50;
  transform: translateY(0);
  transition: transform 0.2s ease;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  border-bottom: 1px solid var(--ja-border);
}

body.nav-floating .ja-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.ja-nav-wrap.js-autohide-nav {
  opacity: 1;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.ja-nav-wrap.js-autohide-nav.is-nav-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.ja-nav-wrap.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.ja-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ja-nav-links-row {
  border-top: 1px solid rgba(26, 80, 44, 0.12);
  background: #5EAF6B1F;
}

.ja-nav-links-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.ja-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ja-nav-links a {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #1D2530;
  text-decoration: none;
}

.ja-nav-links a:hover,
.ja-nav-links a:focus-visible {
  color: #5aa463;
}

.ja-nav-search {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(29, 37, 48, 0.14);
  background: #fff;
}

.ja-nav-search__icon {
  width: 14px;
  height: 14px;
  border: 2px solid #64748b;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}

.ja-nav-search__icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: #64748b;
  border-radius: 2px;
  right: -5px;
  bottom: -2px;
  transform: rotate(40deg);
}

.ja-nav__brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--ja-fg);
  text-decoration: none;
}

.ja-nav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 9999px;
  border: 1px solid #49b170;
  background: #49b170;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.ja-nav__cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(210, 255, 220, 0.72) 0%,
    rgba(188, 245, 201, 0.46) 38%,
    rgba(188, 245, 201, 0.14) 72%,
    rgba(188, 245, 201, 0) 100%
  );
  transform: translateY(-50%);
  filter: blur(0.5px);
  box-shadow:
    0 0 18px rgba(188, 245, 201, 0.34),
    0 0 34px rgba(188, 245, 201, 0.24);
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  animation: ja-nav-cta-streak 6.8s linear infinite;
}

.ja-nav__cta:hover {
  background: #3f9a61;
  border-color: #3f9a61;
}

.ja-nav__cta:focus-visible {
  outline: none;
  box-shadow: var(--ja-focus);
}

@keyframes ja-nav-cta-streak {
  0% {
    left: -18px;
    opacity: 0;
  }
  12% {
    opacity: 0.58;
  }
  82% {
    opacity: 0.56;
  }
  100% {
    left: calc(100% + 18px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ja-nav__cta::before {
    animation: none;
  }
}

.ja-nav__cta,
.ja-nav__cta:hover,
.ja-nav__cta:visited,
.ja-nav__cta:active,
.ja-nav__cta:focus-visible {
  color: #fff !important;
}

/* Hide base_2026 nav/header wrapper on job_annons pages only */
body:has(.ja-nav-wrap) > .page > input.menu-toggle,
body:has(.ja-nav-wrap) > .page > nav.navbar,
body:has(.ja-nav-wrap) > .page > .menu-overlay {
  display: none !important;
}

.layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--ja-sidebar-width) 1fr;
  gap: var(--ja-layout-gap);
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto 2.25rem;
  min-height: calc(100vh - 200px);
}

body:has(.ja-nav-wrap) main.container {
  padding-top: 0;
  margin-top: 0;
}

body.page-home:has(.ja-nav-wrap) {
  padding-top: 0;
  margin-top: 0;
}

body:has(.ja-nav-wrap) .page {
  padding-top: 0;
}

body:has(.ja-nav-wrap) .layout {
  margin-top: 0;
}

body:has(.ja-nav-wrap) .layout > aside {
  margin-top: 0;
}

body:has(.ja-nav-wrap) .layout main {
  padding-top: 0;
}

.layout > aside {
  margin-top: calc(var(--ja-hero-height) + 0.85rem);
  align-self: start;
}

@media (min-width: 1025px) {
  .layout > aside {
    max-height: calc(100vh - 2rem);
    overflow: hidden;
  }

  .layout > aside form {
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    scrollbar-width: none;
  }

  .layout > aside form::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

.layout main {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding-top: calc(var(--ja-hero-height) + 0.5rem);
  padding-right: 56px;
  padding-left: 56px;
  padding-bottom: 0;
  color: var(--ja-fg);
  background: transparent;
}

.layout main > * {
  position: relative;
  z-index: 2;
}


.ja-nav + .ja-hero-wrap {
  margin-top: 0;
}

.ja-hero-wrap {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: none;
  height: 560px;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 32px;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.ja-hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.ja-hero-wrap::after {
  content: none;
}

.ja-hero-wrap .site-breadcrumb {
  margin: 0 auto;
  width: min(1180px, calc(100% - 48px));
  padding: 0 20px;
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: clamp(24px, 4vw, 40px);

}



.ja-hero-wrap .site-breadcrumb__list {
  justify-content: flex-start;
  gap: clamp(6px, 1vw, 18px);
}

.ja-jobdetail > .site-breadcrumb {
  max-width: 1180px;
  margin: clamp(24px, 4vw, 40px) auto 0;
  padding: 0;
  margin-bottom: clamp(12px, 3vw, 24px);
  margin-left: 0;

}

.ja-jobdetail > .site-breadcrumb .site-breadcrumb__list,
.ja-jobdetail > .site-breadcrumb .site-breadcrumb__item a,
.ja-jobdetail > .site-breadcrumb .site-breadcrumb__item--current {
  color: #000;
}

.ja-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}

.ja-hero-media picture,
.ja-hero-media picture img,
.ja-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.ja-hero-media picture {
  height: 100%;
}

.ja-hero-media img {
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center bottom;
}

.ja-hero-media picture img {
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center bottom;
}

@media (min-width: 1500px) and (max-width: 1679px) {
  .ja-hero-wrap {
    height: 590px;
  }

  /* .ja-hero-wrap::before {
    background:
      linear-gradient(
        90deg,
        rgba(248, 250, 247, 0.56) 0%,
        rgba(248, 250, 247, 0.30) 24%,
        rgba(248, 250, 247, 0.10) 48%,
        rgba(248, 250, 247, 0.03) 100%
      ),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
  } */

  .ja-hero-media img,
  .ja-hero-media picture img {
    object-fit: cover;
    object-position: 50% 58%;
  }

  .ja-hero {
    padding-top: 80px;
    padding-bottom: 52px;
  }
}

@media (min-width: 1680px) {
  .ja-hero-wrap {
    height: 620px;
  }

  /* .ja-hero-wrap::before {
    background:
      linear-gradient(
        90deg,
        rgba(248, 250, 247, 0.62) 0%,
        rgba(248, 250, 247, 0.34) 24%,
        rgba(248, 250, 247, 0.12) 48%,
        rgba(248, 250, 247, 0.04) 100%
      ),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
  } */

  .ja-hero-media img,
  .ja-hero-media picture img {
    object-fit: cover;
    object-position: center center;
  }

  .ja-hero {
    padding-top: 88px;
    padding-bottom: 56px;
  }
}

.ja-hero {
  max-width: 1180px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 72px 24px 48px;
  background: transparent;
  text-align: left;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

}

.ja-hero h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  letter-spacing: -0.02em;
  /* color: #111827; */
    color: #e5e5e5 !important;
  font-weight: 800;
  text-wrap: balance;
  overflow-wrap: break-word;
}

body.page-home .ja-hero-wrap .ja-hero h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.ja-hero-wrap .site-breadcrumb__item a {
  color: #e5e5e5 !important;
}

.ja-hero-wrap  .site-breadcrumb__item--current {
  color: #e5e5e5 !important
}
.ja-hero .ja-hero-lead {
  font-size: 1.25rem;
  /* color: rgba(20, 27, 45, 0.84); */
  color: #e5e5e5 !important;
  max-width: 760px;
  line-height: 1.55;
  margin: 0 0 8px;
  overflow-wrap: break-word;
  padding-top: 12px;
  box-sizing: border-box;
}

.ja-hero-partner {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 32px;
  margin-bottom: 0;
  line-height: 1.05;
  flex-wrap: wrap;
}

.ja-hero-partner-label {
  font-size: 13px;
  font-weight: 500;
  /* color: rgba(20, 27, 45, 0.72); */
  color: #e5e5e5 !important;
  white-space: nowrap;
}

.ja-hero-partner-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.ja-hero-partner-logo img {
  display: block;
  height: 16px;
  width: auto;
  max-width: none;
}

.ja-hero .ja-hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 16px;
}

.ja-hero .ja-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  color: rgba(20, 27, 45, 0.88);
}

.ja-hero .ja-hero-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* color: rgba(20, 27, 45, 0.72); */
  color: #e5e5e5 !important;
}

.ja-hero .ja-hero-stat__icon svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  opacity: 0.85;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.ja-hero .ja-hero-stat__text {
  color: rgba(20, 27, 45, 0.9);
  color: #e5e5e5 !important;
}

.ja-hero-promo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.ja-hero-promo-text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  /* color: rgba(20, 27, 45, 0.82); */
  color: #e5e5e5 !important;
  max-width: 720px;
}

.ja-hero-promo .ja-btn--success,
.ja-hero-promo .ja-btn--success:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #49b170;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #49b170;
  vertical-align: middle;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ja-hero-promo .ja-btn--success::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
}

.ja-hero-promo .ja-btn--success:focus-visible {
  background-color: #3f9a61;
  border-color: #3f9a61;
  color: #ffffff !important;
}

@media (hover: hover) and (pointer: fine) {
  .ja-hero-promo .ja-btn--success:hover {
    background-color: #3f9a61;
    border-color: #3f9a61;
    color: #ffffff !important;
  }
}

@media (min-width: 1025px) {
  .ja-hero-promo {
    margin-top: 52px;
    gap: 14px;
  }

  .ja-hero-partner {
    margin-top: 44px;
  }

  .ja-hero .ja-hero-stats {
    margin-top: 24px;
  }
}

/* /ledigajobb/: Rekryteringsguiden-inspired structure */
.ja-jobs-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 2.25rem;
  position: relative;
  z-index: 5;
}

.ja-filter-panel-anchor {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: visible;
  z-index: 30;
}

.ja-jobs-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -14px 0 22px;
  position: relative;
  z-index: 6;
}

.ja-jobs-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  margin: 0;
}

.ja-jobs-search-input {
  position: relative;
  flex: 1 1 auto;
}

.ja-jobs-search-form input[type="text"] {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 44px;
  border: 1px solid var(--ja-border);
  border-radius: 12px;
  font-size: 16px;
  background: #fff;
  color: var(--ja-fg);
  outline: none;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.ja-jobs-search-form input[type="text"]:focus {
  border-color: #cdb27a;
  box-shadow: 0 0 0 3px rgba(225, 182, 88, 0.16);
}

.ja-jobs-search-submit {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='6.5' stroke='%23707D8E' stroke-width='2'/%3E%3Cpath d='M16 16L21 21' stroke='%23707D8E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ja-jobs-search-submit:focus-visible {
  outline: none;
  box-shadow: none;
}

.ja-filter-btn--controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid #c9d1dc;
  background: #f7f8fa;
  color: #18212d;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ja-filter-btn--controls::before {
  content: "";
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 5H21L14 13V19L10 21V13L3 5Z' stroke='%2318212D' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ja-filter-btn--controls:hover {
  background: #1A502C;
  border-color: #1A502C;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(26, 80, 44, 0.22);
}

.ja-filter-btn--controls:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 5H21L14 13V19L10 21V13L3 5Z' stroke='%23FFFFFF' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ja-jobs-shell .layout {
  display: block;
  width: 100%;
  margin: 0;
  min-height: 0;
}

.ja-jobs-shell .layout main.ja-jobs-main {
  padding: 0;
  margin: 0;
  max-width: none;
}

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

.ja-jobs-grid .job-card {
  margin: 0;
  height: 100%;
}

.ja-jobs-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ja-muted);
}

.ja-jobs-shell .pagination {
  margin-top: 24px;
}

.ja-filter-overlay {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  width: 100%;
  z-index: 10050;
  justify-content: flex-end;
  align-items: flex-start;
  pointer-events: auto;
}

.ja-filter-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 160px);
  overflow: visible;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(15, 23, 42, 0.09);
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

.ja-filter-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 34px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

.ja-filter-panel form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
  overflow: hidden;
}

.ja-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 18px 22px 20px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.ja-filter-grid .ja-filter-group,
.ja-filter-grid .ja-filter-section {
  min-width: 0;
}

.ja-filter-grid::-webkit-scrollbar {
  width: 10px;
}

.ja-filter-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.42);
}

.ja-filter-grid::-webkit-scrollbar-track {
  background: transparent;
}

.ja-filter-content input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: auto;
  width: auto;
  height: auto;
  border: initial;
  border-radius: initial;
  background: initial;
  box-shadow: none;
  accent-color: initial;
}

.ja-filter-content input[type="checkbox"]::after {
  content: none;
}

  .ja-filter-panel .ja-filter-drawer-header {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    margin-bottom: 0;
  }

  .ja-filter-panel .ja-filter-drawer-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
  }

  .ja-filter-panel .ja-filter-drawer-close {
    border: 1px solid #dbe3eb;
    background: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  .ja-filter-panel .ja-filter-drawer-close:focus-visible {
    background: #f7f8fa;
    border-color: #c7d2df;
  }

.ja-filter-panel .ja-filter-group,
.ja-filter-panel .ja-filter-section {
  border: 1px solid #ecf1f6;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfcfe;
}

.ja-filter-panel .ja-filter-group-title {
  font-size: 0.95rem;
  margin: 0 0 12px;
  color: #1f2937;
  letter-spacing: 0.01em;
}

.ja-filter-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px 22px;
  border-top: 1px solid #eef2f7;
  background: #fcfdff;
}

.ja-filter-footer-close,
.ja-filter-footer-apply {
  height: 40px;
  border-radius: 10px;
  padding: 0 14px;
  margin: 0;
  border: 1px solid #d7dee8;
  background: #ffffff;
  color: #4b5563;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.ja-filter-footer-apply {
  background: #1a502c;
  color: #ffffff;
  border-color: #1a502c;
  min-width: 136px;
}

.ja-filter-footer-clear {
  height: 40px;
  border-radius: 10px;
  border: 1px solid #efd9d9;
  text-decoration: none;
  padding: 0 14px;
  margin: 0;
  background: #ffffff;
  color: #b42318;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  cursor: pointer;
}

.ja-filter-footer-clear:visited {
  color: #b42318;
}

.ja-filter-footer-close:focus-visible {
  background: #f8fafc;
  border-color: #c6d1df;
}

.ja-filter-footer-apply:focus-visible {
  background: #143f22;
  border-color: #143f22;
}

.ja-filter-footer-clear:focus-visible {
  background: #fff5f5;
  border-color: #e8b4b4;
  color: #b42318;
}

@media (max-width: 600px) {
  .ja-filter-footer-close,
  .ja-filter-footer-apply,
  .ja-filter-footer-clear {
    width: 100%;
  }
}

body.ja-filter-open .ja-filter-panel-anchor {
  z-index: 10050;
}

body.ja-filter-open .ja-filter-panel-anchor .ja-filter-overlay {
  display: flex;
}

@media (max-width: 1024px) {
  .ja-filter-panel-anchor,
  .ja-jobs-shell {
    width: min(980px, calc(100% - 24px));
  }

  .ja-jobs-controls {
    margin: -10px 0 18px;
  }

  .ja-jobs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: stretch;
  }

}

@media (max-width: 850px) {
  body.ja-filter-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .ja-filter-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    top: 0;
    justify-content: center;
    align-items: center;
    padding: 14px;
    pointer-events: auto;
    z-index: 10050;
  }

  .ja-filter-panel {
    width: min(100%, 740px);
    max-height: calc(100dvh - 28px);
    border-radius: 14px;
    transform-origin: center;
    overflow: hidden;
    margin-inline: auto;
    animation: ja-filter-pop 150ms ease-out;
  }

  .ja-filter-panel::before {
    content: none;
  }

  @keyframes ja-filter-pop {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .ja-filter-panel form {
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: inherit;
    overflow: hidden;
  }

  .ja-filter-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .ja-filter-footer {
    flex-wrap: wrap;
    flex: 0 0 auto;
  }

  .ja-filter-footer-close,
  .ja-filter-footer-clear,
  .ja-filter-footer-apply {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ja-filter-panel-anchor,
  .ja-jobs-shell {
    width: calc(100% - 16px);
  }

  .ja-jobs-controls {
    gap: 8px;
    margin: -8px 0 14px;
  }

  .ja-jobs-search-form input[type="text"],
  .ja-filter-btn--controls {
    height: 44px;
  }

}

@media (max-width: 640px) {
  body:has(.ja-nav-wrap) main.container {
    padding-top: 0;
  }

  /* .ja-hero-wrap::before {
    background:
      linear-gradient(
        90deg,
        rgba(248, 250, 247, 0.94) 0%,
        rgba(248, 250, 247, 0.84) 28%,
        rgba(248, 250, 247, 0.50) 50%,
        rgba(248, 250, 247, 0.14) 70%,
        rgba(248, 250, 247, 0.00) 100%
      );
  } */

  .ja-hero-media img,
  .ja-hero-media picture img {
    object-position: 82% center;
  }

  .ja-hero .ja-hero-lead {
    max-width: 28ch;
  }

  .ja-hero-promo-text {
    max-width: 22ch;
    color: rgba(20, 27, 45, 0.94);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68);
  }

  .ja-hero .ja-hero-stats {
    gap: 12px;
  }
}

.filter-group {
  margin: 0;
  padding: 0 0 1rem;
  border: 0;
}

.filter-group + .filter-group {
  padding-top: 1rem;
  border-top: 1px solid var(--ja-border);
}

.filter-group legend {
  font-weight: 600;
  color: var(--ja-fg);
  margin-bottom: 0.65rem;
  padding: 0;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  cursor: pointer;
  color: var(--ja-muted);
}

.filter-group input[type="checkbox"] {
  accent-color: var(--ja-primary);
}

.job-card {
  background: var(--ja-panel);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.job-card:hover {
  border-color: rgba(100, 116, 139, 0.3);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.job-card h3 {
  margin: 0 0 0.55rem;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1f2937;
}

.job-card p {
  margin: 0 0 0.85rem;
  color: #627084;
  line-height: 1.5;
  font-size: 15px;
}

.ja-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--ja-muted-foreground);
  font-size: 14px;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.ja-meta-location,
.ja-meta-published {
  position: relative;
  padding-left: 30px;
  background: transparent;
  border: 0;
  color: #627084;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  margin-right: 0;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
}

.ja-meta-location::before,
.ja-meta-published::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  opacity: 0.92;
}

.ja-meta-location::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.ja-meta-published::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.job-card > p:last-of-type {
  display: inline-block;
  margin: 0;
  padding-right: 0;
  line-height: 1.55;
  font-size: 14px;
  color: #627084;
}

.job-card hr {
  margin: 0.9rem 0 1rem;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.job-meta {
  font-size: 0.85rem;
  color: var(--ja-muted-foreground);
}

.job-card > span {
  padding: 0.26rem 0.68rem;
  background-color: rgba(94, 175, 107, 0.12);
  border: 1px solid rgba(94, 175, 107, 0.35);
  color: #4f9e6f;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.65rem;
  display: inline-block;
}

.ja-job-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #f8fafc;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.9rem;
  margin-bottom: 0.65rem;
}

.pagination {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pagination a,
.pagination .disabled,
.pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--ja-muted);
  font-size: 0.88rem;
}

.pagination a:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--ja-fg);
}

.pagination .current {
  background: rgba(94, 175, 107, 0.12);
  color: #1A502C;
  font-weight: 600;
}

.pagination .disabled {
  opacity: 0.55;
}

@media (max-width: 480px) {
  .pagination {
    gap: 0.3rem;
  }

  .pagination .pagination__first,
  .pagination .pagination__last {
    display: none;
  }

  .pagination a,
  .pagination .disabled,
  .pagination .current {
    padding: 0.32rem 0.52rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
}

.layout main .job-card,
.layout main .pagination,
.layout main .pagination a,
.layout main .pagination .current,
.layout main .pagination .disabled {
  color: var(--ja-fg);
}

.job-card a {
  color: #47b374;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 12px;
  float: right;
  margin: 0 -8px 0 0;
  line-height: 1.2;
}

.job-card a:hover {
  color: #3f9f66;
}

.job-card a::after {
  content: "→";
  font-weight: 600;
}

.job-card::after {
  content: "";
  display: table;
  clear: both;
}

.ja-logo {
  height: 40px;
  vertical-align: middle;
}

.ja-header-link {
  text-decoration: none;
  color: inherit;
}

.ja-detail-layout {
  display: flex;
  gap: 1.25rem;
  width: min(1200px, calc(100% - 3rem));
  margin: 2rem auto 2.25rem;
}

.ja-detail-main {
  flex: 7;
  padding-right: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--ja-border);
  border-radius: var(--ja-radius-lg);
  padding: 1.5rem;
}

.ja-detail-main h1 {
  margin-top: 0.4rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.ja-detail-main p {
  color: var(--ja-muted);
}

.ja-detail-sidebar {
  flex: 3;
  display: grid;
  gap: 0.9rem;
}

.ja-detail-sidebar aside {
  margin: 0;
}

/* FILTER ACCORDION */
.layout > aside form {
  display: grid;
  gap: 0;
}

aside .ja-filter-section {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

aside .ja-filter-section + .ja-filter-section {
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

aside .ja-filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ja-fg);
  cursor: pointer;
  list-style: none;
}

aside .ja-filter-summary::-webkit-details-marker {
  display: none;
}

aside .ja-filter-summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.75px solid var(--ja-muted-foreground);
  border-bottom: 1.75px solid var(--ja-muted-foreground);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

aside .ja-filter-section[open] .ja-filter-summary::after {
  transform: rotate(225deg);
}

aside .ja-filter-content {
  padding: 0.05rem 0.25rem 0.85rem;
  display: grid;
  gap: 0.5rem;
  border-top: 0;
}

aside .ja-filter-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #374151;
  cursor: pointer;
  break-inside: avoid;
}

aside .ja-filter-content label:last-child {
  margin-bottom: 0;
}

.ja-filter-content input[type="checkbox"] {
  accent-color: #1A502C;
}

aside .ja-filter-content p {
  margin: 0;
  color: var(--ja-muted-foreground);
  font-size: 0.9rem;
}

.layout > aside {
  padding: 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.layout > aside > form > button[type="submit"] {
  width: 100%;
  min-height: 42px;
  margin-top: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(94, 175, 107, 0.45);
  background: rgba(94, 175, 107, 0.1);
  color: #1A502C;
  font-weight: 600;
}

.layout > aside > form > button[type="submit"]:hover {
  background: #49b170;
  border-color: #49b170;
  color: #fff;
}

@media (min-width: 1025px) {
  .layout > aside {
    position: sticky;
    top: 16px;
  }
}

@media (max-width: 1024px) {
  .ja-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .ja-nav-links-row {
    display: block;
  }

  .ja-nav-links-inner {
    padding: 10px 12px;
  }

  .ja-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
  }

  .ja-nav-links a {
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 6px;
  }

  .ja-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    border: 1px solid #c9d1dc;
    background: #f7f8fa;
    color: #18212d;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
  }

  .ja-filter-btn::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 5H21L14 13V19L10 21V13L3 5Z' stroke='%2318212D' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
  }

  .layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: min(980px, calc(100% - 2rem));
    margin: 0 auto 1.75rem;
  }

  .layout main {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  .layout main .job-card {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .ja-hero-wrap {
    height: 460px;
  }

  .ja-hero-wrap::before {
    background:
      linear-gradient(
        90deg,
        rgba(248, 250, 247, 0.92) 0%,
        rgba(248, 250, 247, 0.82) 26%,
        rgba(248, 250, 247, 0.48) 52%,
        /* rgba(248, 250, 247, 0.14) 76%,
        rgba(248, 250, 247, 0.00) 100% */
      );
  }

  .ja-hero-media img,
  .ja-hero-media picture img {
    object-position: 84% center;
  }

  .ja-hero {
    padding: 64px 20px 40px;
  }

  .ja-hero h2 {
    font-size: clamp(2rem, 6vw, 2.75rem);
    line-height: 1.12;
  }

  body.page-home .ja-hero-wrap .ja-hero h2 {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }

  .ja-hero .ja-hero-lead {
    font-size: 0.94rem;
    line-height: 1.45;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .ja-hero-partner-logo img {
    height: 15px;
  }

  .job-card > span {
    white-space: normal;
  }

  .ja-filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .ja-nav {
    padding: 10px 14px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .ja-logo {
    height: 32px;
  }

  .ja-nav__cta {
    min-height: 38px;
    padding: 0 0.8rem;
    font-size: 14px;
  }

  .ja-filter-btn {
    min-height: 38px;
    padding: 0 0.85rem;
  }

  .ja-filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
  }

  .ja-filter-drawer-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
  }

  .ja-filter-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #374151;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .layout {
    width: calc(100% - 1rem);
    margin-bottom: 1.25rem;
    z-index: auto;
  }

  .ja-hero-wrap {
    left: auto;
    right: auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    height: 420px;
  }

  /* .ja-hero-wrap is boxed (not full-bleed) at this width, so its own
     100% is already the padded container width -- don't subtract 48px
     again here like the full-bleed desktop/tablet formula does. */
  .ja-hero-wrap .site-breadcrumb {
    width: 100%;
  }

  .ja-hero {
    padding: 52px 16px 30px;
  }

  .ja-hero h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.125rem);
    line-height: 1.15;
  }

  body.page-home .ja-hero-wrap .ja-hero h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.125rem);
  }

  .ja-hero .ja-hero-lead {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .ja-hero-media img,
  .ja-hero-media picture img {
    object-position: right center;
  }

  .ja-hero-partner {
    gap: 8px;
    flex-wrap: wrap;
  }

  .ja-hero-partner-logo img {
    height: 14px;
  }

  .ja-hero .ja-hero-stats {
    gap: 12px;
    justify-content: center;
  }

  .ja-hero-promo {
    gap: 14px;
    align-items: flex-start;
    margin-top: 28px;
  }

  .job-card {
    padding: 16px;
    border-radius: 14px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
  }

  .job-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .job-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .job-card h3 {
    font-size: 17px;
    line-height: 1.35;
  }

  .job-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .job-card > span {
    margin-bottom: 0.45rem;
  }

  .job-card a {
    float: none;
    margin: 0.65rem 0 0 auto;
    padding-right: 0;
  }

}

/* JOB DETAIL: 2026 LAYOUT */
.ja-jobdetail {
  color: #1f2937;
  padding-bottom: 48px;
}

.ja-jobdetail__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #7a8699;
  font-size: 14px;
  margin: 1rem 0 1.5rem;
}

.ja-jobdetail__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.ja-jobdetail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.ja-jobdetail .ja-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #dce2ea;
  background: #f8faf8;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.ja-jobdetail__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111827;
  text-align: left;
}

.sr-hero__title {
  margin-top: clamp(20px, 4vw, 40px);
}

.ja-jobdetail__title.sr-hero__title {
  margin-top: clamp(20px, 4vw, 40px);
}

.ja-jobdetail__meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.ja-jobdetail__metaItem {
  color: #6b7280;
  font-size: 16px;
  position: relative;
  padding-left: 34px;
  display: inline-flex;
  align-items: center;
}

.ja-jobdetail__metaItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  opacity: 0.95;
}

.ja-jobdetail__metaItem:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360708b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='10' height='16' rx='1'/%3E%3Cpath d='M13 8h8v12h-8zM6 8h4M6 12h4M6 16h4M16 12h2M16 16h2'/%3E%3C/svg%3E");
}

.ja-jobdetail__metaItem:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360708b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.ja-jobdetail__metaItem:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360708b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.ja-jobdetail__metaItem + .ja-jobdetail__metaItem::before {
  content: "•";
  margin-right: 12px;
  color: #94a3b8;
}

.ja-jobdetail__intro {
  margin: 1.4rem 0 0;
  color: #374151;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  max-width: 72ch;
}

.ja-jobdetail .ja-divider {
  height: 1px;
  background: #e6e9ee;
  margin: 2rem 0;
}

.ja-jobdetail__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.ja-jobdetail__main {
  min-width: 0;
}

.ja-jobdetail__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 24px;
  margin-top: 0;
  padding-top: 0;
}

.ja-jobdetail__aside .ja-card:first-child {
  margin-top: 0;
}

.ja-jobdetail .ja-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e6e9ee;
}

.ja-jobdetail .ja-section__title {
  margin: 0 0 1rem;
  text-align: left;
  font-size: clamp(28px, 3vw, 40px);
  color: #111827;
}

.ja-jobdetail .ja-section__content {
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}

.ja-jobdetail .ja-richtext {
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}

.ja-jobdetail .ja-richtext p {
  margin: 0 0 1rem;
}

.ja-jobdetail .ja-richtext h2,
.ja-jobdetail .ja-richtext h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
}

.ja-jobdetail .ja-richtext h2 {
  margin-top: 28px;
  margin-bottom: 14px;
}

.ja-jobdetail .ja-richtext h2:first-child {
  margin-top: 0;
}

.ja-jobdetail .ja-richtext h3 {
  margin: 28px 0 14px;
}

.ja-jobdetail .ja-richtext ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}

.ja-jobdetail .ja-richtext li {
  position: relative;
  padding-left: 34px;
}

.ja-jobdetail .ja-richtext li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #22c55e;
}

.ja-jobdetail .ja-richtext li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.55em;
  width: 7px;
  height: 4px;
  border-left: 2px solid #22c55e;
  border-bottom: 2px solid #22c55e;
  transform: rotate(-45deg);
}

.ja-jobdetail .ja-richtext p > strong:only-child {
  display: block;
  margin: 28px 0 14px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  color: #111827;
}

.ja-jobdetail .ja-section__content h2 {
  font-size: 18px;
  line-height: 1.35;
}

.ja-jobdetail .ja-section__content h3 {
  font-size: 16px;
  line-height: 1.4;
}

.ja-jobdetail .ja-section__content h4 {
  font-size: 15px;
  line-height: 1.45;
}

.ja-jobdetail .ja-checklist,
.ja-jobdetail .ja-section__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.ja-jobdetail .ja-checklist__item,
.ja-jobdetail .ja-section__content li {
  position: relative;
  padding-left: 34px;
  color: #374151;
  font-size: 20px;
  line-height: 1.45;
}

.ja-jobdetail .ja-checklist__item::before,
.ja-jobdetail .ja-section__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid #58b37a;
  background: #f2fbf6;
}

.ja-jobdetail .ja-checklist__item::after,
.ja-jobdetail .ja-section__content li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: calc(0.35em + 4px);
  width: 6px;
  height: 10px;
  border: solid #58b37a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ja-jobdetail .ja-orgcard {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ja-jobdetail .ja-orgcard__logo {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid #d7dce4;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ja-jobdetail .ja-orgcard__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ja-jobdetail .ja-orgcard__content {
  flex: 1;
  min-width: 0;
}

.ja-jobdetail .ja-orgcard__text {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.45;
}

.ja-jobdetail .ja-orgcard__meta {
  margin: 0.75rem 0 0;
  color: #6b7280;
  font-size: 16px;
}

.ja-jobdetail .ja-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: none;
  overflow: hidden;
}

.ja-jobdetail__aside .ja-card:first-child {
  border: 1px solid rgba(215, 220, 228, 0.9);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.ja-jobdetail .ja-card__header {
  padding: 18px 20px;
}

.ja-jobdetail .ja-card__title {
  margin: 0;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
}

.ja-jobdetail .ja-card__body {
  padding: 18px;
}

.ja-jobdetail .ja-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 9999px;
  border: 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.ja-jobdetail .ja-btn--primary {
  width: 100%;
  background: #f2a100;
  color: #fff;
}

.ja-jobdetail .ja-btn--primary:hover {
  background: #e59800;
}

.ja-jobdetail .ja-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.ja-jobdetail .ja-kv {
  margin-top: 18px;
}

.ja-jobdetail .ja-kv__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e6e9ee;
}

.ja-jobdetail .ja-kv__row:last-child {
  border-bottom: 0;
}

.ja-jobdetail .ja-kv__key {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
}

.ja-jobdetail .ja-kv__value {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
}

.ja-jobdetail .ja-contact {
  padding: 20px;
}

.ja-jobdetail .ja-contact__name {
  margin: 0.75rem 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.ja-jobdetail .ja-contact__email {
  margin: 0.45rem 0 0;
  color: #58b37a;
  font-size: 16px;
  line-height: 1.4;
}

.ja-jobdetail .ja-contact__phone {
  margin: 0.45rem 0 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.4;
}

.ja-jobdetail .ja-share {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.ja-jobdetail .ja-share-mobile {
  display: none;
}

/* ===================================
   Search Rekrytering Contact Form
   =================================== */
.sr-aside .sr-contact-card {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: 0;
  border: 2px solid rgba(73, 177, 112, 0.5);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(73, 177, 112, 0.16);
  padding: 22px;
}

.sr-grid {
  grid-template-columns: 1fr 550px;
}

@media (min-width: 1281px) {
  .sr-page .sr-aside {
    margin-top: 88px;
    align-items: flex-end;
  }
}

.sr-contact-card .ja-card__title {
  margin-bottom: 10px;
}

.sr-breadcrumb {
  margin: 16px 0 14px;
  color: #627084;
  font-size: 13px;
}

.sr-breadcrumb__link {
  color: inherit;
  text-decoration: none;
}

.sr-breadcrumb__link:hover {
  text-decoration: underline;
}

.sr-breadcrumb__sep {
  margin: 0 6px;
  color: #95a1b3;
}

.sr-breadcrumb__current {
  color: #627084;
}

.sr-hero__title {
  margin: 0;
  font-size: 36px;
}

.sr-hero__titleLine {
  display: block;
  color: inherit;
  font-size: 36px;
}

.sr-hero__titleAccent {
  display: block;
  color: #49b170;
  font: inherit;
  font-size: 36px;
}

@media (max-width: 1280px) {
  .sr-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "aside";
    gap: 24px;
  }

  .sr-page .sr-grid .ja-jobdetail__main {
    grid-area: main;
    order: initial;
    display: block;
  }

  .sr-page .sr-grid .sr-aside {
    grid-area: aside;
    order: initial;
    display: block;
    margin-top: 0;
    position: static;
    align-self: start;
  }

  .sr-page .sr-aside .sr-contact-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .sr-hero__title,
  .sr-hero__titleLine,
  .sr-hero__titleAccent {
    font-size: 30px;
  }
}

.sr-contact-card__lead {
  margin: 0 0 16px;
  color: #627084;
  line-height: 1.5;
  font-size: 15px;
}

.sr-page .sr-contact-card .sr-form {
  --sr-form-space-field: 14px;
  --sr-form-space-label: 6px;
  --sr-form-radius-field: 10px;
  --sr-form-border: rgba(29, 37, 48, 0.2);
  --sr-form-border-hover: rgba(29, 37, 48, 0.32);
  --sr-form-bg-field: #ffffff;
  --sr-form-text-field: #1d2530;
  --sr-form-placeholder: #94a3b8;
  --sr-form-focus-border: #49b170;
  --sr-form-focus-ring: rgba(73, 177, 112, 0.2);
  --sr-form-error: #b42318;
  --sr-form-btn-bg: #49b170;
  --sr-form-btn-bg-hover: #3f9a61;
  --sr-form-btn-border: #49b170;
  --sr-form-btn-border-hover: #3f9a61;
  display: grid;
  gap: var(--sr-form-space-field);
}

.sr-page .sr-contact-card .sr-form__field {
  display: grid;
  gap: var(--sr-form-space-label);
}

.sr-page .sr-contact-card .sr-form__field label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: #1d2530;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.sr-page .sr-contact-card .sr-form__req {
  color: var(--sr-form-error);
  line-height: 1;
}

.sr-page .sr-contact-card .sr-form__field input[type="text"],
.sr-page .sr-contact-card .sr-form__field input[type="email"],
.sr-page .sr-contact-card .sr-form__field input[type="url"],
.sr-page .sr-contact-card .sr-form__field input[type="tel"],
.sr-page .sr-contact-card .sr-form__field textarea {
  width: 100%;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: var(--sr-form-radius-field);
  border: 1px solid var(--sr-form-border);
  background: var(--sr-form-bg-field);
  color: var(--sr-form-text-field);
  font-size: 15px;
  line-height: 1.35;
  outline: none;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.sr-page .sr-contact-card .sr-form__field textarea {
  min-height: 120px;
  resize: vertical;
}

.sr-page .sr-contact-card .sr-form__field input::placeholder,
.sr-page .sr-contact-card .sr-form__field textarea::placeholder {
  color: var(--sr-form-placeholder);
}

.sr-page .sr-contact-card .sr-form__field input:hover,
.sr-page .sr-contact-card .sr-form__field textarea:hover {
  border-color: var(--sr-form-border-hover);
}

.sr-page .sr-contact-card .sr-form__field input:focus,
.sr-page .sr-contact-card .sr-form__field textarea:focus {
  border-color: var(--sr-form-focus-border);
  box-shadow: 0 0 0 3px var(--sr-form-focus-ring);
}

.sr-page .sr-contact-card .sr-form .errorlist {
  margin: 0 0 2px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.4;
  color: var(--sr-form-error);
}

.sr-page .sr-contact-card .sr-form .errorlist + input,
.sr-page .sr-contact-card .sr-form .errorlist + textarea,
.sr-page .sr-contact-card .sr-form__field input[aria-invalid="true"],
.sr-page .sr-contact-card .sr-form__field textarea[aria-invalid="true"] {
  border-color: var(--sr-form-error);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.15);
}

.sr-page .sr-contact-card .sr-form__submit {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
  border-radius: 9999px;
  background-color: #49b170;
  border: 1px solid #49b170;
  color: #fff;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sr-page .sr-contact-card .sr-form__submit:hover {
  background-color: var(--sr-form-btn-bg-hover);
  border-color: var(--sr-form-btn-border-hover);
}

.sr-page .sr-contact-card .sr-form__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 177, 112, 0.22);
}

.sr-lead--note {
  margin-top: 24px;
  color: #627084;
  font-style: italic;
}

.sr-list {
  margin: clamp(16px, 3vw, 28px) 0;
  padding-left: 1.35rem;
  line-height: 1.6;
}

.sr-list li {
  margin-bottom: clamp(8px, 1.5vw, 14px);
}

.ja-jobdetail .ja-section--share .ja-section__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.ja-jobdetail .ja-section--share .ja-section__title::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: no-repeat center / 20px 20px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cpath d='M8.6 13.5 15.4 17.5M15.4 6.5 8.6 10.5'/%3E%3C/svg%3E");
}

.ja-jobdetail .ja-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #d7dce4;
  color: #1f2937;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
}

.ja-jobdetail .ja-share__btn::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.ja-jobdetail .ja-share__btn:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M8 11v5M8 8v.01M12 16v-5M12 13a2 2 0 1 1 4 0v3'/%3E%3C/svg%3E");
}

.ja-jobdetail .ja-share__btn:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 5.9c-.7.3-1.5.5-2.3.6a4 4 0 0 0 1.8-2.2 8.1 8.1 0 0 1-2.6 1A4 4 0 0 0 12 8v.9A11.4 11.4 0 0 1 3 4.9a4 4 0 0 0 1.2 5.3 4 4 0 0 1-1.8-.5v.1a4 4 0 0 0 3.2 3.9 4 4 0 0 1-1.8.1 4 4 0 0 0 3.7 2.8A8.1 8.1 0 0 1 2 18.5 11.5 11.5 0 0 0 8.3 20c7.6 0 11.8-6.3 11.8-11.8v-.5A8.3 8.3 0 0 0 22 5.9Z'/%3E%3C/svg%3E");
}

.ja-jobdetail .ja-share__btn:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.ja-jobdetail .ja-backlink-wrap {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.ja-jobdetail .ja-backlink {
  color: #6b7280;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.ja-jobdetail .ja-backlink::before {
  content: "←";
  font-size: 18px;
  line-height: 1;
}

.ja-jobdetail .ja-backlink {
  font-size: 18px;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .ja-jobdetail__layout {
    grid-template-columns: 1fr;
  }

  .ja-jobdetail__aside {
    position: static;
  }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) and (max-width: 1366px) {
  .ja-jobdetail__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    grid-template-areas:
      "header"
      "apply"
      "body"
      "contact"
      "share"
      "back";
  }

  .ja-jobdetail__main {
    display: contents;
  }

  .ja-jobdetail__header {
    grid-area: header;
  }

  .ja-jobdetail__intro {
    margin: 1rem 0 0;
  }

  .ja-jobdetail .ja-divider {
    margin: 12px 0 20px;
  }

  .ja-jobdetail__aside {
    display: contents;
    position: static;
    top: auto;
  }

  .ja-jobdetail__body {
    grid-area: body;
  }

  .ja-jobdetail__aside .ja-card:first-child {
    grid-area: apply;
    margin-top: 25px;
  }

  .ja-jobdetail__aside .ja-card:first-child .ja-card__body {
    padding: 22px 18px 20px;
  }

  .ja-jobdetail__aside .ja-contact {
    grid-area: contact;
    margin-bottom: 8px;
  }

  .ja-jobdetail__aside .ja-share-mobile {
    display: block;
    grid-area: share;
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid #e6e9ee;
  }

  .ja-jobdetail .ja-share-desktop {
    display: none;
  }

  .ja-jobdetail__aside .ja-backlink-wrap {
    grid-area: back;
  }

.ja-jobdetail__aside .ja-card:first-child .ja-btn--primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
