/* Center the closing phrase in the existing lower white space of the Artist Bio. */
#about.about {
  position: relative;
}

#about .bio-closing-line {
  position: absolute;
  left: 50%;
  bottom: 95px;
  width: min(88vw, 920px);
  margin: 0;
  transform: translateX(-50%);
  color: #171512;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.4vw, 48px);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.035em;
  text-align: center;
}

@media (max-width: 760px) {
  #about .bio-closing-line {
    bottom: 55px;
    width: min(88vw, 500px);
    font-size: clamp(22px, 8vw, 34px);
    line-height: 1.05;
  }
}
