/* ==========================================================================
   /changelog only: the release list the page builds after fetching the
   appcast. Everything else on the page comes from site.css.
   ========================================================================== */

.cl-list { padding: 44px 0 32px; }
@media (max-width: 640px) { .cl-list { padding: var(--sp-5) 0 var(--sp-4); } }

.rel {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 44px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 76px;
}
.rel:first-child { padding-top: 0; border-top: 0; }
.rel-side { position: sticky; top: 80px; align-self: start; }
.rel-ver { display: inline-block; font-size: 34px; font-weight: 700; letter-spacing: -0.035em; line-height: 1.1; }
.rel-ver:hover { color: var(--accent); }
.rel-pill {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: #fff;
  background: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 6px;
}
.rel-date { display: block; margin-top: 8px; color: var(--muted); font-size: 15px; }
.rel-meta { margin-top: 6px; color: var(--muted-2); font-size: 13px; line-height: 1.5; }
.rel-body { padding-top: 6px; }
.rel-head { margin-bottom: 16px; color: var(--muted-2); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.rel-head + .rel-notes { margin-top: 0; }
.rel-notes { display: flex; flex-direction: column; gap: 14px; list-style: none; }
.rel-notes + .rel-head { margin-top: 28px; }
.rel-notes li { position: relative; padding-left: 26px; color: var(--muted); font-size: 16.5px; line-height: 1.6; text-wrap: pretty; }
.rel-notes li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}
.rel-empty { color: var(--muted-2); font-size: 16px; }

@media (max-width: 760px) {
  .rel { grid-template-columns: 1fr; gap: var(--sp-3); }
  .rel-side { position: static; }
  .rel-ver { font-size: 29px; }
  .rel-notes li { font-size: 15.5px; }
}

/* Loading and failure states */
.cl-state { padding: var(--sp-5) 0 8px; color: var(--muted); font-size: 16px; line-height: 1.6; text-align: center; }
.cl-state a { color: var(--txt); border-bottom: 1px solid var(--line-strong); }
.skel { display: grid; grid-template-columns: 238px minmax(0, 1fr); gap: 32px; }
.skel div { border-radius: 8px; background: var(--glass-2); animation: pulse 1.4s ease-in-out infinite; }
.skel .s-side { height: 120px; }
.skel .s-body { height: 180px; }
@keyframes pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.28; } }
@media (max-width: 760px) { .skel { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .skel div { animation: none; } }
