.new-story-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  color: var(--parchment-dim);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.new-story-button::before {
  content: "↺";
  margin-right: 7px;
  color: var(--gold);
}

.new-story-button:hover,
.new-story-button:focus-visible {
  border-color: var(--gold);
  background: var(--ink-2);
  color: var(--gold-bright);
}

@media (max-width: 560px) {
  .new-story-button {
    margin-top: 14px;
    padding: 8px 13px;
    font-size: 0.82rem;
  }
}
