.bpc-view-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.bpc-directory {
  --bpc-line: #e1e8ef;
}

.bpc-intro {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.bpc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bpc-card {
  border: 1px solid var(--bpc-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Match the homepage product treatment: white image backgrounds blend into
   the pale panel while the complete product remains visible. */
.bpc-image {
  height: 230px;
  background: #f6f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bpc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  mix-blend-mode: multiply;
}

.bpc-copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bpc-copy h2 {
  font-size: 21px;
  margin: 0 0 10px;
}

.bpc-copy h2 a {
  color: inherit;
}

.bpc-copy p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.bpc-details,
.bpc-back {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  margin-top: auto;
}

.bpc-details:hover,
.bpc-back:hover {
  text-decoration: underline;
}

.bpc-custom {
  background: #f3f6f8;
  border-left: 4px solid var(--blue);
  padding: 28px 30px;
  margin-top: 38px;
}

.bpc-custom h2 {
  font-size: 25px;
  margin: 0 0 8px;
}

.bpc-custom p {
  max-width: 720px;
}

.bpc-single-image {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #f6f8fa;
  padding: 24px;
  border-radius: 6px;
  margin: 0 0 30px;
  mix-blend-mode: multiply;
}

@media (max-width: 850px) {
  .bpc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .bpc-view-more {
    margin-top: 26px;
  }

  .bpc-grid {
    grid-template-columns: 1fr;
  }

  .bpc-image {
    height: 240px;
  }

  .bpc-custom {
    padding: 24px 20px;
  }

  .bpc-intro {
    font-size: 14px;
  }
}
