:root {
  --changelog-ink: #252734;
  --changelog-muted: #687080;
  --changelog-line: #dfe4ea;
  --changelog-green: #9dcc32;
  --changelog-red: #e85d5d;
  --changelog-surface: #f6f8f3;
}

body.changelog-page {
  margin: 0;
  background: #fff;
  color: var(--changelog-ink);
  font-family: "Open Sans", sans-serif;
}

.changelog-page a {
  text-decoration: none;
}

.changelog-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.changelog-brand img {
  display: block;
  width: 100px;
  height: auto;
}

.changelog-header nav,
.changelog-footer nav {
  display: flex;
  gap: 10px;
}

.changelog-header nav a {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.changelog-header nav a:hover,
.changelog-header nav a:focus-visible {
  border-color: var(--changelog-green);
  background: rgba(157, 204, 50, 0.12);
  color: #fff;
}

.changelog-header,
.changelog-shell {
  box-sizing: border-box;
  width: calc(100% - 40px);
}

.changelog-shell {
  margin: 0 auto;
}

/* Match the regional websites' Bootstrap container widths and gutters. */
@media (min-width: 576px) {
  .changelog-header, .changelog-shell {
    width: 100%;
    max-width: 540px;
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media (min-width: 768px) {
  .changelog-header, .changelog-shell { max-width: 720px; }
}
@media (min-width: 992px) {
  .changelog-header, .changelog-shell { max-width: 960px; }
}
@media (min-width: 1200px) {
  .changelog-header, .changelog-shell { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .changelog-header, .changelog-shell { max-width: 1320px; }
}

.changelog-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 112px;
  background:
    radial-gradient(circle at 84% 15%, rgba(232, 93, 93, 0.22), transparent 30%),
    radial-gradient(circle at 14% 90%, rgba(157, 204, 50, 0.18), transparent 32%),
    #292b38;
  color: #fff;
}

.changelog-hero::after {
  position: absolute;
  right: -8%;
  bottom: -88px;
  left: -8%;
  height: 120px;
  border-radius: 50% 50% 0 0;
  background: #fff;
  content: "";
}

.changelog-eyebrow,
.release-status {
  margin: 0 0 14px;
  color: var(--changelog-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.changelog-eyebrow i {
  margin-right: 7px;
}

.changelog-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.changelog-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.release-index {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.release-index-label {
  margin-right: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.release-index-link {
  display: inline-flex;
  min-height: 38px;
  padding: 7px 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.release-index-link strong {
  color: #fff;
  font-size: 14px;
}

.release-index-link span {
  color: rgba(255, 255, 255, 0.62);
}

.release-index-link small {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--changelog-green);
  color: #20221b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.release-index-link:hover,
.release-index-link:focus-visible {
  border-color: var(--changelog-green);
  background: rgba(157, 204, 50, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.release-index-link:focus-visible {
  outline: 2px solid rgba(199, 255, 61, 0.65);
  outline-offset: 3px;
}

.changelog-content {
  padding: 72px 0 90px;
}

.release-card {
  position: relative;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--changelog-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(37, 39, 52, 0.08);
}

.release-card + .release-card {
  margin-top: 30px;
}

.release-previous {
  box-shadow: 0 14px 42px rgba(37, 39, 52, 0.055);
}

.release-previous .release-marker {
  background: var(--changelog-line);
}

.release-previous .release-status {
  color: var(--changelog-muted);
}

.release-marker {
  position: absolute;
  top: 44px;
  left: -7px;
  width: 14px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--changelog-green), var(--changelog-red));
}

.release-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.release-heading h2 {
  margin: 0;
  color: var(--changelog-ink);
  font-family: "Raleway", sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
}

.release-heading h2 span {
  color: var(--changelog-muted);
  font-size: 0.46em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-heading time {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--changelog-surface);
  color: var(--changelog-muted);
  font-size: 13px;
  font-weight: 600;
}

.release-summary {
  width: 100%;
  max-width: none;
  margin: 24px 0 38px;
  color: var(--changelog-muted);
  font-size: 17px;
  line-height: 1.75;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.release-grid section {
  padding: 24px;
  border-radius: 16px;
  background: var(--changelog-surface);
}

.release-grid section:nth-child(2) {
  background: #fbf5f5;
}

.release-grid h3 {
  display: flex;
  margin: 0 0 16px;
  align-items: center;
  gap: 9px;
  color: var(--changelog-ink);
  font-family: "Raleway", sans-serif;
  font-size: 17px;
}

.release-grid h3 i {
  color: #7ba21f;
}

.release-grid section:nth-child(2) h3 i {
  color: var(--changelog-red);
}

.release-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--changelog-muted);
}

.release-grid li {
  margin: 0 0 10px;
  line-height: 1.55;
}

.release-grid li:last-child {
  margin-bottom: 0;
}

.release-back-to-top {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 7px;
  color: var(--changelog-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.release-back-to-top:hover,
.release-back-to-top:focus-visible {
  color: #668817;
}

.release-back-to-top:focus-visible {
  outline: 2px solid rgba(157, 204, 50, 0.5);
  outline-offset: 4px;
}

.changelog-start {
  display: flex;
  margin: 30px 0 0;
  padding: 28px 32px;
  align-items: flex-start;
  gap: 20px;
  border-left: 3px solid var(--changelog-green);
  border-radius: 0 14px 14px 0;
  background: #f8faf5;
}

.changelog-start > i {
  color: #7ba21f;
  font-size: 26px;
}

.changelog-start h2 {
  margin: 0 0 6px;
  color: var(--changelog-ink);
  font-family: "Raleway", sans-serif;
  font-size: 19px;
}

.changelog-start p {
  margin: 0;
  color: var(--changelog-muted);
  line-height: 1.65;
}

.changelog-footer {
  display: flex;
  padding: 24px max(20px, calc((100% - 1120px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #14151c;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.changelog-footer p {
  margin: 0;
}

.changelog-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.changelog-footer a:hover,
.changelog-footer a:focus-visible {
  color: var(--changelog-green);
}

@media (max-width: 800px) {
  .release-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .changelog-header {
    min-height: 76px;
  }

  .changelog-header nav a {
    padding: 7px 10px;
    font-size: 11px;
  }

  .changelog-hero {
    padding: 124px 0 90px;
  }

  .release-index {
    align-items: stretch;
  }

  .release-index-label {
    width: 100%;
    margin-bottom: 2px;
  }

  .release-index-link {
    justify-content: center;
  }

  .release-heading,
  .changelog-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .release-marker {
    top: 34px;
  }

  .changelog-start {
    padding: 24px;
  }
}
