.plot-ba-block {
  --plot-ba-green: #b5c92e;
  --plot-ba-black: #111;
  box-sizing: border-box;
  margin: clamp(48px, 8vw, 104px) auto;
  max-width: 1180px;
}

.plot-ba-heading > span {
  color: #69761a;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 10px;
}

.plot-ba-heading h2 {
  color: var(--plot-ba-black);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: 0 0 28px;
}

.plot-ba-slider {
  aspect-ratio: 16 / 10;
  background: #e9e9e6;
  cursor: col-resize;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.plot-ba-image {
  display: block;
  height: 100% !important;
  inset: 0;
  margin: 0 !important;
  max-width: none !important;
  object-fit: cover;
  position: absolute;
  width: 100% !important;
}

.plot-ba-before {
  clip-path: inset(0 calc(100% - var(--plot-ba-position)) 0 0);
}

.plot-ba-divider {
  background: #fff;
  bottom: 0;
  left: var(--plot-ba-position);
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  z-index: 4;
}

.plot-ba-divider span {
  align-items: center;
  background: var(--plot-ba-green);
  border: 3px solid #fff;
  border-radius: 50%;
  color: #111;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 54px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
}

.plot-ba-range {
  cursor: col-resize;
  height: 100%;
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.plot-ba-tag {
  background: rgba(17, 17, 17, .88);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  padding: 10px 13px;
  position: absolute;
  top: 16px;
  z-index: 3;
}

.plot-ba-tag-before { left: 16px; }
.plot-ba-tag-after { right: 16px; }

.plot-ba-help {
  color: #666;
  font-size: 12px;
  margin: 12px 0 0 !important;
}

.plot-demo-project-story { margin-top: 36px; }
.plot-demo-lead { font-size: 1.08em; line-height: 2; }
.plot-demo-data { border-top: 1px solid #ddd; margin: 36px 0 56px; }
.plot-demo-data > div { border-bottom: 1px solid #ddd; display: grid; grid-template-columns: 8em 1fr; padding: 15px 0; }
.plot-demo-data dt { color: #666; font-size: 13px; }
.plot-demo-data dd { margin: 0; }
.plot-demo-story { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.plot-demo-story article { border-top: 2px solid #111; padding-top: 18px; }
.plot-demo-story span { color: #89981d; font-size: 12px; font-weight: 700; }
.plot-demo-story h3 { font-size: 18px; margin: 12px 0; }
.plot-demo-story p { color: #555; font-size: 14px; line-height: 1.9; }

@media (max-width: 680px) {
  .plot-ba-slider { aspect-ratio: 4 / 3; }
  .plot-ba-divider span { height: 44px; width: 44px; }
  .plot-demo-story { grid-template-columns: 1fr; }
  .plot-demo-data > div { grid-template-columns: 6em 1fr; }
}

