.sce-columns {
  display: grid;
  grid-gap: 2rem;
  margin: 2rem 0;
  grid-template-columns: repeat(2, 1fr);
  clear: both;
}

.sce-columns .sce-column > :not(.sce-highlighted) {
  text-align: justify
}

.sce-authors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: 1rem 0;
}

.sce-author {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 5px;
}

.sce-author-img {
  display: block;
  width: 50px;
  height: 50px;
  background: #eee center center no-repeat;
  border-radius: 50%;
  background-size: cover;
  border: 1px solid #ddd;
  min-width: 40px;
  min-height: 40px
}

.sce-author-name {
  font-size: 16px;
  font-weight: 500;
  color: #45949c;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sce-highlighted {
  background: rgba(107, 187, 197, .4);
  border: 1px solid rgba(0, 0, 0, .2);
  padding: 10px;
  min-width: 40%;
  max-width: 40%;
  border-radius: 8px;
  box-shadow: 0 5px 5px 0 rgba(0,0,0,.03);
}

.sce-highlighted.alignnone {
  min-width: unset;
  max-width: unset;
  margin: 1em 0;
  padding: 10px;
}
.sce-highlighted .sce-highlighted-content > ul{
  padding-inline-start: 0;
}

.sce-highlighted-content {
  padding: 0 10px;
}

.sce-highlighted-title {
  border: 0;
  font-weight: 700;
  font-size: 1.4em;
  border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: 0.5em;
    margin-bottom: 1rem;
}

.sce-quote {
  margin: 2rem 0;
  position: relative;
  padding: 10px;
  background: #f0f0f0;
  border-radius: 8px
}

.sce-quote:after {
  position: absolute;
  content: '”';
  top: 0;
  right: 0;
  font-size: 80px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 1;
  opacity: .5
}

.sce-quote .sce-quote-footer::before {
  content: "\2014\00A0"
}

.sce-quote-author-bio {
  font-size: .8em;
  color: rgba(0, 0, 0, .8)
}

.publicationsPage .publication-content .sce-author-bio p, .sce-author-bio {
  font-size: 16px;
  font-style: italic
}

.sce-author-bio p:last-child {
  margin: 0
}
.sce-highlighted ul,
.sce-highlighted ol{
    margin-bottom: 35px;
}
.sce-highlighted ul:last-child,
.sce-highlighted ol:last-child{
    margin-bottom: 0;
}
.sce-highlighted-content {
    font-size: .9em;
}
body:not(.rtl) .sce-highlighted-content{
    text-align: justify;
}
.sce-highlighted-title{
    font-size: 1.1em;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width: 999px) {
  .sce-columns {
    display: block
  }

  .sce-highlighted {
    max-width: unset !important;
    max-height: unset !important;
    margin-bottom: 1rem !important;
  }

  .sce-authors {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px
  }

  .sce-author-name {
    width: 220px
  }

  .sce-columns .sce-column {
    margin-bottom: 1rem
  }

  .sce-columns .sce-column:last-child {
    margin-bottom: 0
  }
}
