.updates {
  padding: 40px;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 32px;
}

@supports not selector(::-webkit-scrollbar) {
  .updates {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.05);
  }
}
.updates::-webkit-scrollbar {
  width: 4px;
}

.updates::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

.updates::-webkit-scrollbar-track {
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.05);
}

.updates p {
  margin: 0;
}

.updates__title {
  color: var(--Colors-Text-Headings, #333);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  padding-left: 16px;
}

.updates__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  overflow: auto;
  padding-right: 20px;
}

.updates__item {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--colors-stroke-blocks-20, rgba(149, 130, 181, 0.2));
  background: var(--Colors-Backgound-Pure-White, #fff);
}

.updates__item--new {
  border-color: var(--Colors-System-alerts-Green, #15e38a);
}

.updates__item-header {
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.updates__item-info {
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--Colors-System-alerts-Green, #15e38a);
  text-align: center;
  color: var(--Colors-Backgound-Pure-White, #fff);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.updates__item-info--new {
  background: var(--Colors-System-alerts-Green, #15e38a);
}

.updates__item-date,
.updates__item-version {
  color: var(--Colors-Text-Subtext, #777);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.updates__item-date span,
.updates__item-version span {
  color: var(--Colors-Text-Text, #505050);
  margin-left: 4px;
}

.updates__item-date {
  margin-left: auto;
}

.updates__item-content h3,
.updates__item-content h4,
.updates__item-content h5,
.updates__item-content h6 {
  color: var(--Colors-Text-Headings, #333);
}

.updates__item-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}

.updates__item-content p,
.updates__item-content ul,
.updates__item-content ol {
  margin: 0;
  color: var(--Colors-Text-Text, #505050);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.updates__item-content ul,
.updates__item-content ol {
  padding-left: 22px;
}

.updates__item-content ul li {
  list-style: disc;
}

.updates__item-content ol li {
  list-style: decimal;
}
