/* Shared layout for the loop page and artist pages. style.css comes first. */

.page { max-width: 960px; margin: 0 auto; padding: 6px 18px 70px; }
.page-state {
  text-align: center; color: var(--muted); padding: 70px 20px;
  font-family: var(--font-display); font-size: 18px;
}

/* ---------- One loop ---------- */
.loop-wrap { display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-start; justify-content: center; }
.loop-main { flex: 0 1 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 0; max-width: 100%; }

/* The drawing on a card with a top bar, the way a shared study is stamped:
   the time it took on one side, where it was made on the other. */
.loop-card {
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: 16px;
  overflow: hidden; box-shadow: var(--sh-lg); max-width: 100%;
}
.loop-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 7px 12px; background: #fff; color: #17131f; border-bottom: var(--bw-sm) solid var(--ink);
  font-size: 13px; font-weight: var(--wt-strong);
}
.loop-done { display: inline-flex; align-items: center; gap: 6px; font-variant-numeric: tabular-nums; direction: ltr; unicode-bidi: isolate; }
.loop-done .ico { width: 16px; height: 16px; }
.loop-brand { font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 13px; opacity: .8; }
.loop-brand .tv { font-size: 9px; padding: 1px 5px; margin-inline-start: 3px; }
.loop-stage { display: flex; align-items: center; justify-content: center; background: var(--paper); }
.loop-stage img { display: block; max-width: min(560px, 100%); max-height: 66vh; }

.loop-side { flex: 1 1 280px; min-width: 260px; max-width: 420px; display: flex; flex-direction: column; gap: 14px; }

/* The keyword this loop was drawn for. */
.kw-badge {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  background: var(--pink); color: var(--on-pink); border: var(--bw-sm) solid var(--ink);
  border-radius: 14px; padding: 8px 12px; box-shadow: var(--sh-sm);
}
.kw-badge:hover { filter: brightness(1.06); }
.kw-badge-spark { font-size: 22px; line-height: 1; color: var(--yellow); -webkit-text-stroke: 1px var(--ink); }
.kw-badge-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.kw-badge-text small { font-size: 10px; font-weight: var(--wt-strong); text-transform: uppercase; letter-spacing: .07em; opacity: .9; }
.kw-badge-text b { font-family: var(--font-display); font-size: 20px; line-height: 1.1; }
.kw-badge-more { font-size: 12px; font-weight: var(--wt-strong); white-space: nowrap; text-decoration: underline; }
.chips .tag.kw { background: var(--pink); color: var(--on-pink); }
:root[data-theme="newsprint"] .kw-badge { background: #000; color: #fff; }

/* Why a loop is not on the TV. Only its artist and an admin ever see it. */
.why-card {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--panel); border: var(--bw-sm) solid var(--red); border-radius: 14px; padding: 12px 14px;
}
.why-card b { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--red); }
.why-card p { margin: 0; font-weight: var(--wt-strong); overflow-wrap: anywhere; }
.why-card small { color: var(--muted); font-size: 12px; }

/* The artist, as a card you can tap. */
.artist-card {
  display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text);
  background: var(--panel); border: var(--bw) solid var(--ink); border-radius: var(--r-panel);
  padding: 10px 14px 10px 10px; box-shadow: var(--sh-md);
}
.artist-card:hover { filter: brightness(1.06); }
.artist-card:active { transform: translateY(var(--press)); box-shadow: none; }
.artist-card img { width: 46px; height: 46px; border-radius: 50%; border: var(--bw-sm) solid var(--ink); background: var(--panel-2); flex: none; }
.artist-card span { display: flex; flex-direction: column; min-width: 0; }
.artist-card b { font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 17px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.artist-card small { color: var(--muted); font-size: 12px; font-weight: var(--wt-strong); }

/* The facts as a grid of little tiles. */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.fact {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
  background: var(--panel); border: var(--bw-sm) solid var(--ink); border-radius: 12px; padding: 8px 10px;
}
.fact-k { font-size: 10px; font-weight: var(--wt-strong); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.fact-v { font-size: 14px; font-weight: var(--wt-strong); font-variant-numeric: tabular-nums; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.loop-side h1 {
  margin: 0; font-family: var(--font-display); font-weight: var(--wt-strong);
  font-size: 30px; line-height: 1.15; overflow-wrap: anywhere;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips a { text-decoration: none; }

/* The score, and the two buttons that move it */
.vote {
  display: flex; align-items: center; gap: 10px;
  background: var(--panel); border: var(--bw) solid var(--ink); border-radius: 999px;
  padding: 8px 12px; box-shadow: var(--sh-lg); width: max-content; max-width: 100%;
}
.vote-btn.like { margin-inline-start: 6px; }
.vote-note { margin: 0; text-align: center; }
.vote-btn {
  width: 46px; height: 46px; border-radius: 50%; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  background: var(--panel-2); border: var(--bw-sm) solid var(--ink); box-shadow: var(--sh-sm);
}
.vote-btn:active:not(:disabled) { transform: translateY(var(--press)); box-shadow: none; }
.vote-btn.on.up { background: var(--green); color: var(--on-green); }
.vote-btn.on.down { background: var(--red); color: var(--strong-fg); }
.vote-score {
  font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 26px;
  min-width: 2.2em; text-align: center; font-variant-numeric: tabular-nums;
  direction: ltr; unicode-bidi: isolate;
}
.vote-note { font-size: 12px; color: var(--muted); }

.row-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.row-actions .pill-btn { height: 38px; padding: 0 14px; font-size: 13px; }
.pill-btn.danger { background: var(--red); color: var(--strong-fg); }
.said { margin: 0; font-weight: var(--wt-strong); }

/* ---------- Artist ---------- */
.who { display: flex; align-items: center; gap: 18px; padding: 14px 0 18px; }
.who-pic {
  width: 92px; height: 92px; border-radius: 50%; flex: none; object-fit: cover;
  border: var(--bw) solid var(--ink); background: var(--panel-2); display: block; box-shadow: var(--sh-md);
}
.who h1 { margin: 0; font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 30px; line-height: 1.1; }
.who p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.who-edit { align-self: flex-start; margin-inline-start: auto; height: 38px; padding: 0 14px; font-size: 13px; text-decoration: none; white-space: nowrap; }

/* ---------- Progress: level, streak, week, badges ---------- */
.progress {
  background: var(--panel); border: var(--bw) solid var(--ink); border-radius: var(--r-panel);
  padding: 14px 16px 16px; box-shadow: var(--sh-lg); margin: 4px 0 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.kw-today {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--pink); color: var(--on-pink); border: var(--bw-sm) solid var(--ink);
  border-radius: 16px; padding: 12px 14px; box-shadow: var(--sh-md);
}
.kw-today.done { background: var(--green); color: var(--on-green); }
.kw-today-words { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.kw-today-label { font-size: 11px; font-weight: var(--wt-strong); text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.kw-today-word { font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 30px; line-height: 1.05; overflow-wrap: anywhere; }
.kw-today-acts { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.kw-today-acts .pill-btn { height: 38px; padding: 0 14px; font-size: 13px; text-decoration: none; }
.kw-go { background: var(--yellow); color: var(--ink); }
.kw-today-done, .kw-today-not { font-weight: var(--wt-strong); font-size: 14px; }
:root[data-theme="newsprint"] .kw-today { background: #000; color: #fff; }

.kw-recent { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.kw-recent::-webkit-scrollbar { display: none; }
.kw-past {
  flex: none; display: flex; flex-direction: column; gap: 1px; text-decoration: none; color: var(--text);
  background: var(--panel-2); border: var(--bw-sm) solid var(--ink); border-radius: 10px; padding: 5px 10px;
}
.kw-past small { font-size: 10px; color: var(--muted); font-weight: var(--wt-strong); }
.kw-past b { font-family: var(--font-display); font-size: 14px; white-space: nowrap; }
.kw-past:hover { background: var(--panel-3); }
.stat-sub { font-size: 11px; color: var(--muted); font-weight: var(--wt-strong); }

.tile-kw {
  position: absolute; bottom: 26px; inset-inline-start: 6px; max-width: calc(100% - 12px);
  font-size: 10px; font-weight: var(--wt-strong); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background: var(--pink); color: var(--on-pink); border: var(--bw-sm) solid var(--ink);
  border-radius: 999px; padding: 2px 7px;
}

.prog-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.level-chip {
  font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 15px;
  background: var(--yellow); color: var(--ink); border: var(--bw-sm) solid var(--ink);
  border-radius: 999px; padding: 4px 14px; box-shadow: var(--sh-sm);
}
:root[data-theme="newsprint"] .level-chip { background: #000; color: #fff; }
.prog-next { font-size: 13px; color: var(--muted); font-weight: var(--wt-strong); }
.prog-bar { height: 14px; border-radius: 999px; background: var(--panel-2); border: var(--bw-sm) solid var(--ink); overflow: hidden; }
.prog-bar i { display: block; height: 100%; background: var(--green); border-radius: 999px; transition: width .4s; }
:root[data-theme="newsprint"] .prog-bar i { background: #000; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat {
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
  background: var(--panel-2); border: var(--bw-sm) solid var(--ink); border-radius: 12px; padding: 9px 11px;
}
.stat-label { font-size: 10px; font-weight: var(--wt-strong); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.stat b { font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 20px; font-variant-numeric: tabular-nums; }
.week { display: flex; gap: 5px; align-items: center; height: 26px; }
.week .dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--ink); background: transparent; flex: none; }
.week .dot.on { background: var(--green); }
.week .dot.today { box-shadow: 0 0 0 2px var(--yellow); }
.week .dot.future { opacity: .35; }
:root[data-theme="newsprint"] .week .dot.on { background: #000; }

.badges-head { font-size: 11px; font-weight: var(--wt-strong); color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; }
.badge-chip {
  font-size: 12px; font-weight: var(--wt-strong); padding: 5px 11px; border-radius: 999px;
  border: var(--bw-sm) dashed var(--ink); color: var(--muted); background: transparent; cursor: default;
}
.badge-chip.earned { border-style: solid; background: var(--yellow); color: var(--ink); box-shadow: var(--sh-sm); }
:root[data-theme="newsprint"] .badge-chip.earned { background: #000; color: #fff; }

/* A page's time, in the corner of its tile. */
.tile-time {
  position: absolute; top: 6px; inset-inline-end: 6px;
  font-size: 10px; font-weight: var(--wt-strong); font-variant-numeric: tabular-nums;
  background: var(--paper); color: var(--ink); border: var(--bw-sm) solid var(--ink);
  border-radius: 999px; padding: 2px 7px; direction: ltr; unicode-bidi: isolate;
}
.wall-item { transition: transform .12s; }
.wall-item:hover { transform: translateY(-2px); }

.group-head {
  margin: 26px 0 10px; font-family: var(--font-display); font-weight: var(--wt-strong);
  font-size: 17px; text-transform: uppercase; letter-spacing: .05em;
}
.wall { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.wall-item {
  display: block; position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: 12px;
  box-shadow: var(--sh-sm);
}
.wall-item img { width: 100%; height: 100%; object-fit: contain; display: block; }
.wall-item:hover { filter: brightness(1.04); }
.wall-cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: 4px 8px;
  font-size: 11px; font-weight: var(--wt-strong);
  background: var(--ink); color: var(--paper);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.badge {
  position: absolute; top: 6px; inset-inline-start: 6px;
  font-size: 10px; font-weight: var(--wt-strong); text-transform: uppercase;
  border: var(--bw-sm) solid var(--ink); border-radius: 999px; padding: 2px 8px;
}
.badge.pending { background: var(--yellow); color: var(--ink); }
.badge.rejected { background: var(--red); color: var(--strong-fg); }

@media (max-width: 640px) {
  /* The header has five things in it and a phone has room for three: the
     wordmark and the "Draw one" text go, the rest wraps rather than spills. */
  .top { display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; }
  .top .wordmark { display: none; }
  .head-right { flex-wrap: wrap; justify-content: flex-end; gap: 6px; min-width: 0; }
  .animate-btn span { display: none; }
  .animate-btn { padding: 0 11px; }
  .head-right .tv-link { padding: 0 12px; height: 38px; font-size: 13px; }
  .loop-side h1 { font-size: 24px; }
  .loop-side { max-width: none; }
  .wall { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
  .who { gap: 12px; }
  .who-pic { width: 70px; height: 70px; }
  .who h1 { font-size: 24px; }
  .who-edit { margin-inline-start: 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .kw-today-word { font-size: 26px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
}


/* ---------- Comments ---------- */
.cm { display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.cm-title { margin: 0 0 8px; font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 20px; }
.cm-section { width: 100%; margin-top: 26px; }
.cm-list { display: flex; flex-direction: column; gap: 12px; }
.cm-row { display: flex; align-items: flex-start; gap: 10px; }
.cm-pic {
  width: 34px; height: 34px; border-radius: 50%; flex: none; object-fit: cover;
  border: var(--bw-sm) solid var(--ink); background: var(--panel-2);
}
.cm-body { flex: 1; min-width: 0; }
.cm-head { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.cm-name { font-weight: var(--wt-strong); color: var(--text); text-decoration: none; }
a.cm-name:hover { text-decoration: underline; }
.cm-when { font-size: 11px; color: var(--muted); font-weight: var(--wt-strong); }
.cm-text { margin: 2px 0 0; line-height: 1.45; overflow-wrap: anywhere; white-space: pre-wrap; }
.cm-like {
  flex: none; display: flex; flex-direction: column; align-items: center; gap: 1px;
  color: var(--muted); font-weight: var(--wt-strong); font-size: 11px; padding: 2px 4px;
}
.cm-heart { font-size: 15px; line-height: 1; }
.cm-like:hover { color: var(--text); }
.cm-like.on { color: var(--pink); }
.cm-top {
  font-size: 10px; font-weight: var(--wt-strong); text-transform: uppercase; letter-spacing: .05em;
  background: var(--yellow); color: var(--ink); border-radius: 999px; padding: 1px 7px;
}
:root[data-theme="newsprint"] .cm-top { background: #000; color: #fff; }
.cm-x {
  flex: none; width: 26px; height: 26px; border-radius: 50%; color: var(--muted);
  font-size: 18px; line-height: 1;
}
.cm-x:hover { background: var(--red); color: var(--strong-fg); }
.cm-state { margin: 0; color: var(--muted); }

.cm-form { display: flex; align-items: flex-end; gap: 8px; }
.cm-input {
  flex: 1; min-width: 0; resize: none; font: inherit; font-weight: var(--wt-body);
  background: var(--panel); color: var(--text);
  border: var(--bw-sm) solid var(--ink); border-radius: 14px; padding: 10px 13px;
  max-height: 120px;
}
.cm-input::placeholder { color: var(--muted); }
.cm-input:disabled { opacity: .7; }
.cm-send {
  flex: none; height: 42px; padding: 0 16px; border-radius: 999px;
  font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 15px;
  background: var(--yellow); color: var(--ink); border: var(--bw-sm) solid var(--ink); box-shadow: var(--sh-sm);
}
.cm-send:disabled { opacity: .45; box-shadow: none; }
:root[data-theme="newsprint"] .cm-send { background: #000; color: #fff; }

/* On a narrow screen the same list rises from the bottom, like a reel's. */
.cm-shade {
  position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,.4);
  display: flex; align-items: flex-end; justify-content: center;
}
.cm-panel {
  width: 100%; max-width: 560px; height: min(76dvh, 620px);
  display: flex; flex-direction: column; gap: 10px;
  background: var(--panel); border: var(--bw) solid var(--ink); border-bottom: 0;
  border-radius: 20px 20px 0 0; padding: 12px 16px 16px;
}
.cm-panel-head { display: flex; align-items: center; justify-content: space-between; }
.cm-panel-head b { font-family: var(--font-display); font-weight: var(--wt-strong); font-size: 20px; }
.cm-close { width: 34px; height: 34px; border-radius: 50%; font-size: 22px; line-height: 1; color: var(--text); }
.cm-close:hover { background: var(--panel-2); }
.cm-panel .cm { flex: 1; min-height: 0; }
.cm-panel .cm-list { flex: 1; overflow-y: auto; padding-inline-end: 4px; }


/* ---------- Terms, privacy and anything else that is mostly words ---------- */
.prose { max-width: 720px; }
.prose h1 {
  margin: 10px 0 14px; font-family: var(--font-display);
  font-weight: var(--wt-strong); font-size: 34px;
}
.prose h2 {
  margin: 32px 0 8px; font-family: var(--font-display);
  font-weight: var(--wt-strong); font-size: 20px;
}
.prose p, .prose li { line-height: 1.65; }
.prose ul { padding-inline-start: 22px; display: flex; flex-direction: column; gap: 6px; }
.prose a { color: var(--text); }
.prose hr { border: 0; border-top: var(--bw-sm) solid var(--ink); margin: 40px 0 10px; }
.lede {
  background: var(--panel); border: var(--bw) solid var(--ink);
  border-radius: var(--r-panel); padding: 14px 16px; box-shadow: var(--sh-lg);
  font-size: 16px;
}
.stamp { color: var(--muted); font-size: 13px; }

.facts-table { border-collapse: collapse; width: 100%; margin: 10px 0; }
.facts-table th, .facts-table td {
  text-align: start; vertical-align: top; padding: 9px 12px;
  border: var(--bw-sm) solid var(--ink); font-weight: var(--wt-body);
}
.facts-table th { width: 38%; font-weight: var(--wt-strong); background: var(--panel); }

.summary { background: var(--panel); border: var(--bw) solid var(--ink);
  border-radius: var(--r-panel); padding: 6px 18px 18px; box-shadow: var(--sh-lg); }
.summary h2 { margin-top: 18px; }

@media (max-width: 560px) {
  .prose h1 { font-size: 27px; }
  .facts-table th, .facts-table td { display: block; width: auto; border-bottom: 0; }
  .facts-table tr { display: block; margin-bottom: 10px; border-bottom: var(--bw-sm) solid var(--ink); }
}

/* ---------- Account settings ---------- */
.settings-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.settings-row input {
  flex: 1 1 220px; min-width: 0;
  background: var(--panel); color: var(--text);
  border: var(--bw-sm) solid var(--ink); border-radius: 10px;
  padding: 11px 13px; font-weight: var(--wt-body); font-size: 15px;
}
.settings-row .pill-btn { height: 45px; }
.prose .who { padding: 6px 0 4px; }
.prose .who h2 { font-size: 22px; }

/* ---------- Artist page: bio, link, tabs and per-loop controls ---------- */
.who { align-items: flex-start; }
.who-side { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.who-bio { margin: 4px 0 0; line-height: 1.5; overflow-wrap: anywhere; }
.who-link {
  align-self: flex-start; color: var(--text); font-weight: var(--wt-strong);
  font-size: 13px; overflow-wrap: anywhere;
}
.who-link:hover { text-decoration: underline; }

.tabs { display: flex; gap: 6px; margin: 6px 0 4px; }
.tab {
  padding: 8px 18px; border-radius: 999px; font-weight: var(--wt-strong);
  border: var(--bw-sm) solid var(--ink); background: var(--panel); color: var(--muted);
}
.tab:hover { color: var(--text); }
.tab.on { background: var(--yellow); color: var(--ink); box-shadow: var(--sh-sm); }
:root[data-theme="newsprint"] .tab.on { background: #000; color: #fff; }

.tile { display: flex; flex-direction: column; gap: 6px; }
.tile-controls { display: flex; gap: 6px; }
.tile-btn {
  flex: 1; padding: 7px 4px; border-radius: var(--r-btn); font-size: 12px;
  font-weight: var(--wt-strong); background: var(--panel); color: var(--text);
  border: var(--bw-sm) solid var(--ink);
}
.tile-btn:hover:not(:disabled) { background: var(--panel-2); }
.tile-btn.danger:hover:not(:disabled) { background: var(--red); color: var(--strong-fg); }
.badge.hidden-badge { background: var(--panel-3); color: var(--text); }
.badge.live-badge { background: var(--green); color: var(--on-green); }
.tile-btn.edit { text-align: center; text-decoration: none; background: var(--yellow); color: var(--ink); }
.tile-btn.edit:hover { filter: brightness(1.06); background: var(--yellow); }

/* ---------- Account settings ---------- */
.set-photo { display: flex; align-items: center; gap: 16px; margin: 14px 0 8px; }
.set-photo-side { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.set-field { display: flex; flex-direction: column; gap: 6px; margin: 16px 0; }
.set-field input, .set-field textarea {
  background: var(--panel); color: var(--text);
  border: var(--bw-sm) solid var(--ink); border-radius: 10px;
  padding: 11px 13px; font: inherit; font-weight: var(--wt-body); width: 100%;
  resize: vertical;
}
.set-field input::placeholder, .set-field textarea::placeholder { color: var(--muted); }
.set-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.set-actions .pill-btn { height: 45px; text-decoration: none; }

.vote-btn.like.on { background: var(--pink); color: var(--on-pink); }
.vote-btn.like.on .ico { fill: currentColor; }
