/* Bio Section */
#userTitle,
#userBio {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: calc(100% - 24px);
  margin: 12px auto !important;
  text-align: center;
  box-sizing: border-box;
}

#userTitle {
  color: #666;
  font-weight: 500;
  padding: 0 12px;
  margin: 26px 0 0px 0 !important;
}

#userBio {
  display: block !important;
  color: rgb(144, 119, 60) !important;
  font-style: normal !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  margin: 18px 12px 8px 12px !important;
  line-height: 1.5;
  height: auto;
  overflow: visible;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-align: left !important;
  padding: 0 2px !important;
  max-height: calc(1.5em * 3);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

#userBio.expanded {
  height: auto;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: 500px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.profile-bio-wrapper {
  position: relative;
  width: 100%;
  margin: 16px 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.profile-bio {
  color: rgb(144, 119, 60);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  margin: 0;
  padding: 0 2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(100% - 4px);
  box-sizing: border-box;
  word-wrap: break-word;
  height: calc(1.5em * 3);
  margin: 18px 12px !important;
  max-height: calc(1.5em * 3);
}

.profile-bio.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  height: auto;
  max-height: 500px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-show-more {
  display: none;
  border: none;
  background: none;
  color: rgb(144, 119, 60);
  font-size: 11px;
  font-weight: 600 !important;
  cursor: pointer;
  padding: 0;
  margin: 8px 0 0 12px;
  text-align: left;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: underline;
  position: relative;
  left: 2px;
  bottom: 0px;
  opacity: 0;
  transform: translateY(-4px);
  font-family: inherit;
}

.bio-show-more.visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bio-show-more:hover {
  opacity: 0.8;
}

/* Info Box */
.info-box {
  background-color: rgba(245, 222, 36, 0.1);
  border-left: 2px solid #f5de24;
  padding: 8px 12px;
  margin: 8px 12px 16px;
  font-size: 10px;
  color: #666666;
  line-height: 1.4;
  border-radius: 0 3px 3px 0;
}

.info-box strong {
  color: #454554;
  font-weight: 500;
}
