.as-content {
  width: 100%;
  max-width: 1000px;
  margin: 18px auto 24px;
  padding: 0;
  color: #fff;
  box-sizing: border-box;
}

.as-content,
.as-content * {
  box-sizing: border-box;
}

.as-content__inner {
  padding: 8px 4px;
  border: 0;
  background: transparent;
}

.as-content__more {
  max-height: none;
  overflow: visible;
  transition: max-height 0.35s ease;
}

.as-content--collapsed .as-content__more {
  max-height: 0;
  overflow: hidden;
}

.as-content__title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
}

.as-content__subtitle {
  margin: 14px 0 7px;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.as-content__text {
  margin: 0 0 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
}

.as-content__text:last-child {
  margin-bottom: 0;
}

.as-content__text a {
  color: #9b51e0;
  font-weight: 700;
  text-decoration: none;
}

.as-content__text a:hover {
  color: #b172eb;
  text-decoration: none;
}

.as-content__intro {
  margin-bottom: 0;
}

.as-content__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 8px 0 0;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.as-content__toggle:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

.as-content__toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.as-content__inner {
  display: flex;
  flex-direction: column;
}

.as-content__toggle {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .as-content {
    max-width: 100%;
    margin: 16px auto 20px;
    padding: 0;
  }

  .as-content__inner {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 8px 16px;
  }

  .as-content__title {
    text-align: left;
  }

  .as-content__text {
    font-size: 15px;
    line-height: 1.5;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .as-content__inner {
    background: transparent;
  }
}
