.bp-story {
  padding: 90px 0;
  background: var(--bp-paper);
}
.bp-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.bp-story__img {
  border: 3px solid var(--bp-ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--bp-ink);
  line-height: 0;
}
.bp-story__img img {
  width: 100%;
  display: block;
}
.bp-story h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 20px;
  color: var(--bp-ink);
}
.bp-story h2 .red {
  color: var(--bp-red);
}
.bp-story__body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #473b30;
  margin-bottom: 16px;
}
@media (max-width: 860px) {
  .bp-story__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
