/* Recent placements list (shared/js/placements.js). Light by default; add
   .pl-list--dark on night pages. Two columns on wide screens. */
.pl-list { --pl-ink: var(--rd-ink); --pl-muted: var(--rd-ink-2); --pl-line: rgba(15, 15, 15, .14); --pl-hover: rgba(255, 255, 255, .6); --pl-accent: var(--rd-violet-700);
  list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(20px, 3vw, 44px); border-top: 1px solid var(--pl-line); }
.pl-list--dark { --pl-ink: var(--rd-beige); --pl-muted: rgba(246, 243, 233, .72); --pl-line: rgba(246, 243, 233, .16); --pl-hover: rgba(246, 243, 233, .05); --pl-accent: var(--rd-violet); }
.pl-list--one { grid-template-columns: minmax(0, 1fr); }
.pl { border-bottom: 1px solid var(--pl-line); }
.pl__link { display: grid; grid-template-columns: 112px minmax(0, 1fr) auto; gap: 14px; align-items: center; min-height: 56px; padding: 10px 4px; color: var(--pl-ink); text-decoration: none; transition: background-color .2s var(--rd-ease); }
.pl__link:hover { background: var(--pl-hover); }
.pl__mark { display: flex; align-items: center; min-width: 0; }
.pl__logo { height: 22px; width: auto; max-width: 104px; object-fit: contain; object-position: left center; filter: brightness(0); }
.pl-list--dark .pl__logo { filter: brightness(0) invert(1); }
.pl__word { font: 600 15px/1.15 var(--rd-font-ui); letter-spacing: 0; overflow-wrap: anywhere; }
.pl__role { font-size: 14.5px; line-height: 1.35; color: var(--pl-muted); }
.pl__n { display: inline-block; margin-left: 6px; padding: 1px 7px; border-radius: 999px; border: 1px solid var(--pl-line); font-size: 12px; color: var(--pl-ink); white-space: nowrap; }
.pl__go { font-size: 13px; font-weight: 500; color: var(--pl-accent); white-space: nowrap; opacity: 0; transform: translateX(-4px); transition: opacity .2s, transform .2s var(--rd-ease); }
.pl__link:hover .pl__go, .pl__link:focus-visible .pl__go { opacity: 1; transform: none; }
@media (hover: none) { .pl__go { opacity: 1; transform: none; } }
@media (max-width: 759px) { .pl-list { grid-template-columns: minmax(0, 1fr); } .pl__link { grid-template-columns: 96px minmax(0, 1fr); } .pl__go { display: none; } }
