.seo-text-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seo-text-content {
  margin: 0 auto 2rem auto;
  max-width: 100%;
  display: block;
}

.seo-text-content.seo-text-collapsed {
  overflow: hidden;
  max-height: 6em;
  position: relative;
}

.seo-text-content.seo-text-collapsed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2em;
  background: linear-gradient(to bottom, transparent, white);
}

.seo-text-toggle {
  position: absolute;
  bottom: -2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border: 2px solid #da8e48;
  border-radius: 50%;
}

.seo-text-toggle i {
  font-size: 1.6em;
  color: #da8e48;
}

.seo-text-toggle.expanded i {
  transform: rotate(180deg);
}

.seo-text-toggle:hover {
  background-color: #da8e48;
}

.seo-text-toggle:hover i {
  color: #fff;
}

.seo-text-wrapper .container,
.seo-text-content {
  margin-left: auto;
  margin-right: auto;
}
