h2 {
  font-weight: 700;
  margin-bottom: 24px;
}
p a {
  color: #007fff;
  text-decoration: underline;
  white-space: nowrap;
}

.img-content {
  width: 100%;
  margin-bottom: 24px;
}
.img-content img {
  width: 100%;
  user-select: none;
}
.label {
  display: block;
  margin-top: 0.8rem;
  line-height: 150%;
  opacity: 0.5;
  font-size: var(--fz_xs);
}
.important {
  border-left: 4px solid #007fff;
  padding-left: 10px;
}
.box-shadow {
  box-shadow: 0px 2px 5px 0px #0000005b;
}

.button-link {
  display: block;
  background: #007fff;
  border-bottom: 3px solid #000;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  width: 80%;
  padding: 15px;
  margin: 20px auto;
  transition: border-bottom 0.5s ease; /* Добавляем плавную анимацию фона */
}

.button-link:hover {
  background: #e11229;
  color: #fff;
}


.button-link:hover {
  border-bottom: 3px solid #ff6c90;
}

.replay {
  padding-left: 20px;
  border-left: 2px solid #ac998d;
}

.text-exp {
  padding-left: 20px;
  border-left: 2px solid #007fff;
  margin-bottom: 20px;
}

.day {
  margin-bottom: 0;
}



.reg__list {
  margin: 0 auto;
  font-size: var(--title-size);
  display: flex
;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  list-style-type: none;
  counter-reset: list-counter;
  width: 100%;
  padding-left: 0;
}

.reg__item {
  counter-increment: list-counter;
  border: 1px solid #007fff;
  box-shadow: 0 1px 1px 0 #007fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  line-height: 25px;
  font-size: 1.2rem;
}

.reg__item::before {
  content: counter(list-counter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  line-height: 34px;
  text-align: center;
  font-weight: bold;
  margin-right: 10px;
  border: 3px solid #007fff;
  color: #007fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  aspect-ratio: 1 / 1;
}