 body {
     position:relative;
 }

/* alert */

.alert {
  color: #2c2d2e;
  background-color: #d37f32;
  align-items: center;
  gap: 9px;
  width: 100%;
  max-width: 724px;
  margin-top: 0;
  margin-bottom: 16px;
  padding: 12px 16px;
  display: flex;
  position: relative;
}

@media screen and (width <= 450px) {
  .alert {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.alert > * {
  margin-top: 0;
  margin-bottom: 0;
}

.alert > * + * {
  margin-top: 16px;
}

.alert__header {
  color: inherit;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.alert__header + * {
  margin-top: 0;
}

.alert__icon {
  color: #214288;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.alert__close.close {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.alert--warning {
  color: #2c2d2e;
  background-color: #fdf0d2;
}

.alert--warning .alert__icon {
  color: #d37f32;
}

.alert--danger {
  color: #2c2d2e;
  background-color: #ffc8c8;
}

.alert--danger .alert__icon {
  color: #e64646;
}

.alert--danger a {
  color: inherit;
  text-decoration: underline;
}

.alert--danger a:hover, .alert--danger a:focus {
  text-decoration: none;
}

.alert--success {
  color: #2c2d2e;
  background-color: #c8dbff;
}

.alert--success .alert__icon {
  color: #214288;
}

.alert--success a {
  color: inherit;
  text-decoration: underline;
}

.alert--success a:hover, .alert--success a:focus {
  text-decoration: none;
}

.alert__text-bold {
  font-weight: 600;
}

.alert__link {
  color: #2c2d2e;
  cursor: pointer;
  text-decoration: underline;
}

.alert__link:hover, .alert__link:focus {
  color: #2c2d2e;
  text-decoration: none;
}

/* post */

.post {
  align-items: center;
  gap: 8px;
  max-width: 290px;
  margin-bottom: 20px;
  display: flex;
}

.post .post__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.post .post__details {
  color: #2c2d2e;
  flex-direction: column;
  display: flex;
}

.post .post-details__title {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.post .post-details__text {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

/* list */

.list.list-unordered, .list.list-ordered {
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}

.list .list-unordered__content, .list .list-ordered__content {
  line-height: inherit;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  margin: 0;
  padding-left: 28px;
  display: flex;
}

@media screen and (width <= 450px) {
  .list .list-unordered__content, .list .list-ordered__content {
    gap: 2px;
  }
}

.list .list-unordered__title, .list .list-ordered__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (width <= 450px) {
  .list .list-unordered__title, .list .list-ordered__title {
    font-size: 16px;
    line-height: 20px;
  }
}

.list .list-unordered__item, .list .list-ordered__item {
  color: #2c2d2e;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  list-style: none;
}

@media screen and (width <= 450px) {
  .list .list-unordered__item, .list .list-ordered__item {
    font-size: 16px;
    line-height: 20px;
  }
}

.list .list-unordered__item {
  position: relative;
}

.list .list-unordered__item:before {
  content: "";
  vertical-align: middle;
  background-color: #2c2d2e;
  border-radius: 4px;
  width: 4px;
  height: 4px;
  margin-right: 12px;
  display: inline-block;
  position: absolute;
  top: 12px;
  left: -16px;
}

@media screen and (width <= 450px) {
  .list .list-unordered__item:before {
    top: 10px;
  }
}

.list.list-unordered--news {
  background-color: #ebedf0;
  margin-bottom: 32px;
  padding: 16px;
}

@media screen and (width <= 450px) {
  .list.list-unordered--news {
    margin-bottom: 20px;
    padding: 12px;
  }
}