.footer__documents {
  display: grid;
  gap: 10px;
  width: min(100%, 280px);
}

.footer__document-action {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s var(--ease);
}

.footer__document-action:hover,
.footer__document-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  transform: translateY(-2px);
}

.footer__document-action svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer__document-arrow {
  margin-left: auto;
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .footer__documents { width: 100%; max-width: 430px; }
  .footer__document-action { justify-content: flex-start; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .footer__document-action { transition: none; }
}
