/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 02 2025 | 19:58:40 */
.arrow-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #788696 !important;
  font-family: "Tilda Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  text-decoration: none;
  transition: none;
}

/* Удерживаем цвет при любых взаимодействиях */
.arrow-text-link:hover,
.arrow-text-link:focus,
.arrow-text-link:active {
  color: #788696 !important;
  text-decoration: none !important;
}

/* Стрелка и её движение */
.arrow-text-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow-text-link .arrow img {
  width: 16px;
  height: 16px;
  display: block;
}

/* Только движение стрелки при ховере */
.arrow-text-link:hover .arrow {
  transform: translateX(4px);
}

.arrow-text-link:active .arrow {
  transform: translateX(2px);
}
