/* Two customer story cards — product & sector pages */
.pcs-sec {
  scroll-margin-top: 88px;
}

.pcs-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
}

.pcs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: 48px;
}

@media (min-width: 768px) {
  .pcs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pcs-card {
  display: block;
  border-radius: 18px;
  text-decoration: none;
  color: #000;
}

.pcs-card:focus-visible {
  outline: 2px solid rgba(234, 88, 88, 0.55);
  outline-offset: 4px;
}

.pcs-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.05;
  border-radius: 16px;
  overflow: hidden;
  background: #e8e8ea;
}

.pcs-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcs-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-repeat: repeat;
  background-size: 80px 80px;
  background-image: url("/assets/img/noise.webp");
}

.pcs-logo {
  position: absolute;
  top: 12px;
  left: 12px;
  pointer-events: none;
  width: 52%;
  height: 26px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.pcs-logo--normal {
  mix-blend-mode: normal;
}

.pcs-logo--multiply {
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .pcs-logo {
    top: 28px;
    left: 28px;
  }
}

.pcs-caption {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.45;
  min-height: calc(2 * 1.45em);
  font-weight: 400;
  color: #000;
  text-wrap: pretty;
}

.pcs-caption strong {
  font-weight: 600;
}
