.shortcode-inner-wrapper:has(> #ntsoftware-career-page) {
  max-width: 100%;
}

:root {
  --dk-bg: #f2f2f2;
  --dk-text: #000;
  --dk-white: #fff;
  --dk-gray-900: #3c3c3c;
  --dk-gold-1: #b9863c;
  --dk-gold-2: #f1d275;
  --dk-gold-3: #e9d088;
  --dk-gold-4: #b9853b;
}

.dk-page {
  font-family: "Fira Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: var(--dk-text);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CONTAINER WIDTH */
.dk-section,
.dk-hero {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* HERO */
.dk-hero {
  padding: 171px 31px;
  height: 100vh;
  color: #fff;
  background: radial-gradient(
      46.63% 51.64% at 88.69% 43.28%,
      rgba(39, 39, 39, 0) 0%,
      rgba(39, 39, 39, 0.63) 100%
    ),
    url("img/hero.jpg");
  background-size: cover;
  background-position: center;
}
.dk-welcome-content,
.dk-benefits-content,
.dk-hero-content,
.dk-jobs-content,
.dk-work-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dk-eyebrow {
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 16px;
}
.dk-hero__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 16px;
}
.dk-hero__sub {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 24px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* BUTTONS */
.dk-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 4px 4px rgba(22, 22, 22, 0.25);
  width: 100%;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.dk-btn:hover {
  transform: translateX(-1px) translateY(-1px);
}
.dk-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #fff;
  opacity: 0; /* start slightly inside */
  transition: opacity 0.25s ease;
}

.dk-btn:hover::after {
  opacity: 1; /* expands smoothly to full size */
}
.dk-btn--gold {
  background: linear-gradient(
    91.01deg,
    var(--dk-gold-1) 0.43%,
    var(--dk-gold-2) 99.36%
  );
}

/* SECTIONS */
.dk-welcome {
  background: var(--dk-bg);
  padding: 83px 20px 40px;
}
.dk-welcome h2,
.dk-benefits h2,
.dk-jobs h2,
.dk-work h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  margin: 0 0 12px;
}
.dk-welcome p,
.dk-section__kicker,
.dk-section__eyebrow,
.dk-jobs__intro,
.dk-work__lead {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 12px;
}

.dk-benefits {
  background: #fff;
  padding: 83px 20px;
}

.dk-benefits__scroller,
.dk-tiles__scroller {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}
.dk-benefit {
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 27px 15px;
  gap: 10px;
  background: #fff;
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(
      126deg,
      rgba(185, 133, 59, 1) 0%,
      rgba(233, 208, 136, 1) 100%
    )
    1;
}
.dk-benefit__icon {
  width: auto;
  height: 80px;
}
.dk-benefit h3 {
  color: #d9a125;
  font-size: 18px;
  line-height: 22px;
  margin: 6px 0;
  text-align: center;
}
.dk-benefit p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  text-align: center;
}

.dk-top-employer {
  padding: 55px 0 0;
}
.dk-top-employer h3 {
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 8px;
}
.dk-top-employer p {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 12px;
  color: #303030;
}
.dk-top-employer__badge {
  width: 100%;
  height: auto;
  display: block;
}

/* JOBS */
.dk-jobs {
  background: var(--dk-gray-900);
  color: #fff;
  padding: 83px 20px;
}
.dk-job {
  background: rgba(202, 202, 202, 0.1);
  border-top: 4px solid #ddb353;
  padding: 20px;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dk-job__meta {
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.dk-job__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  margin: 0;
}
.dk-job__dept {
  font-size: 16px;
  line-height: 19px;
}
.dk-job--cta {
  background: none;
  border: none;
}
.dk-job--cta .dk-job__title {
  font-size: 24px;
}
.dk-job--cta .dk-job__lead {
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}

.dk-work {
  background: var(--dk-bg);
  padding: 83px 20px 40px;
}

.dk-tile {
  width: 100%;
  scroll-snap-align: start;
  background: linear-gradient(
    125.1deg,
    var(--dk-gold-4) 11.48%,
    var(--dk-gold-3) 100%
  );
  color: #fff;
  padding: 20px;
  box-shadow: 0 4px 4px rgba(23, 23, 23, 0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dk-tile__icon {
  width: 96px;
  height: auto;
}
.dk-tile h3 {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}
.dk-tile p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}
.dk-link {
  align-self: flex-start;
  margin-top: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 5px 10px;
  transition: all 0.25s ease;
  box-shadow: none;
}
.dk-link:hover {
  transform: translateX(-1px) translateY(-1px);
  box-shadow: 0 4px 4px rgba(22, 22, 22, 0.25);
}

@media screen and (min-width: 768px) {
  .dk-welcome-content,
  .dk-benefits-content,
  .dk-hero-content,
  .dk-jobs-content,
  .dk-work-content {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .dk-hero__sub {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 24px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  .dk-btn {
    max-width: 300px;
  }
  .dk-benefit {
    width: 200px;
  }
  .dk-top-employer__badge {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1200px) {
  .dk-welcome-content,
  .dk-benefits-content,
  .dk-hero-content,
  .dk-jobs-content,
  .dk-work-content {
    max-width: 800px;
  }
  .dk-hero {
    padding-top: 220px;
  }
  .dk-benefit {
    width: 165px;
    gap: 5px;
  }
  .dk-benefit__icon {
    width: auto;
    height: 50px;
  }
  .dk-benefit h3 {
    font-size: 14px;
    line-height: 20px;
  }
  .dk-benefit p {
    font-size: 12px;
    line-height: 14px;
  }
  .dk-tile {
    width: 220px;
    gap: 5px;
  }
  .dk-tile__icon {
    width: 60px;
  }
  .dk-tile h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .dk-tile p {
    font-size: 14px;
    line-height: 18px;
  }
  .dk-tile .dk-link {
    font-size: 16px;
    line-height: 20px;
  }
  .dk-top-employer {
    display: flex;
    gap: 20px;
  }
  .dk-top-employer__badge {
    width: 220px;
  }
}
