﻿:root {
  --background-light: #F7F8FA;
  --eyebrow: #6366F1;
  --black: #000000;
  --grey-1: #6B7280;
  --white: #FFFFFF;
  --grey-2: #E5E7EB;
  --version: #111827;
  --latest-pill: #EEF2FF;
  --latest-pill-text: #4F46E5;
  --date: #9CA3AF;
  --new: #059669;
  --improved: #2563EB;
  --fixed: #D97706;
  --updates: #4B5563;
}
body {
  background-color: var(--background-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.back-navigation {
  font-weight: 700;
  text-decoration: none;
  margin: 10px 20px;
  color: var(--black);
}
.updates .eyebrow {
  color: var(--eyebrow);
  font-weight: 700;
  text-transform: uppercase;
}
.updates h1 {
  text-align: left;
  color: var(--black);
}
.updates p {
  color: var(--grey-1);
  font-size: 1.1em;
}
.updates .update {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.updates .update .update-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.updates .update .update-header .version {
  display: flex;
  align-items: center;
  gap: 10px;
}
.updates .update .update-header .version h2 {
  margin: 0;
  font-size: 24px;
  color: var(--version);
}
.updates .update .update-header .version .latest {
  background: var(--latest-pill);
  color: var(--latest-pill-text);
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.75em;
  font-weight: 700;
}
.updates .update .update-header .date {
  color: var(--date);
  font-size: 1em;
  white-space: nowrap;
}
.updates .update .category {
  margin-top: 22px;
}
.updates .update .category .category-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.updates .update .category .category-title.new {
  color: var(--new);
}
.updates .update .category .category-title.improved {
  color: var(--improved);
}
.updates .update .category .category-title.fixed {
  color: var(--fixed);
}
.updates .update .category ul {
  margin: 0;
  padding-left: 20px;
  color: var(--updates);
}
.updates .update .category ul li {
  /*margin: 8px 0px;*/
  /*line-height: 1.5;*/
}
footer {
  text-align: center;
  color: var(--date);
  font-size: 0.85em;
  padding-top: 20px;
}