
.author-page {
  color: var(--ink);
  background: #fff;
}

.author-hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  background: #eaf5fb;
}

.author-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 88%,rgba(255,103,48,.34),transparent 28%),
    radial-gradient(circle at 88% 12%,rgba(74,177,255,.52),transparent 30%),
    linear-gradient(135deg,#e4f3fb,#f6fafc 50%,#fff4ee);
}

.author-hero__shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px),var(--page-max));
  min-height: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.author-hero__content {
  width: min(calc(100% - 80px),1320px);
  margin: auto;
  padding: 72px 0 90px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 86px;
  align-items: center;
}

.author-hero__copy h1 {
  margin: 18px 0 0;
  color: #050505;
  font-size: clamp(64px,5.2vw,90px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 400;
}

.author-hero__role {
  margin: 22px 0 0;
  color: #1462cf;
  font-size: 17px;
  font-weight: 600;
}

.author-hero__lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: #405a63;
  font-size: 19px;
  line-height: 1.68;
}

.author-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.author-hero__portrait {
  width: 330px;
  height: 330px;
  margin: 0;
  padding: 10px;
  border-radius: 50%;
  background:
    linear-gradient(135deg,rgba(255,255,255,.9),rgba(255,255,255,.55));
  box-shadow: 0 25px 60px rgba(16,55,79,.14);
}

.author-hero__portrait img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.author-articles {
  padding: 110px 0 125px;
  background: #f6f9fb;
}

.author-final-cta h2 {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .author-hero,
  .author-hero__shell {
    min-height: auto;
  }

  .author-hero__shell {
    width: calc(100% - 40px);
  }

  .author-hero__content {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .author-hero__portrait {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 720px) {
  .author-hero__shell {
    width: calc(100% - 30px);
  }

  .author-hero__content {
    padding-top: 50px;
  }

  .author-hero__copy h1 {
    font-size: 8vw;
  }

  .author-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .author-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .author-hero__portrait {
    width: 220px;
    height: 220px;
  }
}
