/* ============================================================
   LitHERacy — "listen on" buttons
   ============================================================
   The three platforms. Marks take the ink colour from the button,
   so the same markup works on cream and on the dark panels.
   ============================================================ */
.listen-on { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.listen-on a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink); border: 1.5px solid var(--ink);
  padding: 9px 15px; background: transparent;
  transition: background-color 160ms ease, color 160ms ease;
}
.listen-on a:hover { background: var(--lavender); }
.listen-on a:focus-visible { outline: 3px solid var(--violet); outline-offset: 2px; }
.listen-on svg { width: 16px; height: 16px; flex: none; }

/* the standalone row on the homepage and episodes page */
.listen-on--row { margin-top: 30px; }
.listen-on--row .listen-label {
  flex-basis: 100%; margin: 0 0 4px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--violet);
}

/* on the homepage this sits in the brand reveal, which is centred */
.sc-reveal .listen-on--row { justify-content: center; }

@media (max-width: 620px) {
  .listen-on a { font-size: 11px; padding: 8px 12px; gap: 7px; }
  .listen-on svg { width: 15px; height: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .listen-on a { transition: none; }
}
