/* ============================================
   THAT WORKS PAGE — Per-section overrides only.
   Tokens: base.css | Layouts: layouts.css |
   Components: components.css
   ============================================ */

/* --------------------------------------------
   EVIDENCE-BASED MARKETING
   Uses shared section-split--reverse layout.
   Override: pin image to left edge (0%) instead
   of default 25%, for a tighter left crop.
   -------------------------------------------- */
.ebm-section .section-split__image img {
  left: calc(-157px + 5vw);
  transform: none;
}

@media (max-width: 480px) {
  .ebm-section .section-split__image img {
    left: -240px;
    transform: none;
  }
}

/* --------------------------------------------
   60:40 DISCIPLINE
   -------------------------------------------- */
.discipline-6040 {
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 0 100px;
}

.discipline-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.discipline-content p {
  font-size: var(--fs-body);
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.discipline-content .tagline {
  font-weight: 700;
  color: var(--color-coral);
  font-size: var(--fs-body);
  margin-top: 8px;
}

.discipline-diagram {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discipline-bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.discipline-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discipline-bar-label span {
  font-size: var(--fs-btn);
  font-weight: 600;
  color: var(--color-text-light);
}

.discipline-bar-label strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.bar-track {
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 1s var(--ease-smooth);
}

.bar-fill-peppermint { background: var(--color-peppermint); }
.bar-fill-coral { background: var(--color-coral); }

.discipline-proof {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  border-left: 3px solid var(--color-peppermint);
}

.discipline-proof p {
  font-size: var(--fs-body-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.discipline-proof cite {
  display: block;
  margin-top: 8px;
  font-size: var(--fs-caption);
  font-weight: 600;
  color: var(--color-peppermint);
  font-style: normal;
}

