.card-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 200px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;

  color: var(--text-main);
  text-decoration: none;

  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 6px;

  background-color: transparent;
  transition: opacity 0.2s ease, background-color 0.2s ease;

  margin-top: 20px;
}

.download-btn:hover {
  opacity: 0.75;
  background-color: rgba(0, 0, 0, 0.03);
}

.download-icon {
  font-size: 1rem;
  line-height: 1;
}
