.pcb-trials-page {
  --pcb-navy: #071b37;
  --pcb-navy-soft: #102b50;
  --pcb-green: #0a7a43;
  --pcb-green-dark: #075731;
  --pcb-lime: #d8ef4a;
  --pcb-cream: #f5f1e7;
  --pcb-white: #ffffff;
  --pcb-ink: #102039;
  background: var(--pcb-cream);
  color: var(--pcb-ink);
  overflow: hidden;
}

.pcb-trials-page *,
.pcb-trials-page *::before,
.pcb-trials-page *::after {
  box-sizing: border-box;
}

.pcb-trials-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr);
  min-height: 760px;
  background: var(--pcb-navy);
  color: var(--pcb-white);
}

.pcb-trials-hero__content {
  align-self: center;
  max-width: 760px;
  padding: clamp(100px, 11vw, 170px) clamp(32px, 7vw, 110px);
}

.pcb-trials-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--pcb-green);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pcb-trials-hero .pcb-trials-kicker,
.pcb-trials-section__heading--light .pcb-trials-kicker {
  color: var(--pcb-lime);
}

.pcb-trials-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--pcb-white);
  font-size: clamp(3.2rem, 6.4vw, 7.1rem);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .9;
}

.pcb-trials-hero h1 span {
  display: block;
  color: var(--pcb-lime);
}

.pcb-trials-hero__lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #dce6f3;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.72;
}

.pcb-trials-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.pcb-trials-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.pcb-trials-button:hover,
.pcb-trials-button:focus-visible {
  transform: translateY(-2px);
}

.pcb-trials-button--primary {
  background: var(--pcb-lime);
  color: var(--pcb-navy);
}

.pcb-trials-button--primary:hover,
.pcb-trials-button--primary:focus-visible {
  background: var(--pcb-white);
  color: var(--pcb-navy);
}

.pcb-trials-button--ghost {
  border-color: rgba(255, 255, 255, .42);
  color: var(--pcb-white);
}

.pcb-trials-button--ghost:hover,
.pcb-trials-button--ghost:focus-visible {
  border-color: var(--pcb-white);
  background: var(--pcb-white);
  color: var(--pcb-navy);
}

.pcb-trials-hero__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.pcb-trials-hero__visual::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 55, .14);
  content: "";
  pointer-events: none;
}

.pcb-trials-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.pcb-trials-hero__badge {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 62px);
  bottom: 42px;
  display: grid;
  width: 164px;
  min-height: 164px;
  place-content: center;
  border: 8px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: var(--pcb-lime);
  color: var(--pcb-navy);
  text-align: center;
}

.pcb-trials-hero__badge strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}

.pcb-trials-hero__badge span {
  display: block;
  max-width: 110px;
  margin-top: 7px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pcb-trials-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: -1px auto 0;
  background: var(--pcb-green);
  color: var(--pcb-white);
}

.pcb-trials-snapshot div {
  display: flex;
  min-height: 138px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.pcb-trials-snapshot div:last-child {
  border-right: 0;
}

.pcb-trials-snapshot strong {
  color: var(--pcb-lime);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.pcb-trials-snapshot span {
  max-width: 170px;
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pcb-trials-section {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.pcb-trials-story {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding-block: clamp(90px, 11vw, 150px);
}

.pcb-trials-story__image {
  position: relative;
  height: min(700px, 70vw);
}

.pcb-trials-story__image::before {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 55%;
  height: 44%;
  border: 7px solid var(--pcb-lime);
  content: "";
}

.pcb-trials-story__image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcb-trials-story__content h2,
.pcb-trials-section__heading h2,
.pcb-trials-finale h2 {
  margin: 0;
  color: var(--pcb-navy);
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1;
}

.pcb-trials-story__content > p:not(.pcb-trials-kicker) {
  margin: 26px 0 0;
  color: #4b586a;
  font-size: 1.06rem;
  line-height: 1.82;
}

.pcb-trials-story blockquote {
  margin: 34px 0 0;
  padding: 22px 0 22px 25px;
  border-left: 5px solid var(--pcb-green);
  color: var(--pcb-green-dark);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 750;
  line-height: 1.45;
}

.pcb-trials-values {
  padding-bottom: clamp(90px, 10vw, 140px);
}

.pcb-trials-section__heading {
  max-width: 800px;
  margin-bottom: 50px;
}

.pcb-trials-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pcb-trials-values article {
  min-height: 310px;
  padding: 38px;
  border-top: 7px solid var(--pcb-lime);
  background: var(--pcb-white);
}

.pcb-trials-values article span {
  color: var(--pcb-green);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.pcb-trials-values h3 {
  margin: 70px 0 17px;
  color: var(--pcb-navy);
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.pcb-trials-values article p {
  margin: 0;
  color: #596579;
  line-height: 1.72;
}

.pcb-trials-gallery {
  width: 100%;
  max-width: none;
  padding: clamp(86px, 10vw, 140px) max(24px, calc((100vw - 1180px) / 2));
  background: var(--pcb-navy);
}

.pcb-trials-section__heading--light h2 {
  color: var(--pcb-white);
}

.pcb-trials-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pcb-trials-gallery figure {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}

.pcb-trials-gallery figure:first-child {
  margin-top: 64px;
}

.pcb-trials-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcb-trials-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 26px;
  background: rgba(7, 27, 55, .88);
  color: var(--pcb-white);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pcb-trials-finale {
  max-width: 900px;
  padding-block: clamp(100px, 12vw, 170px);
  text-align: center;
}

.pcb-trials-finale .pcb-trials-kicker {
  justify-content: center;
}

.pcb-trials-finale p:not(.pcb-trials-kicker) {
  max-width: 720px;
  margin: 28px auto 36px;
  color: #526075;
  font-size: 1.08rem;
  line-height: 1.8;
}

@media (max-width: 1000px) {
  .pcb-trials-hero {
    grid-template-columns: 1fr 44%;
  }

  .pcb-trials-story {
    gap: 50px;
  }

  .pcb-trials-values article {
    padding: 30px;
  }
}

@media (max-width: 820px) {
  .pcb-trials-hero {
    grid-template-columns: 1fr;
  }

  .pcb-trials-hero__content {
    padding: 110px 28px 70px;
  }

  .pcb-trials-hero__visual {
    min-height: 620px;
  }

  .pcb-trials-snapshot {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
  }

  .pcb-trials-snapshot div {
    min-height: 105px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .pcb-trials-snapshot div:last-child {
    border-bottom: 0;
  }

  .pcb-trials-story {
    grid-template-columns: 1fr;
  }

  .pcb-trials-story__image {
    height: 680px;
  }

  .pcb-trials-values__grid {
    grid-template-columns: 1fr;
  }

  .pcb-trials-values article {
    min-height: 250px;
  }

  .pcb-trials-values h3 {
    margin-top: 42px;
  }
}

@media (max-width: 640px) {
  .pcb-trials-section {
    width: min(100% - 32px, 1180px);
  }

  .pcb-trials-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .pcb-trials-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pcb-trials-hero__visual,
  .pcb-trials-story__image {
    min-height: 0;
    height: 540px;
  }

  .pcb-trials-hero__badge {
    right: 20px;
    bottom: 20px;
    width: 132px;
    min-height: 132px;
  }

  .pcb-trials-gallery__grid {
    grid-template-columns: 1fr;
  }

  .pcb-trials-gallery figure,
  .pcb-trials-gallery figure:first-child {
    min-height: 570px;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcb-trials-button {
    transition: none;
  }
}
