/* ===== Text hover/float effects ===== */
.text-char {
  display: inline-block;
  transition:
    transform 0.3s var(--ease-out),
    color 0.3s ease;
  cursor: default;
}

.text-char:hover {
  transform: translateY(-5px) scale(1.05);
  color: var(--accent);
}

[data-text-fx="hover"] .section__heading-line::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.5s var(--ease-out);
}

[data-text-fx="hover"]:hover .section__heading-line::after {
  width: 100%;
}
