.neon-blue {
  color: #0055FF;
  background: #D6EBFF;
}

.sorbus {
  color: #CC5702;
  background: #FFF3D3;
}

.coral-red {
  color: #ED1527;
  background: #FFF1F2;
}

.resource-author {
  background: #E3E8EF;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media only screen and (min-width: 992px) {
  .resource-author {
    padding-top: calc(48px + 24 * (100vw - 992px) / 608);
    padding-bottom: calc(48px + 24 * (100vw - 992px) / 608);
  }
}
@media only screen and (min-width: 1600px) {
  .resource-author {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media only screen and (max-width: 767px) {
  .resource-author {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.resource-author__card {
  display: flex;
  align-items: stretch;
  gap: 32px;
  max-width: 840px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .resource-author__card {
    flex-direction: column;
    gap: 24px;
  }
}
.resource-author__photo {
  flex: 0 0 182px;
  align-self: center;
  width: 182px;
  height: 182px;
  border-radius: 50%;
  background: #0055FF;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .resource-author__photo {
    flex-basis: 140px;
    width: 140px;
    height: 140px;
  }
}
.resource-author__photo-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.resource-author__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
  align-self: stretch;
  border-left: 1px solid #48AEFF;
  padding-left: 32px;
}
@media only screen and (max-width: 767px) {
  .resource-author__details {
    width: 100%;
    border-left: 0;
    border-top: 1px solid #48AEFF;
    padding-left: 0;
    padding-top: 24px;
  }
}
.resource-author__name {
  margin: 0;
  color: #0055FF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.resource-author__role {
  margin: 0;
  color: #4B5565;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.resource-author__bio {
  margin: 8px 0 0;
  color: #4B5565;
  font-size: 16px;
  line-height: 1.6;
}
.resource-author__bio p {
  margin: 0;
}
.resource-author__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.resource-author__linkedin:hover, .resource-author__linkedin:focus {
  opacity: 0.85;
  transform: translateY(-1px);
}
.resource-author__linkedin-icon {
  display: block;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}