:root {
  --bg-primary-dark: #36425c;
  --bg-primary: #edf6f9;
  --bg-secondary: #edf6f9;
  --color-text: #14213d;
  --border: #c8dce3;
  --border-dark: #004e68;
  --bg-card: transparent;
  --bg-checkbox: transparent;
  --border-checkbox: #14213d;
  --bg-vote-btn: transparent;
  --bg-checked: transparent;
  --border-checked: #fff;
  --icon-check: #14213d;
  --gray-highlight: #14213d;
  --light-text: #fcfcfc;
  --project-info-title: #14213d;
  --checked: #14213d;
  --comment-bg: rgb(255, 255, 255, 0.1);
  color-scheme: light;
}

.dark-theme {
  --bg-primary-dark: #14213d;
  --bg-primary: #14213d;
  --bg-secondary: #02111f;
  --bg-card: var(--bg-primary-dark);
  --border-dark: var(--bg-primary-dark);
  --color-text: #fcfcfc;
  --border: #2b3750;
  --border-checkbox: #2b3750;
  --bg-checkbox: #fff;
  --bg-checked: #0047a0;
  --border-checked: #0047ac;
  --bg-vote-btn: #0047a0;
  --checked: #0047a0;
  --icon-check: #fff;
  --gray-highlight: #cfcfcf;
  --light-text: #fcfcfc;
  --project-info-title: #9d9d9d;
  --comment-bg: rgb(0, 71, 172, 0.1);
  color-scheme: dark;
}

.last-updates-section {
  margin-bottom: 60px;
}
.last-updates-section .top-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .last-updates-section .top-line {
    margin-bottom: 20px;
  }
}
.last-updates-section .top-line a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.last-updates-section .top-line .all-link:hover {
  color: #cd2e3a;
}
.last-updates-section .top-line .title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 24px;
}
@media (min-width: 1280px) {
  .last-updates-section .top-line .title {
    font-size: 36px;
  }
}