.cpw-author-box {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 48px 0 24px;
  padding: 32px 36px;
  border: 1px solid var(--cpw-color-border-subtle, oklch(90% 0.015 260));
  border-radius: 8px;
  background: var(--cpw-color-sky-wash, oklch(96% 0.01 260));
  box-shadow: 0 1px 3px rgb(31 34 40 / 0.1);
  font-family: var(--cpw-font-body);
}

.cpw-author-box--content-width {
  max-width: none;
}

.cpw-author-box .cpw-author-box__eyebrow {
  margin: 0 0 16px;
  color: var(--cpw-color-text-muted, oklch(42% 0.018 260));
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cpw-author-box .cpw-author-box__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cpw-author-box .cpw-author-box__avatar {
  display: block;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px #fff, 0 4px 12px rgb(31 34 40 / 0.18);
}

.cpw-author-box .cpw-author-box__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #00a5ec 14%, #fff);
  color: var(--cpw-color-text-blue, #0072b5);
  font-size: 20px;
  font-weight: 700;
}

.cpw-author-box .cpw-author-box__content {
  min-width: 0;
}

.cpw-author-box .cpw-author-box__name {
  margin: 0;
  color: var(--cpw-color-footer, #00283b);
  font-family: var(--cpw-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.cpw-author-box .cpw-author-box__role {
  margin: 4px 0 0;
  color: var(--cpw-color-text-blue, #0072b5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cpw-author-box .cpw-author-box__bio {
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--cpw-color-footer, #00283b) 80%, #fff);
  font-size: 16px;
  line-height: 1.6;
}

.cpw-author-box .cpw-author-box__bio :where(p, ul, ol, blockquote) {
  margin: 0 0 1em;
}

.cpw-author-box .cpw-author-box__bio > :first-child {
  margin-top: 0;
}

.cpw-author-box .cpw-author-box__bio > :last-child {
  margin-bottom: 0;
}

.cpw-author-box .cpw-author-box__bio a {
  color: var(--cpw-color-text-blue, #0072b5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cpw-author-box .cpw-author-box__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.cpw-author-box .cpw-author-box__socials a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--cpw-color-text-blue, #0072b5);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.cpw-author-box .cpw-author-box__socials a:hover,
.cpw-author-box .cpw-author-box__socials a:focus-visible {
  color: var(--cpw-color-text-blue-hover, #006faf);
}

.cpw-author-box .cpw-author-box__socials svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

@media (width <= 600px) {
  .cpw-author-box {
    padding: 24px;
  }

  .cpw-author-box .cpw-author-box__row {
    gap: 16px;
  }

  .cpw-author-box .cpw-author-box__avatar {
    width: 64px;
    height: 64px;
  }
}
