/* =========================================================================
   Shared .cwd-textlink — gold arrow text link.
   (Originally vendored alongside the removed §6 <FullService /> band;
   still reused elsewhere on the Custom Websites page.)
   ========================================================================= */

.cwd-textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-accent);
  text-decoration: none;
  transition: gap 200ms var(--ease-out-soft), color 200ms var(--ease-out-soft);
}
.cwd-textlink span { transition: transform 200ms var(--ease-out-soft); display: inline-block; }
.cwd-textlink:hover { gap: 12px; color: var(--color-accent-dark); }
.cwd-textlink:hover span { transform: translateX(3px); }
.cwd-textlink--lg { font-size: 16px; }
