/* ============================================
   Roadmap module
   Desktop (≥992px): text overlaid on image
   Tablet/Mobile (≤991px): text stacked above image
   Image is served at original resolution — no
   CDN resizing, no CSS background upscaling.
   ============================================ */

.np-roadmap {
  position: relative;
  width: 100%;
  margin: 0;
  background-color: #f5f6f7;   /* matches image bg tone */
}

.np-roadmap__picture {
  display: block;
  line-height: 0;
}

.np-roadmap__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Eyebrow — 20px / 500 */
.np-roadmap__eyebrow {
  font-size: clamp(19px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #0b7285;
  margin: 0 0 10px;
}

/* Heading — SHIFT section h2: bold, centered */
.np-roadmap__heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #364153;
  margin: 0 0 20px;
}

/* Description — per SHIFT .content p intro: 20px / 400 / 150% */
.np-roadmap__description {
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: #364153;
}

.np-roadmap__description p:last-child {
  margin-bottom: 0;
}

/* ---------- Desktop (≥992px): overlay on inline image ---------- */
@media (min-width: 992px) {
  .np-roadmap__content {
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    padding: 0 12px;
    text-align: center;
    z-index: 2;
  }
  .np-roadmap__description {
    max-width: 768px;
    margin: 0 auto;
  }
}

/* ---------- Tablet & Mobile (≤991px): stacked, no background ---------- */
@media (max-width: 991px) {
  .np-roadmap {
    display: flex;
    flex-direction: column;
  }
  .np-roadmap__content {
    position: relative;
    z-index: 2;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 16px 8px;
    text-align: center;
  }
  .np-roadmap__picture {
    display: block;
  }
  .np-roadmap__eyebrow {
    font-size: 19px;
  }
  .np-roadmap__heading {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .np-roadmap__description {
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
  }
}
.np-roadmap__img {
2
display: block;
3
width: auto !important;
4
max-width: none !important;
5
height: auto !important;
6
}