.description {
  @include flex-direction(column);
  flex: 3;
  align-self: stretch;
  position: relative;
  margin-bottom: 1rem;
  @include min(laptop) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.continueRead {
  position: absolute;
  right: 0;
  bottom: 0;
}

.contReadText {
  text-decoration: underline;
}

.biography {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #515156;
  margin-bottom: 1.6rem;
  @include min(laptop) {
    margin-bottom: 0.8rem;
  }

  &.showReadMore {
    max-height: 88px;
    min-height: 66px;
    overflow: hidden;
    transition: max-height 0s ease-out;
    cursor: pointer;

    @include max(mobile) {
      max-height: 110px;
    }

    &.open {
      max-height: 2000px;
      transition: max-height 0s ease-in;
      cursor: default;
      pointer-events: none;
    }
  }

  p {
    display: inline-block;
  }

  a {
    display: initial;
  }
}

.readMore {
  @include flex-align(center, flex-start);
  color: #165AF8;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.1rem;
  gap: 0.8rem;
  text-transform: capitalize;
}

.templateTwo {
  @include min(tablet) {
    padding-left: 14.5rem;
  }
}