/* ============================================================
   HEADING
============================================================ */
/* FIXED: This entire file was a copy-paste of the Label (08.4) styles.
   Replaced with the correct Heading styles from the Master. */

/* Heading text */
.services__heading {
  margin: 0 auto 16px auto;
  margin-top: 45px;
  text-align: center;

  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.3px;
  white-space: nowrap;

  background: linear-gradient(135deg, #ffffff 0%, #f0f6fb 60%, #e8f1f8 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation: gradientShift 8s ease infinite;
  transition: transform 200ms ease;
}

/* Heading gradient line */
.services__heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: 16px 0 12px 0;

  background: linear-gradient(
    90deg,
    rgba(200, 0, 30, 0) 0%,
    rgba(200, 0, 30, 1) 30%,
    rgba(255, 255, 255, 0.85) 70%,
    rgba(200, 0, 30, 0) 100%
  );

  box-shadow: 0 0 10px 2px rgba(200, 0, 30, 0.4);
  border-radius: 2px;
}

/* Heading hover */
.services__heading:hover {
  transform: scale(1.01);
}