
/* Единая система кнопок для всех блоков сайта */
.zv-btn,
.services-editorial__btn,
.zv-case-showcase__btn,
.zv-faq-premium__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 28px;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  background: #2E3440;
  color: #FF8562;
  text-decoration: none;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(46, 52, 64, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.zv-btn:hover,
.services-editorial__btn:hover,
.zv-case-showcase__btn:hover,
.zv-faq-premium__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(46, 52, 64, 0.24);
  background: #2E3440;
  color: #FF9A7A;
}

.zv-btn:active,
.services-editorial__btn:active,
.zv-case-showcase__btn:active,
.zv-faq-premium__btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(46, 52, 64, 0.18);
}

.zv-btn:focus-visible,
.services-editorial__btn:focus-visible,
.zv-case-showcase__btn:focus-visible,
.zv-faq-premium__btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 133, 98, 0.18),
    0 10px 24px rgba(46, 52, 64, 0.18);
}

@media (max-width: 640px) {
  .zv-btn,
  .services-editorial__btn,
  .zv-case-showcase__btn,
  .zv-faq-premium__btn {
    width: 100%;
  }
}
</style>