/* YLC Author Box Styles */
.ylc-author-box {
  display: flex;
  align-items: flex-start;
  background: #F8F8F8;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  max-width: 100%;
  font-family: "Roboto", Arial, sans-serif;
  border: 1px solid #EDEDED;
  position: relative;
}
.ylc-author-box svg {
    position: absolute;
    top: 0;
    right: 0;
}
.ylc-author-avatar-wrap {
  flex: 0 0 auto;
  margin-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ylc-author-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f5f5;
  border: 3px solid #F6F6F6;
}
.ylc-author-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ylc-author-name {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 16px;
}
.ylc-author-desc {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  color: #2C2C2C;
  line-height: 24px;
}
.ylc-author-avatar-wrap img {
    margin-bottom: 0 !important;
}
@media (max-width: 600px) {
  .ylc-author-box {
    flex-direction: column;
    padding: 24px;
  }
  .ylc-author-avatar-wrap {
    margin-right: 0;
    align-items: center;
    margin: 0 auto 24px;
  }
  .ylc-author-info {
    text-align: center;
  }
}
