.margLetterHolder {
   background:#e9e9e9; 
   border-radius:1rem;
}
.margLetterHolder .bb-secondary-text {
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.4rem);
}
.bb-about-director-bio-wrapper {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  order: 3;
}
.content-wrapper {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  max-height: 30.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  position: relative;
}
.bb-about-text-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10.5rem;
  background-image: linear-gradient(
    to top,
    #e9e9e9 0%,
    transparent 100%
  );
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  pointer-events: none;
}
.bb-about-expand-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
  background-color: transparent;
  cursor: pointer;
  border-style: none;
  padding: 0;
  color: var(--bb-color-primary-grey);
  font-weight: 700;
  font-size: 1rem;
}
.bb-about-expand-btn-full {
  width: 100%;
  justify-content: space-between;
  margin-top: 1rem;
}
.bb-about-bio-text-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bb-about-bio-text-stack p {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.54px;
}
.bb-mobile-spacer {
  height: 2.5rem;
}
@media (min-width: 48rem) {
  .bb-mobile-spacer {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 872px) {
  .margLetterHolder {
    margin-top:4.5rem;
  }
}