/*
 * P10-SITE-1068
 * Connected buyer journey for the About, Quality & Documents, and Sourcing Process pages.
 */

body.trust-marketing-page .sourcing-journey-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(78, 170, 194, 0.16), transparent 34%),
    linear-gradient(145deg, #f4f9fc 0%, #edf6f8 100%);
}

body.trust-marketing-page .sourcing-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

body.trust-marketing-page .sourcing-journey-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(37, 83, 104, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(25, 59, 80, 0.08);
  color: #102d42;
  text-decoration: none;
}

body.trust-marketing-page a.sourcing-journey-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.trust-marketing-page a.sourcing-journey-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 132, 139, 0.48);
  box-shadow: 0 22px 48px rgba(25, 59, 80, 0.12);
}

body.trust-marketing-page a.sourcing-journey-card:focus-visible {
  outline: 3px solid #0e848b;
  outline-offset: 4px;
}

body.trust-marketing-page .sourcing-journey-card.is-current {
  border-color: #0d7077;
  background: linear-gradient(145deg, #0d747b 0%, #0b5d69 100%);
  box-shadow: 0 20px 44px rgba(10, 95, 106, 0.22);
  color: #ffffff;
}

body.trust-marketing-page .sourcing-journey-number {
  color: #16848b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

body.trust-marketing-page .sourcing-journey-card.is-current .sourcing-journey-number {
  color: #c4f4ef;
}

body.trust-marketing-page .sourcing-journey-card strong {
  color: inherit;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.18;
}

body.trust-marketing-page .sourcing-journey-card small {
  color: #5f7280;
  font-size: 0.94rem;
  line-height: 1.55;
}

body.trust-marketing-page .sourcing-journey-card.is-current small {
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 761px) and (max-height: 760px) {
  body.trust-marketing-page .whatsapp-contact {
    min-width: 52px;
    width: 52px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  body.trust-marketing-page .whatsapp-contact strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  body.trust-marketing-page .whatsapp-contact span {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 760px) {
  body.trust-marketing-page .sourcing-journey {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  body.trust-marketing-page .sourcing-journey-card {
    gap: 8px;
    padding: 20px;
    border-radius: 18px;
  }
}
