/* Download Button 用CSS
 * 2026-05-05
 */

.tw-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin: 1rem 0;
  padding: 0.7em 1.1em;
  border: 1px solid #7a4a35;
  border-radius: 999px;
  background: #7a4a35;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.tw-download-button::before {
  content: "⬇";
  font-size: 0.95em;
}

.tw-download-button:hover,
.tw-download-button:focus {
  background: #5f3828;
  border-color: #5f3828;
  color: #fff;
  text-decoration: none;
}

.tw-download-button:focus-visible {
  outline: 3px solid #d8b28a;
  outline-offset: 3px;
}