/* SAB Jobs Plugin – frontend layout
   Fixed to parent/Elementor container. No 100vw, no container queries, no global Elementor width overrides. */

.sab-jobs,
.sab-jobs *,
.sab-jobs *::before,
.sab-jobs *::after {
  box-sizing: border-box;
}

.sab-jobs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  clear: both;
}

.sab-jobs--empty {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.sab-jobs-empty-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 42px 48px;
  color: #1d2a30;
  background: #fff;
  border: 1px solid rgba(29, 42, 48, 0.14);
  border-radius: 18px;
  overflow: hidden;
}

.sab-jobs-empty-card h3 {
  max-width: 100%;
  margin: 0 0 12px;
  color: #1d2a30;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  font-weight: 500;
}

.sab-jobs-empty-card p {
  max-width: 760px;
  margin: 0;
  color: #4f5d64;
  font-size: 17px;
  line-height: 1.65;
}

.sab-job-card {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(29, 42, 48, 0.14);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.sab-job-card:hover {
  border-color: rgba(29, 42, 48, 0.30);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.sab-job-details {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.sab-job-summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 12px 18px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 22px;
  cursor: pointer;
  list-style: none;
  overflow: hidden;
}

.sab-job-summary::-webkit-details-marker {
  display: none;
}

.sab-job-company-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  max-width: 100%;
  min-width: 0;
  min-height: 30px;
  padding: 8px 12px;
  border: 1px solid rgba(29, 42, 48, 0.16);
  border-radius: 999px;
  color: #536069;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  grid-column: 1 / -1;
}

.sab-job-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
}

.sab-job-title {
  display: block;
  max-width: 100%;
  color: #1d2a30;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.16;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.sab-job-meta {
  max-width: 100%;
  color: #69757b;
  font-size: 15px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

 .sab-job-toggle {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid rgba(29, 42, 48, 0.18);
  border-radius: 50%;
  transition: background .27s ease-out, border-color .27s ease-out, transform .27s ease-out;
}

.sab-job-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #1d2a30;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.8' height='7.8' viewBox='0 0 7.8 7.8'%3E%3Cg fill='none' stroke='black'%3E%3Cpath d='m.4 7.4 7-7'/%3E%3Cpath d='M.4.5h6.9'/%3E%3Cpath d='M7.3 7.4V.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.8' height='7.8' viewBox='0 0 7.8 7.8'%3E%3Cg fill='none' stroke='black'%3E%3Cpath d='m.4 7.4 7-7'/%3E%3Cpath d='M.4.5h6.9'/%3E%3Cpath d='M7.3 7.4V.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  transform: translate(-50%, -50%);
  transition: transform .32s ease-out, background .27s ease-out;
}

.sab-job-summary:hover .sab-job-toggle::before,
.sab-job-summary:focus-visible .sab-job-toggle::before {
  transform: translate(calc(-50% + 2px), calc(-50% - 2px));
}

.sab-job-details[open] .sab-job-toggle {
  background: #1d2a30;
  border-color: #1d2a30;
}

.sab-job-details[open] .sab-job-toggle::before {
  background: #fff;
  transform: translate(-50%, -50%) rotate(180deg);
}

.sab-job-details[open] .sab-job-summary:hover .sab-job-toggle::before,
.sab-job-details[open] .sab-job-summary:focus-visible .sab-job-toggle::before {
  transform: translate(calc(-50% - 2px), calc(-50% + 2px)) rotate(180deg);
}

.sab-job-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 22px 24px;
  color: #4f5d64;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.sab-job-content::before {
  content: '';
  display: block;
  height: 1px;
  margin-bottom: 26px;
  background: rgba(29, 42, 48, 0.10);
}

.sab-job-intro,
.sab-job-richtext p {
  max-width: 100%;
  margin: 0 0 18px;
  color: #4f5d64;
  font-size: 16px;
  line-height: 1.65;
}

.sab-job-intro > :last-child,
.sab-job-richtext > :last-child {
  margin-bottom: 0;
}

.sab-job-sections {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  align-items: start;
  overflow: hidden;
}

.sab-job-section,
.sab-job-application-box {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
}

.sab-job-section h4,
.sab-job-application-box h4 {
  margin: 0 0 12px;
  color: #1d2a30;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.sab-job-richtext,
.sab-job-richtext * {
  max-width: 100%;
}

.sab-job-richtext ul,
.sab-job-richtext ol {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sab-job-counter;
}

.sab-job-richtext ul > li,
.sab-job-richtext ol > li {
  position: relative;
  min-width: 0;
  padding-left: 23px;
  color: #4f5d64;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.sab-job-richtext ul > li::before,
.sab-job-richtext ol > li::before {
  content: '';
  position: absolute;
  top: .45em;
  left: 0;
  width: 7.8px;
  height: 7.8px;
  background: currentColor;
  color: #1d2a30;
  opacity: .75;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.8' height='7.8' viewBox='0 0 7.8 7.8'%3E%3Cg fill='none' stroke='black'%3E%3Cpath d='m.4 7.4 7-7'/%3E%3Cpath d='M.4.5h6.9'/%3E%3Cpath d='M7.3 7.4V.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.8' height='7.8' viewBox='0 0 7.8 7.8'%3E%3Cg fill='none' stroke='black'%3E%3Cpath d='m.4 7.4 7-7'/%3E%3Cpath d='M.4.5h6.9'/%3E%3Cpath d='M7.3 7.4V.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  transform: translate(0, 0);
  transition: transform .27s ease-out, opacity .27s ease-out;
}

.sab-job-card:hover .sab-job-richtext ul > li::before,
.sab-job-card:hover .sab-job-richtext ol > li::before,
.sab-job-details[open] .sab-job-richtext ul > li::before,
.sab-job-details[open] .sab-job-richtext ol > li::before {
  transform: translate(2px, -2px);
  opacity: 1;
}

.sab-job-application-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(29, 42, 48, 0.12);
  border-radius: 12px;
  background: rgba(29, 42, 48, 0.035);
  overflow: hidden;
}

.sab-job-application-image,
.sab-job-application-text {
  min-width: 0;
  max-width: 100%;
}

.sab-job-application-image img {
  display: block;
  width: 120px;
  height: 180px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.sab-job-contact-person {
  margin: 0 0 8px;
  color: #1d2a30;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.sab-job-contact-address {
  color: #4f5d64;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.sab-job-actions {
  width: 100%;
  max-width: 100%;
  margin-top: 28px;
}

.sab-job-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  max-width: 100%;
  padding: 12px 22px;
  border: 1px solid #1d2a30;
  border-radius: 999px;
  color: #1d2a30;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.sab-job-button::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.8' height='7.8' viewBox='0 0 7.8 7.8'%3E%3Cg fill='none' stroke='black'%3E%3Cpath d='m.4 7.4 7-7'/%3E%3Cpath d='M.4.5h6.9'/%3E%3Cpath d='M7.3 7.4V.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.8' height='7.8' viewBox='0 0 7.8 7.8'%3E%3Cg fill='none' stroke='black'%3E%3Cpath d='m.4 7.4 7-7'/%3E%3Cpath d='M.4.5h6.9'/%3E%3Cpath d='M7.3 7.4V.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  transform: translate(0, 0);
  transition: transform .27s ease-out;
}

.sab-job-button:hover::before,
.sab-job-button:focus::before {
  transform: translate(2px, -2px);
}

.sab-job-button:hover,
.sab-job-button:focus {
  background: #1d2a30;
  color: #fff;
  border-color: #1d2a30;
}

/* Leroux raster: 1440/1366/1024/768/680/480. No spaces before px. */
@media (min-width: 1025px) {
  .sab-job-summary {
    grid-template-columns: minmax(140px, 190px) minmax(0, 1fr) 34px;
    gap: 20px;
    padding: 26px 30px;
  }

  .sab-job-company-label {
    grid-column: auto;
  }

  .sab-job-content {
    padding: 0 30px 30px;
  }

  .sab-job-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 46px;
  }
}

@media (max-width: 1366px) {
  .sab-jobs {
    gap: 24px;
  }

  .sab-job-sections {
    gap: 30px 38px;
  }
}

@media (max-width: 1024px) {
  .sab-jobs-empty-card {
    padding: 34px 36px;
    border-radius: 16px;
  }

  .sab-jobs-empty-card p {
    font-size: 16px;
  }

  .sab-job-sections {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .sab-job-summary {
    padding: 22px;
  }

  .sab-job-content {
    padding: 0 22px 24px;
  }
}

@media (max-width: 680px) {
  .sab-jobs-empty-card {
    padding: 28px 24px;
    border-radius: 14px;
  }

  .sab-jobs-empty-card p {
    font-size: 15px;
  }

  .sab-jobs {
    gap: 20px;
  }

  .sab-job-title {
    font-size: 24px;
  }

  .sab-job-summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 12px 16px;
  }

  .sab-job-company-label {
    grid-column: 1 / -1;
  }

  .sab-job-application-box {
    grid-template-columns: minmax(0, 1fr);
  }

  .sab-job-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sab-jobs-empty-card,
  .sab-job-summary {
    padding-inline: 18px;
  }

  .sab-job-content {
    padding-inline: 18px;
  }

  .sab-job-application-box {
    padding: 20px;
  }

  .sab-job-application-image img {
    width: 110px;
    height: 165px;
  }
}


/* v1.1.6 – Qode button order and clipped arrow animation */
.sab-jobs .sab-job-toggle::before,
.sab-jobs .sab-job-button::before {
  content: none !important;
  display: none !important;
}

.sab-jobs .sab-job-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  align-self: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  color: #1d2a30;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible;
  --qode-hover-move-x: 110%;
  --qode-hover-move-y: 100%;
}

.sab-jobs .sab-job-toggle svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.1;
  overflow: visible;
  transition: transform .38s cubic-bezier(.37,.08,.02,.93), color .27s ease-out;
}

.sab-jobs .sab-job-toggle svg g,
.sab-jobs .sab-job-button.qodef-button.qodef-html--link svg g {
  transition: transform .38s cubic-bezier(.37,.08,.02,.93), opacity .18s ease-out;
}

.sab-jobs .sab-job-toggle svg g:nth-of-type(1),
.sab-jobs .sab-job-button.qodef-button.qodef-html--link svg g:nth-of-type(1) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: .15s, .15s;
}

.sab-jobs .sab-job-toggle svg g:nth-of-type(2),
.sab-jobs .sab-job-button.qodef-button.qodef-html--link svg g:nth-of-type(2) {
  transform: translateX(calc(-1 * var(--qode-hover-move-x))) translateY(var(--qode-hover-move-y));
  opacity: .5;
  transition-delay: 0s, 0s;
}

.sab-jobs .sab-job-summary:hover .sab-job-toggle svg g:nth-of-type(1),
.sab-jobs .sab-job-summary:focus-visible .sab-job-toggle svg g:nth-of-type(1),
.sab-jobs .sab-job-details[open] .sab-job-toggle svg g:nth-of-type(1) {
  transform: translateX(var(--qode-hover-move-x)) translateY(calc(-1 * var(--qode-hover-move-y)));
  opacity: 0;
  transition-delay: 0s, 0s;
}

.sab-jobs .sab-job-summary:hover .sab-job-toggle svg g:nth-of-type(2),
.sab-jobs .sab-job-summary:focus-visible .sab-job-toggle svg g:nth-of-type(2),
.sab-jobs .sab-job-details[open] .sab-job-toggle svg g:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: .15s, .15s;
}

.sab-jobs .sab-job-details[open] .sab-job-toggle svg {
  transform: rotate(180deg);
}

.sab-jobs .sab-job-summary {
  align-items: center;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  width: auto;
  min-height: 0;
  max-width: 100%;
  margin: 0;
  padding: 10px 45px 11px;
  gap: 0;
  color: var(--qode-main-color, #20282D);
  background-color: transparent;
  border: 1px solid var(--qode-main-color, #20282D);
  border-radius: 25px;
  font-family: "Dm Sans", sans-serif;
  font-size: 15px;
  line-height: 2em;
  font-weight: 500;
  text-decoration: none;
  outline: 0;
  white-space: normal;
  --qode-hover-move-x: 110%;
  --qode-hover-move-y: 100%;
  transition: color .27s ease-out, background-color .27s ease-out, border-color .27s ease-out;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link .qodef-m-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 0 !important;
  margin-right: 7px !important;
  color: currentColor;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link .qodef-m-arrow svg {
  display: block;
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.1;
  overflow: visible;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link .qodef-m-text {
  display: block;
  line-height: inherit;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link:hover,
.sab-jobs .sab-job-button.qodef-button.qodef-html--link:focus {
  color: #fff;
  background-color: var(--qode-main-color, #20282D);
  border-color: var(--qode-main-color, #20282D);
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link:hover svg g:nth-of-type(1),
.sab-jobs .sab-job-button.qodef-button.qodef-html--link:focus svg g:nth-of-type(1) {
  transform: translateX(var(--qode-hover-move-x)) translateY(calc(-1 * var(--qode-hover-move-y)));
  opacity: 0;
  transition-delay: 0s, 0s;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link:hover svg g:nth-of-type(2),
.sab-jobs .sab-job-button.qodef-button.qodef-html--link:focus svg g:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: .15s, .15s;
}

@media (max-width: 680px) {
  .sab-jobs .sab-job-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .sab-jobs .sab-job-toggle svg {
    width: 16px;
    height: 16px;
  }

  .sab-jobs .sab-job-button.qodef-button.qodef-html--link {
    width: 100%;
    justify-content: center;
    padding: 10px 28px 11px;
  }
}


/* v1.1.6 – Match Leroux/Qode button structure: text first, arrow clipped after text */
.sab-jobs .sab-job-button.qodef-button.qodef-html--link {
  /* Keep the native Qode/Leroux button class as the styling source. These values only protect plugin scope. */
  display: inline-flex;
  align-items: center;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link .qodef-m-text {
  order: 1;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link .qodef-m-arrow {
  order: 2;
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  min-width: 10px;
  margin-left: 7px !important;
  margin-right: 0 !important;
  overflow: hidden;
  color: currentColor;
}

.sab-jobs .sab-job-button.qodef-button.qodef-html--link .qodef-m-arrow svg {
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  overflow: visible;
}

/* Toggle: no circle, larger, vertically centered, same clipped Qode arrow animation */
.sab-jobs .sab-job-toggle {
  width: 34px;
  height: 34px;
  min-width: 34px;
  overflow: hidden;
  color: #1d2a30;
}

.sab-jobs .sab-job-toggle svg {
  position: absolute;
  inset: 5px;
  width: 24px;
  height: 24px;
  overflow: visible;
}

.sab-jobs .sab-job-summary {
  align-items: center;
}

@media (max-width: 680px) {
  .sab-jobs .sab-job-toggle {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .sab-jobs .sab-job-toggle svg {
    inset: 5px;
    width: 20px;
    height: 20px;
  }

  .sab-jobs .sab-job-button.qodef-button.qodef-html--link .qodef-m-arrow {
    margin-left: 7px !important;
    margin-right: 0 !important;
  }
}


/* v1.1.7 – final Qode/Leroux arrow correction
   Use real theme button structure/classes. Do not expose the second SVG group. */
.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link {
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  gap: 0 !important;
}

.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link .qodef-m-text {
  order: 1 !important;
  display: block !important;
  line-height: inherit !important;
}

.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link .qodef-m-arrow {
  order: 2 !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  margin-left: 7px !important;
  margin-right: 0 !important;
  overflow: hidden !important;
  color: currentColor !important;
}

.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link .qodef-m-arrow svg {
  position: static !important;
  display: block !important;
  width: 10px !important;
  height: 10px !important;
  overflow: hidden !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 1.1 !important;
}

.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link .qodef-m-arrow svg g,
.sab-jobs .sab-job-toggle svg g {
  transition: transform .38s cubic-bezier(.37,.08,.02,.93), opacity .18s ease-out !important;
}

.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link .qodef-m-arrow svg g:nth-of-type(1),
.sab-jobs .sab-job-toggle svg g:nth-of-type(1) {
  transform: translateX(0) translateY(0) !important;
  opacity: 1 !important;
  transition-delay: .15s, .15s !important;
}

.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link .qodef-m-arrow svg g:nth-of-type(2),
.sab-jobs .sab-job-toggle svg g:nth-of-type(2) {
  transform: translateX(calc(-1 * var(--qode-hover-move-x))) translateY(var(--qode-hover-move-y)) !important;
  opacity: .5 !important;
  transition-delay: 0s, 0s !important;
}

.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link:hover .qodef-m-arrow svg g:nth-of-type(1),
.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link:focus .qodef-m-arrow svg g:nth-of-type(1),
.sab-jobs .sab-job-summary:hover .sab-job-toggle svg g:nth-of-type(1),
.sab-jobs .sab-job-summary:focus-visible .sab-job-toggle svg g:nth-of-type(1),
.sab-jobs .sab-job-details[open] .sab-job-toggle svg g:nth-of-type(1) {
  transform: translateX(var(--qode-hover-move-x)) translateY(calc(-1 * var(--qode-hover-move-y))) !important;
  opacity: 0 !important;
  transition-delay: 0s, 0s !important;
}

.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link:hover .qodef-m-arrow svg g:nth-of-type(2),
.sab-jobs .sab-job-button.qodef-theme-button.qodef-button.qodef-html--link:focus .qodef-m-arrow svg g:nth-of-type(2),
.sab-jobs .sab-job-summary:hover .sab-job-toggle svg g:nth-of-type(2),
.sab-jobs .sab-job-summary:focus-visible .sab-job-toggle svg g:nth-of-type(2),
.sab-jobs .sab-job-details[open] .sab-job-toggle svg g:nth-of-type(2) {
  transform: translateX(0) translateY(0) !important;
  opacity: 1 !important;
  transition-delay: .15s, .15s !important;
}

/* Toggle icon: no circle, smaller than v1.1.6, centered, with the same clipped arrow animation. */
.sab-jobs .sab-job-toggle {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: end !important;
  align-self: center !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  padding: 0 !important;
  color: #1d2a30 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  --qode-hover-move-x: 110%;
  --qode-hover-move-y: 100%;
}

.sab-jobs .sab-job-toggle svg {
  position: static !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  overflow: hidden !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 1.1 !important;
  transform: none !important;
}

.sab-jobs .sab-job-details[open] .sab-job-toggle svg {
  transform: rotate(180deg) !important;
}

@media (max-width: 680px) {
  .sab-jobs .sab-job-toggle {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
  }

  .sab-jobs .sab-job-toggle svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* v1.1.8 – Tablet/mobile summary alignment fix
   Keep the Qode/SAB arrow size. Fix only grid placement and vertical centering. */
.sab-jobs .sab-job-summary {
  align-items: center !important;
}

.sab-jobs .sab-job-toggle {
  grid-column: 3 !important;
  grid-row: 1 !important;
  align-self: center !important;
  justify-self: end !important;
}

@media (min-width: 681px) and (max-width: 1024px) {
  .sab-jobs .sab-job-summary {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) 34px !important;
    gap: 20px !important;
    align-items: center !important;
    padding: 24px 28px !important;
  }

  .sab-jobs .sab-job-company-label {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
  }

  .sab-jobs .sab-job-title-wrap {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: center !important;
  }

  .sab-jobs .sab-job-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: end !important;
  }
}

@media (max-width: 680px) {
  .sab-jobs .sab-job-summary {
    grid-template-columns: minmax(0, 1fr) 30px !important;
    align-items: center !important;
  }

  .sab-jobs .sab-job-company-label {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: end !important;
  }

  .sab-jobs .sab-job-title-wrap {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: start !important;
  }

  .sab-jobs .sab-job-toggle {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    justify-self: end !important;
  }
}
