.side_padding {
  padding: 0 30px;
}

@media only screen and (min-width: 880px) {
  .side_padding {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1390px) {
  .side_padding {
    padding: 0 clamp(30px, 20vw, 270px);
  }
}
.article__preface {
  margin: 30px 0;
  text-wrap: balance;
}

@media only screen and (min-width: 500px) {
  .article__preface {
    margin: 30px 25px;
    text-wrap: initial;
  }
}
.about {
  padding-top: 42px;
  padding-bottom: 64px;
  color: #fff;
}
.about__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 30px;
}
.about__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 10px;
  background: linear-gradient(189.86deg, #3E85C2 16.73%, #3094E9 74.12%);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}
.about__link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.about__link__icon {
  width: 22px;
  height: 22px;
}
.about .bmc-btn {
  font-size: medium;
  line-height: normal;
  height: auto;
  min-width: auto;
  padding: 10px 12px;
  background: linear-gradient(189.86deg, #3E85C2 16.73%, #3094E9 74.12%);
  border-radius: 10px;
}
.about .bmc-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.about__notice {
  margin-top: 16px;
  padding: 14px 16px;
  max-width: 780px;
  border-radius: 10px;
}
.about__notice--success {
  background: rgba(46, 204, 113, 0.16);
  border: 1px solid rgba(46, 204, 113, 0.42);
}
.about__notice--error {
  background: rgba(255, 24, 0, 0.2);
  border: 1px solid rgba(255, 23, 0, 0.42);
}
.about__form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  max-width: 780px;
}
.about__form__field {
  display: grid;
  gap: 8px;
}
.about__form__field input,
.about__form__field textarea {
  width: 100%;
  background: #252525;
  border-radius: 10px;
}
.about__form__field textarea {
  min-height: 180px;
  resize: vertical;
}
.about__form__submit {
  justify-self: start;
  min-height: 44px;
}