.ps-journey {
  --radius: 0px;
  margin-top: 0;
  border-radius: 0;
  padding: 3.5rem 0;
  background: #fff;
}

.ps-journey .container-fluid {
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .ps-journey .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .ps-journey .container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1536px) {
  .ps-journey .container-fluid {
    max-width: 1536px;
  }
}

.ps-journey .ps-audit-cards {
  padding: 0;
}

.ps-journey .ps-audit-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ps-journey .ps-audit-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .ps-journey .ps-audit-cards__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }

  .ps-journey .ps-audit-cards__grid::-webkit-scrollbar {
    display: none;
  }

  .ps-journey .ps-audit-cards__grid .ps-audit-card {
    flex: 0 0 80%;
    min-width: 0;
    scroll-snap-align: start;
  }
}

.ps-journey .ps-audit-card {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border-radius: 15px;
}

.ps-journey .ps-audit-card__media {
  position: relative;
  aspect-ratio: 53 / 70;
  overflow: hidden;
  border-radius: 15px;
}

.ps-journey .ps-audit-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-journey .ps-audit-card:hover .ps-audit-card__media > img {
  transform: scale(1.03);
}

.ps-journey .ps-audit-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0 0 15px 15px;
}

.ps-journey .ps-audit-card__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.ps-journey .ps-audit-card__logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.ps-journey .ps-audit-card__name {
  margin: 0;
  font-family: "Season Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.ps-journey .ps-audit-card__type {
  margin: 0.25rem 0 0;
  font-family: "Season Sans", sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.ps-journey .ps-audit-card__stat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-block;
  margin: 0;
  padding: 0.375rem 0.75rem;
  background: #fff;
  border-radius: 100px;
  color: #000;
  font-family: "Season Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ps-journey .ps-audit-card--audit {
  color: inherit;
  text-decoration: none;
  border-radius: 18px;
}

.ps-journey .ps-audit-card__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
  background: #171d2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(12, 17, 29, 0.08);
}

.ps-journey .ps-audit-card--audit .ps-audit-card__stat {
  position: static;
  align-self: flex-start;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.ps-journey .ps-audit-card--audit .ps-audit-card__name {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.ps-journey .ps-audit-card__summary {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Season Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.ps-journey .ps-audit-card__meta {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Season Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
}

.ps-journey .ps-audit-card__checks {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ps-journey .ps-audit-card__checks li {
  position: relative;
  padding-left: 1.3rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Season Sans", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.ps-journey .ps-audit-card__checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #7ceca3;
  font-size: 0.95rem;
}

.ps-journey .ps-audit-card__cta {
  margin-top: auto;
  color: #fff;
  font-family: "Season Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

.ps-journey .ps-audit-card--audit:hover .ps-audit-card__panel {
  transform: translateY(-2px);
  transition: transform 0.25s ease;
}

.ps-journey .ps-journey__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0 0;
}

@media (min-width: 1024px) {
  .ps-journey .ps-journey__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 4rem;
    align-items: start;
    padding: 3rem 0 0;
  }
}

@media (min-width: 1280px) {
  .ps-journey .ps-journey__grid {
    gap: 6rem;
  }
}

.ps-journey .ps-journey__heading {
  margin: 0;
  max-width: 11ch;
  color: #000;
  font-family: "Season Sans", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .ps-journey .ps-journey__heading {
    position: static;
  }
}

.ps-journey .ps-journey__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ps-journey .ps-journey__subheading {
  margin: 0 0 0.25rem;
  color: #000;
  font-family: "Season Sans", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.35;
}

.ps-journey .ps-journey__body {
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Season Sans", sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.ps-journey .ps-journey__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.ps-journey .ps-journey__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  max-width: 38rem;
}

.ps-journey .ps-journey__pills a {
  padding: 0.5rem 0.75rem;
  background: #f0f0f0;
  border-radius: 4px;
  color: #555;
  font-family: "Season Serif", serif;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.ps-journey .ps-journey__callout {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
  padding: 0.875rem 1.25rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.ps-journey .ps-journey__callout:hover {
  background: #1a1a1a;
}

.ps-journey .ps-journey__callout-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.ps-journey .ps-journey__callout-icon svg {
  width: 16px;
  height: 16px;
}

.ps-journey .ps-journey__callout-copy {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.ps-journey .ps-journey__callout-title {
  color: #fff;
  font-family: "Season Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
}

.ps-journey .ps-journey__callout-meta {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Season Sans", sans-serif;
  font-size: 0.6875rem;
  font-weight: 300;
  line-height: 1.3;
}

.ps-journey .ps-journey__callout-arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
  .ps-journey .ps-journey__grid {
    gap: 2.5rem;
  }

  .ps-journey .ps-journey__heading {
    max-width: none;
    font-size: clamp(32px, 11vw, 48px);
    line-height: 1.04;
  }

  .ps-journey .ps-journey__callout {
    width: 100%;
  }
}
