/* ===========================================================================
   Nominations — "Albums we missed" voteable leaderboard + signpost
   Mounted on the 1–100 list page. Editorial aesthetic, matches the site.
   =========================================================================== */

/* ---- Signpost in the list header ---- */
.lp-nom-signpost {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; padding: 11px 18px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: 999px; cursor: pointer; text-align: left;
  transition: border-color 0.15s, transform 0.1s;
}
.lp-nom-signpost:hover { border-color: var(--accent); transform: translateY(-1px); }
.lp-nom-signpost strong { font-weight: 600; }
.lp-nom-signpost-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
  animation: nomPulse 2.4s ease-out infinite;
}
@keyframes nomPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 55%, transparent); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ---- Section ---- */
.nom {
  max-width: 880px; margin: 88px auto 0; padding: 0 24px;
  scroll-margin-top: 90px;
}
.nom-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.nom-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.nom-title {
  font-family: var(--serif); font-weight: 400; line-height: 1.05;
  font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.02em; color: var(--ink);
  margin: 0 0 16px;
}
.nom-lede {
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 24px;
}
.nom-cta {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--paper); background: var(--ink); border: 1px solid var(--ink);
  padding: 12px 24px; border-radius: 999px; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.nom-cta:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

.nom-empty {
  text-align: center; font-family: var(--sans); font-size: 15px;
  color: var(--ink-mute); padding: 40px 0; font-style: italic;
}

/* ---- Leaderboard ---- */
.nom-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
.nom-row {
  display: grid; grid-template-columns: 44px 56px 1fr auto;
  gap: 16px; align-items: center;
  background: var(--paper); padding: 16px 18px;
}
.nom-rank {
  font-family: var(--serif); font-size: 26px; color: var(--ink-mute);
  text-align: center; line-height: 1;
}
.nom-row:nth-child(1) .nom-rank { color: var(--accent); }
.nom-cover, .nom-result-cover, .nom-confirm-cover {
  width: 56px; height: 56px; overflow: hidden; border-radius: 3px;
  background: var(--paper-2); flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 12px 24px -16px rgba(0,0,0,.4);
}
.nom-cover img, .nom-result-cover img, .nom-confirm-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.nom-cover-blank { width: 100%; height: 100%; background: var(--paper-2); }
.nom-meta { min-width: 0; }
.nom-album {
  font-family: var(--serif); font-size: 19px; color: var(--ink);
  line-height: 1.2; letter-spacing: -0.01em;
}
.nom-artist { font-family: var(--sans); font-size: 14px; color: var(--ink-2); margin-top: 2px; }
.nom-pitch {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ink-2); margin-top: 6px; line-height: 1.4;
}
.nom-by {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute); margin-top: 6px;
}
.nom-vote { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.nom-up {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer;
  background: var(--paper-2); border: 1px solid var(--rule); color: var(--ink-mute);
  transition: all 0.13s;
}
.nom-up:hover { border-color: var(--accent); color: var(--accent); }
.nom-up.on { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.nom-score { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink); }

/* ---- Nominate modal ---- */
.nom-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(23, 19, 15, 0.55); backdrop-filter: blur(3px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 8vh 16px 16px; overflow-y: auto;
}
.nom-modal-card {
  width: 100%; max-width: 520px; background: var(--paper);
  border: 1px solid var(--rule); border-radius: 16px; padding: 24px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.nom-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.nom-modal-head h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0; color: var(--ink); }
.nom-modal-x {
  background: none; border: 0; font-size: 26px; line-height: 1;
  color: var(--ink-mute); cursor: pointer; padding: 0 4px;
}
.nom-modal-x:hover { color: var(--ink); }
.nom-search input {
  width: 100%; font-family: var(--sans); font-size: 15px;
  padding: 12px 14px; color: var(--ink); background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: 9px; outline: none;
}
.nom-search input:focus { border-color: var(--accent); }
.nom-search-results { margin-top: 12px; display: flex; flex-direction: column; gap: 1px; max-height: 46vh; overflow-y: auto; }
.nom-result {
  display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center;
  background: var(--paper-2); border: 0; padding: 9px 11px; cursor: pointer;
  text-align: left; border-radius: 8px; transition: background 0.12s;
}
.nom-result:hover { background: var(--rule); }
.nom-result-cover { width: 48px; height: 48px; }
.nom-result-t { font-family: var(--serif); font-size: 16px; color: var(--ink); line-height: 1.2; }
.nom-result-a { font-family: var(--sans); font-size: 13px; color: var(--ink-2); margin-top: 2px; }

/* confirm step */
.nom-confirm-album { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.nom-confirm-cover { width: 72px; height: 72px; }
.nom-change {
  margin-top: 6px; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: 13px; color: var(--accent); text-decoration: underline;
}
.nom-pitch-label { display: block; font-family: var(--sans); font-size: 13px; color: var(--ink-2); margin-bottom: 6px; }
.nom-pitch-label span { color: var(--ink-mute); }
.nom-pitch-input {
  width: 100%; font-family: var(--sans); font-size: 14px; line-height: 1.5;
  padding: 10px 12px; color: var(--ink); background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: 9px; outline: none; resize: vertical;
  margin-bottom: 16px;
}
.nom-pitch-input:focus { border-color: var(--accent); }
.nom-submit {
  width: 100%; font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--paper); background: var(--ink); border: 0;
  padding: 13px; border-radius: 9px; cursor: pointer; transition: background 0.15s;
}
.nom-submit:hover { background: var(--accent); }
.nom-submit:disabled { opacity: 0.6; cursor: default; }
.nom-note { margin-top: 12px; font-family: var(--sans); font-size: 13px; color: var(--accent); text-align: center; }

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .nom { margin-top: 56px; }
  .nom-row { grid-template-columns: 30px 48px 1fr auto; gap: 11px; padding: 13px 12px; }
  .nom-cover { width: 48px; height: 48px; }
  .nom-rank { font-size: 20px; }
  .nom-album { font-size: 16px; }
  .nom-up { width: 34px; height: 34px; }
  .nom-modal { padding: 4vh 10px 10px; }
}

/* ===========================================================================
   Three-way engagement fork (replaces the single Make Your Ten banner)
   =========================================================================== */
.fork {
  margin: 8px 0 32px; padding: 22px 24px;
  background: var(--ink); color: var(--paper);
  border-radius: 14px;
}
.fork-head { text-align: center; max-width: 620px; margin: 0 auto 16px; }
.fork-head .kick {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: color-mix(in oklab, var(--paper) 55%, transparent);
  margin-bottom: 6px;
}
.fork-head h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--paper);
}
.fork-head h3 em { font-style: italic; color: var(--accent); }
.fork-head p {
  font-family: var(--sans); font-size: 14px; line-height: 1.45;
  color: color-mix(in oklab, var(--paper) 78%, transparent); margin: 0;
}
.fork-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fork-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  text-align: left; cursor: pointer;
  padding: 14px 16px; border-radius: 11px;
  background: color-mix(in oklab, var(--paper) 7%, transparent);
  border: 1px solid color-mix(in oklab, var(--paper) 16%, transparent);
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.fork-card:hover { background: color-mix(in oklab, var(--paper) 12%, transparent); border-color: var(--accent); transform: translateY(-2px); }
.fork-card--feature { background: color-mix(in oklab, var(--accent) 16%, transparent); border-color: color-mix(in oklab, var(--accent) 45%, transparent); }
.fork-card--feature:hover { background: color-mix(in oklab, var(--accent) 24%, transparent); }
.fork-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px; margin-bottom: 2px;
  background: color-mix(in oklab, var(--paper) 12%, transparent);
  color: var(--paper);
}
.fork-ico svg { width: 18px; height: 18px; }
.fork-card--feature .fork-ico { background: var(--accent); }
.fork-card-t {
  font-family: var(--serif); font-size: 17px; line-height: 1.2;
  color: var(--paper); letter-spacing: -0.01em;
}
.fork-card-d {
  font-family: var(--sans); font-size: 12.5px; line-height: 1.4;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}
.fork-go {
  margin-top: auto; padding-top: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
}
@media (max-width: 760px) {
  .fork { padding: 18px 16px; }
  .fork-cards { grid-template-columns: 1fr; }
  .fork-card { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .fork-ico { margin-bottom: 0; }
  .fork-card-t { flex: 1; min-width: 0; }
  .fork-card-d { flex-basis: 100%; }
  .fork-go { margin-top: 0; flex-basis: 100%; padding-top: 4px; }
}

/* ===========================================================================
   List discussion thread
   =========================================================================== */
.ld { max-width: 760px; margin: 72px auto 0; padding: 0 24px; scroll-margin-top: 90px; }
.ld-head { text-align: center; max-width: 560px; margin: 0 auto 28px; }
.ld-composer { margin-bottom: 32px; }
.ld-composer textarea, .ld-reply-box textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; line-height: 1.55;
  padding: 14px 16px; color: var(--ink); background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: 11px; outline: none; resize: vertical;
}
.ld-composer textarea:focus, .ld-reply-box textarea:focus { border-color: var(--accent); }
.ld-post {
  margin-top: 10px; font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--paper); background: var(--ink); border: 0;
  padding: 11px 22px; border-radius: 9px; cursor: pointer; transition: background 0.15s;
}
.ld-post:hover { background: var(--accent); }
.ld-post:disabled { opacity: 0.5; cursor: default; }
.ld-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ld-c {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 12px; padding: 16px 18px;
}
.ld-body { min-width: 0; }
.ld-meta { margin-bottom: 6px; }
.ld-name {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700; color: var(--ink);
}
.ld-text { font-family: var(--body-serif); font-size: 15px; line-height: 1.55; color: var(--ink-2); white-space: pre-wrap; }
.ld-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
/* like / dislike — mirrors the deep-dive comment voting */
.ld-votes { display: inline-flex; align-items: center; gap: 8px; }
.ld-vote {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px; cursor: pointer;
  background: transparent; border: 1px solid var(--rule); color: var(--ink-mute);
  transition: all 0.13s;
}
.ld-vote.up:hover, .ld-vote.up.on { border-color: var(--accent); color: var(--accent); }
.ld-vote.down:hover, .ld-vote.down.on { border-color: var(--ink); color: var(--ink); }
.ld-score { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--ink); min-width: 14px; text-align: center; }
.ld-reply-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-mute);
}
.ld-reply-btn:hover { color: var(--accent); }
.ld-reply-box { margin-top: 12px; }
.ld-replies { list-style: none; margin: 14px 0 0; padding: 0 0 0 16px; border-left: 2px solid var(--rule); }
.ld-replies .ld-c { background: var(--paper-2); border: none; border-radius: 0; padding: 12px 14px; }
@media (max-width: 640px) {
  .ld { margin-top: 52px; }
  .ld-c { padding: 14px 14px; }
}

/* Your Turn fork: now two cards (Make Your Ten removed) — balance as a centred 2-up */
.fork-cards { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) { .fork-cards { grid-template-columns: 1fr; } }

/* ===========================================================
   BallotSection (components/BallotSection.jsx) — the weekly Deep Dive ballot.
   Lives here rather than styles.css because it shares the .nom-* vocabulary's
   home; variant "page" is /vote, "embed" is inside /deep-dives.
   =========================================================== */
.bal { border-top: 1px solid var(--rule); background: var(--paper); }
.bal--page { padding-top: calc(66px + max(0px, env(safe-area-inset-top, 0px) - 12px)); border-top: 0; }
.bal-inner { max-width: var(--content-w); margin: 0 auto; padding: 40px 40px 56px; }
.bal--embed .bal-inner { padding: 44px 40px 52px; }

.bal-head { border-bottom: 1px solid var(--rule); padding-bottom: 22px; }
.bal-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.bal-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
  animation: bal-pulse 2.4s ease-out infinite; }
@keyframes bal-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 55%, transparent); }
  70% { box-shadow: 0 0 0 9px color-mix(in oklab, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 0%, transparent); }
}
@media (prefers-reduced-motion: reduce) { .bal-pulse { animation: none; } }
.bal-h { font-family: var(--serif); font-weight: 400; font-size: clamp(25px, 3.4vw, 40px);
  line-height: 1.06; letter-spacing: -0.015em; margin: 12px 0 0; max-width: 26ch; }
.bal-lede { font-family: var(--body-serif); font-size: 16.5px; line-height: 1.55;
  color: var(--ink-2); margin: 14px 0 0; max-width: 66ch; }
.bal-msg { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--ink); background: var(--paper-2); border: 1px solid var(--rule);
  display: inline-block; padding: 7px 12px; margin-top: 14px; }

.bal-list { list-style: none; padding: 0; margin: 8px 0 0; }
.bal-row { display: grid; grid-template-columns: 64px 1fr auto; gap: 18px;
  align-items: center; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.bal-row.is-mine { background: color-mix(in oklab, var(--accent) 4%, transparent); }
.bal-row.is-winner .bal-title { color: var(--accent); }
.bal-cover { width: 64px; height: 64px; background: var(--paper-2);
  border: 1px solid var(--rule); overflow: hidden; }
.bal-cover img { display: block; width: 64px; height: 64px; object-fit: cover; }
.bal-title { font-family: var(--serif); font-size: clamp(18px, 2vw, 22px); line-height: 1.16; }
.bal-artist { font-family: var(--mono); font-size: 11px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink-2); margin-top: 5px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.bal-tag { font-size: 9.5px; letter-spacing: 0.1em; padding: 2px 7px;
  border: 1px solid var(--rule); color: var(--ink-2); background: var(--paper-2);
  text-transform: uppercase; }
.bal-pitch { font-family: var(--body-serif); font-size: 15px; line-height: 1.5;
  color: var(--ink-2); margin: 9px 0 0; max-width: 58ch; }
.bal-bar { height: 3px; background: var(--rule); margin-top: 11px; max-width: 300px; }
.bal-bar i { display: block; height: 3px; background: var(--accent); transition: width .4s ease; }

.bal-act { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.bal-count { font-family: var(--mono); font-size: 19px; color: var(--ink); line-height: 1; }
.bal-count span { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2); display: block; margin-top: 4px; }
.bal-btn { padding: 10px 17px; min-height: 44px; cursor: pointer; white-space: nowrap;
  border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; }
.bal-btn:hover { background: var(--accent); border-color: var(--accent); }
/* Mid-flight and genuinely-unavailable buttons fade. MUST stay above the --mine
   rules: .bal-btn[disabled] and .bal-btn--mine[disabled] have equal specificity
   (0,2,0), so source order decides, and with this rule last it won and rendered a
   cast vote at 55% — the faded, did-it-work look this change exists to remove. */
.bal-btn[disabled] { opacity: 0.55; cursor: default; }
/* Your vote, once cast: the AFFIRMED state, and the loudest thing in the row. It
   used to be the quietest — a transparent outline sitting beside four solid-black
   "Vote" buttons — so the records you had not chosen out-shouted the one you had.
   Filled accent instead, and inert (disabled in the JSX), because re-casting the
   same vote changes nothing. Full opacity is restored deliberately: this button is
   disabled because it is DONE, not because it is unavailable.
   Colour is the deep-accent fill already used for .mc-confirm-yes in styles.css
   rather than --accent itself: --accent behind this 12px label measures 3.91:1,
   under the 4.5:1 AA needs at this size, and this file's siblings are held to that
   (see the --ink-mute note on .td). The deeper fill measures 5.48:1 and reads more
   like a committed choice than a still-clickable accent anyway. */
.bal-btn--mine,
.bal-btn--mine[disabled] { background: oklch(0.48 0.15 28); border-color: oklch(0.42 0.15 28);
  color: oklch(0.98 0.01 90); opacity: 1; cursor: default; }
/* The rows you did not pick, after you have voted. A ghost button: still clearly
   actionable (you may move your vote until Wednesday) but no longer competing with
   the pick you have already made. */
.bal-btn--move { background: transparent; color: var(--ink-2); border-color: var(--rule); }
.bal-btn--move:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.bal-won { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); }

.bal-foot { font-family: var(--mono); font-size: 11.5px; line-height: 1.6;
  letter-spacing: 0.03em; color: var(--ink-2); margin-top: 20px; }
.bal-link { background: none; border: 0; padding: 0; cursor: pointer; color: var(--ink);
  text-decoration: underline; font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.03em; }
.bal-link:hover { color: var(--accent); }

/* The signpost: a strip at the top of /deep-dives, and after a dive essay. The old ballot
   sat below the archive grid and drew 5 nominations in 8 weeks, so this exists to stop it
   being buried a second time. */
.bal-signpost { border: 1px solid var(--accent); background: color-mix(in oklab, var(--accent) 6%, var(--paper));
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 22px; padding: 15px 20px; margin: 0 0 30px; }
.bal-signpost-t { font-family: var(--serif); font-size: clamp(17px, 1.9vw, 21px); line-height: 1.2; }
.bal-signpost-s { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  color: var(--ink-2); margin-top: 5px; }
.bal-signpost-cta { padding: 11px 18px; min-height: 44px; cursor: pointer; white-space: nowrap;
  border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-decoration: none; }
.bal-signpost-cta:hover { background: var(--accent); border-color: var(--accent); }

@media (max-width: 860px) {
  .bal-inner, .bal--embed .bal-inner { padding: 30px 20px 40px; }
  .bal-row { grid-template-columns: 48px 1fr; gap: 14px; }
  .bal-cover, .bal-cover img { width: 48px; height: 48px; }
  .bal-act { grid-column: 1 / -1; flex-direction: row; align-items: center;
    justify-content: space-between; text-align: left; }
  .bal-count span { display: inline; margin: 0; }
}
/* "Written · ready to publish" — a finished essay waiting for a slot, as opposed to a
   suggestion we would have to write. The two win different things, so they look different. */
.bal-tag--ready { border-color: var(--accent); color: var(--accent);
  background: color-mix(in oklab, var(--accent) 8%, var(--paper)); }
/* Clamp the pitch. A member's nomination pitch is a sentence; a written dive's is its full
   excerpt, ~600 characters, which made each row 300px tall and left the 64px cover looking
   lost in it. Three lines is enough to sell a record — the rest is what the dive page is for. */
.bal-pitch { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; }
