.result-actions {
  display: flex;
  gap: 8px;
}

.audio-button {
  height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #f3f2ed;
  border: 1px solid #41454d;
  font: 800 12px Manrope, sans-serif;
  letter-spacing: .8px;
  text-decoration: none;
  transition: .2s;
}

.audio-button:hover {
  border-color: #c7ff32;
  color: #c7ff32;
}

.audio-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.audio-button[hidden] { display: none; }

@media (max-width: 750px) {
  .result-actions { width: 100%; }
  .result-actions .download-button,
  .result-actions .audio-button { flex: 1; min-width: 0; }
}
