
  .vp-proc {
    --purple: #453685;
    --purple-dark: #2c2358;
    --ink: #201a3c;
    --gray: #6b6680;
    --line: #e5e1f0;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    box-sizing: border-box;
  }
  .vp-proc * { box-sizing: border-box; }

  .vp-proc__inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .vp-proc__step {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 22px;
  }

  .vp-proc__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .vp-proc__dot {
    width: 44px;
    height: 44px;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(45deg);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(69,54,133,.24);
  }
  .vp-proc__dot span {
    display: inline-block;
    transform: rotate(-45deg);
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 17px;
  }

  .vp-proc__line {
    width: 2px;
    flex: 1;
    background: repeating-linear-gradient(
      to bottom,
      var(--line) 0,
      var(--line) 6px,
      transparent 6px,
      transparent 12px
    );
    margin: 8px 0;
    min-height: 30px;
  }

  .vp-proc__body {
    padding-bottom: 30px;
  }
  .vp-proc__step:last-child .vp-proc__body {
    padding-bottom: 0;
  }
  .vp-proc__step:last-child .vp-proc__line {
    display: none;
  }

  .vp-proc__text {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink);
    padding-top: 8px;
  }
  .vp-proc__text strong {
    color: var(--purple-dark);
    font-weight: 500;
  }
