
  .vp-runs {
    --purple: #453685;
    --purple-dark: #30245f;
    --lavender: #f5f3fb;
    --lavender-2: #ebe7f6;
    --ink: #201a3c;
    --gray: #6b6680;

    font-family: 'Roboto', sans-serif;
    background: #fff;
    padding: 24px;
  }

  .vp-runs * {
    box-sizing: border-box;
  }

  .vp-runs__inner {
    max-width: 1080px;
    margin: 0 auto;
  }

  .vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .vp-cell {
    position: relative;
    min-height: 170px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
    border: 1px solid #e7e2f2;
    border-radius: 22px;
    padding: 24px 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(69, 54, 133, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .vp-cell::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(69,54,133,.12), transparent 68%);
    pointer-events: none;
  }

  .vp-cell:hover {
    transform: translateY(-4px);
    border-color: rgba(69,54,133,.28);
    box-shadow: 0 22px 46px rgba(69, 54, 133, 0.14);
  }

  .vp-cell__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

  .vp-cell__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--lavender);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .vp-cell__icon svg {
    width: 21px;
    height: 21px;
  }

  .vp-cell__title {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.15;
    color: var(--ink);
  }

  .vp-cell__desc {
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--gray);
  }

  .vp-cell--wide {
    grid-column: span 2;
  }

  .vp-cell--wide .vp-cell__desc {
    max-width: 570px;
  }

  .vp-cell--close {
    background:
      radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 34%),
      linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
  }

  .vp-cell--close::after {
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
  }

  .vp-cell--close .vp-cell__title {
    color: #fff;
    font-size: 20px;
    max-width: 280px;
  }

  .vp-cell--close .vp-cell__desc {
    color: rgba(255,255,255,.78);
    margin-top: 10px;
  }

  .vp-cell--close .vp-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .02em;
  }

  @media (max-width: 860px) {
    .vp-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .vp-cell--wide,
    .vp-cell--close {
      grid-column: span 2;
    }
  }

  @media (max-width: 520px) {
    .vp-runs {
      padding: 32px 18px;
    }

    .vp-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .vp-cell,
    .vp-cell--wide,
    .vp-cell--close {
      grid-column: span 1;
    }

    .vp-cell {
      min-height: auto;
    }
  }
