.dyntu-box {
  --dyntu-preview: 120px;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dyntu-text {
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  box-sizing: border-box;
}

.dyntu-box.is-folded .dyntu-text {
  max-height: var(--dyntu-preview, 120px);
}

.dyntu-box.is-open .dyntu-text {
  max-height: none;
}

.dyntu-text p {
  margin: 0 0 1em;
}

.dyntu-text p:last-child {
  margin-bottom: 0;
}

.dyntu-fade {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.dyntu-box.has-fade.is-folded .dyntu-fade {
  display: block;
}

.dyntu-box.is-open .dyntu-fade {
  opacity: 0;
  pointer-events: none;
}

.dyntu-actions {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  text-align: left;
}

.dyntu-box .dyntu-toggle,
.dyntu-box .dyntu-toggle:hover,
.dyntu-box .dyntu-toggle:focus,
.dyntu-box .dyntu-toggle:active,
.dyntu-box .dyntu-toggle:focus-visible {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  background-color: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #1a2240;
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.4;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.dyntu-box .dyntu-toggle:hover {
  color: #000000;
}

.dyntu-box.is-no-toggle .dyntu-actions,
.dyntu-box.is-no-toggle .dyntu-fade {
  display: none;
}

.dyntu-box.is-no-toggle .dyntu-text {
  max-height: none !important;
  overflow: visible;
}
