/* ===== Image Redaction Overlay =====
   Used when a source image has proprietary content on one side.
   Wrap the <img> in .img-redact-wrapper and add a sibling .img-redact-overlay inside.
   - Adjust .img-redact-overlay width (default 50%) to change coverage area.
   - Background and text colors pull from your existing theme variables. */
.img-redact-wrapper {
  position: relative;
  width: 100%;
}
.img-redact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-sp-16);
  box-sizing: border-box;
}
.img-redact-label {
  font-size: var(--f-sz-p-small);
  color: var(--text-2-color);
  font-family: var(--font-fam);
  text-align: center;
  line-height: var(--lh-copy);
  font-style: italic;
}

.hero-content.case-study-intro {
  display: flex;
  justify-content: center;
}
.case-study-intro {
  flex: 1;
  align-items: center;
}
/* Used to be .inner-segment.problem-content */
.inner-segment.full-card {
  background: var(--bg-card);
}
/* Work Streams */
.inner-segment.work-stream-intro {
}
.inner-segment.work-stream {
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 20px;
}
