.document-section {
  margin-bottom: 2.5rem;
}

.document-section__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.document-section__body {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.document-section__first {
  margin-bottom: 0;
}

.document-section__blur-wrap {
  position: relative;
  margin-top: 0.5rem;
  min-height: 140px;
}

.document-section__rest {
  padding: 12px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  max-height: 200px;
  overflow: hidden;
}

.document-section__blur-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(
    to bottom,
    rgb(255 255 255 / 40%) 0%,
    rgb(255 255 255 / 95%) 50%,
    rgb(255 255 255 / 100%) 100%
  );
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.document-section__promo {
  background: url('../img/blur.png');
  height: 618px;
  align-content: center;
  background-size: cover;
}

.document-section__promo--inner {
  display: flex;
  justify-content: space-between;
  margin: auto 14px;
  padding: 24px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgb(0 0 0 / 6%);
}

.document-section__promo-title {
  font-weight: 600;
  font-size: 20px;
}

.document-section__promo-subtitle {
  margin: 0;
  flex: 1 1 200px;
  font-size: 18px;
  color: #333;
}

.document-section__promo-btn {
  margin: unset;
  max-width: 200px;
}

@media only screen and (width <= 760px) {
  .document-section {
    margin-bottom: 1.5rem;
  }

  .document-section__title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .document-section__body {
    font-size: 0.95rem;
  }

  .document-section__promo {
    height: auto;
    min-height: 280px;
    padding: 16px;
  }

  .document-section__promo--inner {
    flex-direction: column;
    gap: 16px;
    margin: 12px;
    padding: 16px;
  }

  .document-section__promo-title {
    font-size: 17px;
  }

  .document-section__promo-subtitle {
    font-size: 15px;
    flex: 1 1 auto;
  }

  .document-section__promo-btn {
    max-width: none;
    width: 100%;
  }

  .document-section__promo-btn span {
    height: 44px;
  }
}
