.author-card {
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px 0 rgba(39, 97, 146, 0.15);
  background-color: #ffffff;
}
.author-card--main {
  padding: 1.25rem;
  border-radius: 0.875rem;
  text-align: center;
}

.author .author__h2 {
  font-size: 1.125rem;
  line-height: 1.3;
}

.author .author__h3 {
  font-size: 1rem;
  line-height: 1.3;
}
.author .author__h3--icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.author .author__h3--icon > span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.author .list li::before {
  left: 0.5rem;
}

.author .list--regular-red li::before {
  background-color: #E84F35;
}

.author .list-credits > li {
  margin-bottom: 0;
  padding-left: 0;
}

.author .list-credits > li a {
  display: block;
  padding-block: 0.75rem;
  color: #172A3A;
}
.author .list-credits > li a:hover {
  text-decoration: none;
}
.author .list-credits > li a::after {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1912_2098)'%3E%3Cpath d='M21.7662 16L8.4329 16' stroke='%23172A3A' stroke-width='1.33333' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.0996 22.6666L23.0996 16L15.0996 9.33329' stroke='%23172A3A' stroke-width='1.33333' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1912_2098'%3E%3Crect width='32' height='32' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  transition: right 0.3s ease-in-out;
}
.author .list-credits > li a:hover::after {
  right: 0.5rem;
}

.author-card__img {
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}

.author-card__border {
  margin-block: 1.5rem;
  border-bottom: 2px solid #DEE7F3;
}

.author-card--main .author-card__border {
  margin-block: 1.125rem;
  border-bottom: 2px solid #F0F5FA;
}

.author-card .author-card__linkedin {
  display: inline-flex;
  align-items: center;
  margin-top: 0.125rem;
  padding: 0.375rem 0.625rem 0.375rem 0.375rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  background-color: #007EBB;
}
.author-card .author-card__linkedin:hover {
  text-decoration: none;
}

.author-card .author-card__linkedin span {
  padding-left: 0.5rem;
  line-height: 1;
  color: #ffffff;
}

@media (max-width: 575px) {
  .author .author__h3--icon {
    align-items: flex-start;
  }
}