/* V63 — Author page reading comfort
   Keeps both author headings understated and gives the biography/note
   a quiet, book-like reading scale without affecting other pages. */

body[data-page="author"] .paper-section {
  padding-top: clamp(28px, 3.2vw, 42px) !important;
  padding-bottom: clamp(38px, 4vw, 54px) !important;
}

body[data-page="author"] .reading-shell {
  max-width: 820px;
  gap: 14px;
}

body[data-page="author"] .reading-card {
  padding: clamp(24px, 3.2vw, 36px) !important;
}

body[data-page="author"] .reading-card p {
  font-size: clamp(.98rem, .94rem + .12vw, 1.04rem) !important;
  line-height: 1.68 !important;
}

body[data-page="author"] .author-about-title {
  font-size: clamp(1.24rem, 1.17rem + .28vw, 1.42rem) !important;
  line-height: 1.25;
  letter-spacing: .01em;
  margin: 0 0 16px !important;
  font-weight: 600;
}

body[data-page="author"] .author-note h2 {
  font-size: clamp(1.45rem, 1.28rem + .65vw, 1.78rem) !important;
  line-height: 1.22;
  letter-spacing: .01em;
  margin-bottom: 18px !important;
}

body[data-page="author"] .wait-line {
  font-size: 1.06rem !important;
  line-height: 1.55 !important;
}

@media (max-width: 680px) {
  body[data-page="author"] .paper-section {
    padding-top: 20px !important;
    padding-bottom: 34px !important;
  }

  body[data-page="author"] .reading-shell {
    width: min(100% - 24px, 820px);
    gap: 10px;
  }

  body[data-page="author"] .reading-card {
    padding: 20px 18px !important;
  }

  body[data-page="author"] .reading-card p {
    font-size: .98rem !important;
    line-height: 1.64 !important;
  }

  body[data-page="author"] .author-about-title {
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
  }

  body[data-page="author"] .author-note h2 {
    font-size: 1.42rem !important;
    margin-bottom: 14px !important;
  }
}

/* V74 — Quiet author-site link beneath the biography. */
body[data-page="author"] .author-site-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  margin-top: 7px;
  padding: 7px 16px;
  border: 1px solid rgba(199, 155, 78, .46);
  border-radius: 999px;
  background: rgba(199, 155, 78, .035);
  color: var(--tghl-gold-soft, #d7b67a);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

body[data-page="author"] .author-site-link:hover {
  border-color: rgba(215, 182, 122, .72);
  background: rgba(199, 155, 78, .075);
  color: #ead3a1;
}

body[data-page="author"] .author-site-link:focus-visible {
  outline: 2px solid var(--tghl-gold, #c79b4e);
  outline-offset: 3px;
}

@media (max-width: 680px) {
  body[data-page="author"] .author-site-link {
    margin-top: 6px;
    min-height: 34px;
    padding: 7px 14px;
    font-size: .76rem;
  }
}

