.about-author-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr;
  gap: 32px;
  align-items: center;
  margin: 0 0 52px;
  padding: 28px;
  border: 1px solid rgba(196, 128, 106, .16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(196, 128, 106, .10), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(251, 238, 233, .72));
  box-shadow: 0 18px 48px rgba(40, 24, 12, .08);
  overflow: hidden;
}

.about-author-card::after {
  content: '';
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(125, 155, 132, .16);
  border-radius: 999px;
  pointer-events: none;
}

.about-author-photo-wrap {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--coral-xlt);
  box-shadow: 0 14px 34px rgba(40, 24, 12, .16);
}

.about-author-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: inherit;
  pointer-events: none;
}

.about-author-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-author-copy {
  position: relative;
  z-index: 1;
}

.about-author-kicker {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-btn);
}

.about-author-copy h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
}

.about-author-copy p {
  margin: 0 0 12px;
  font-family: var(--zh);
  font-size: .96rem;
  line-height: 1.9;
  color: var(--ink-mid);
}

.about-author-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(196, 128, 106, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  color: var(--coral-btn);
  font-family: var(--zh);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}

.about-author-link:hover {
  border-color: rgba(196, 128, 106, .42);
  background: rgba(255, 255, 255, .82);
  color: var(--coral);
  transform: translateY(-1px);
}

.about-author-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .about-author-card {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
    padding: 22px;
    border-radius: 18px;
  }

  .about-author-photo-wrap {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .about-author-card {
    margin-left: -2px;
    margin-right: -2px;
    padding: 18px;
  }
}
