.page__cover__actions {
  display: flex;
  gap: 10px;
  margin: 2rem 2rem;
  justify-content: center;
}

/* базовая кнопка */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* основная кнопка */
.btn-primary {
  background: var(--accent-color);
  color: #fff;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
}

/* вторичная кнопка */
.btn-secondary {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-1px);
}

/* мобильная адаптация */
@media (max-width: 640px) {
  .page__cover__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
