.program-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
  padding: 30px 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.program-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #5e2cc5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-heading__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 10px rgba(94, 44, 197, 0.08);
}

.program-heading__title {
  margin: 0;
  color: #431e9d;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.program-heading__copy {
  max-width: 760px;
  margin: 0;
  color: rgba(28, 26, 31, 0.76);
  font-size: 17px;
  line-height: 1.9;
}

@media (max-width: 767px) {
  .program-heading {
    gap: 12px;
    padding: 24px 20px;
    border-radius: 0;
  }

  .program-heading__eyebrow {
    font-size: 12px;
  }

  .program-heading__title {
    font-size: clamp(32px, 10vw, 46px);
  }

  .program-heading__copy {
    font-size: 15px;
    line-height: 1.8;
  }
}
