.top-actions {
  align-items: center;
}

.desktop-download {
  height: 38px;
  padding: 0 15px;
  border-radius: 7px;
  background: var(--lime);
  color: #18200f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 800 11px Outfit, sans-serif;
  letter-spacing: 0.45px;
  box-shadow: 0 8px 22px rgba(200, 255, 67, 0.12);
  transition: transform 0.18s, filter 0.18s;
}

.desktop-download:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.desktop-download:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.desktop-download svg {
  width: 16px;
}

@media (max-width: 520px) {
  .desktop-download {
    width: 38px;
    padding: 0;
    justify-content: center;
  }

  .desktop-download span {
    display: none;
  }
}
