.personal-info {
  background-color: #fff;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,.1);
  border-radius: 8px;
  display: block;
  align-items: center;
  padding: 30px;
  position: relative;
  /* optional */
  max-width: 650px;
  margin: -10px auto 36px auto;
  /* end optional */
}
.personal-info:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10.5px 9px 10.5px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -9px;
  left: 42px;
}
.personal-info:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  width: 33px;
  height: 27px;
  margin: auto;
  /*background: url('../assets/comasImage.png') 50% no-repeat;*/
}
.personal-info .author-name {
  font-size: 1.17em;
  color: #232323;
  font-weight: 600;
  border-bottom: 1px solid #dedede;
  padding-bottom: 3px;
  margin-bottom: 10px;
  margin-left: 120px;
}

.personal-info__avatar {
  border-radius: 100%;
  padding: 4px;
  border: 1px solid #da3d2c;
  width: 100px;
  height: 100px;
  min-width: 100px;
  margin-right: 20px;
  float: left;
  margin-top: 10px;
}
.personal-info__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  margin: auto;
}
.personal-info__info {
  width: 100%;
}
.personal-info__info .author-text {
  font-style: italic;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}
@media screen and (max-width: 665px) {
  .personal-info__avatar {
    width: 75px;
    height: 75px;
    min-width: 75px;
    margin-right: 10px;
  }
  .personal-info__info .author-name {
    margin-left: 90px;
  }
}
@media screen and (max-width: 520px) {
  .personal-info__info {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# style fixes for AMP
--------------------------------------------------------------*/
html[amp] .personal-info__avatar {
    width: 75px;
    height: 75px;
    min-width: 75px;
    margin-left: 15px;
    margin-right: 30px;
}

html[amp] .personal-info__avatar amp-img {
    margin: 0px;
}

html[amp] .personal-info__info .author-name {
    margin-left: 120px;
}
