/* =============================================================
   /about/ pages — author bio + hub
   ============================================================= */

/* Breadcrumbs */
.author-crumbs {
  padding-block: 18px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.author-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: .85rem;
  color: var(--muted);
  list-style: none;
}
.author-crumbs li + li::before {
  content: "›";
  margin-right: 10px;
  color: var(--brass);
}
.author-crumbs a { color: var(--terracotta-hov); font-weight: 600; }
.author-crumbs a:hover { text-decoration: underline; }

/* Hero */
.author-hero {
  padding-block: clamp(48px, 7vw, 88px);
  background: var(--cream-soft);
}
.author-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .author-hero-grid { grid-template-columns: 1fr; }
}
.author-name {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 4px 0 14px;
  color: var(--espresso);
}
.author-tagline {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 56ch;
  line-height: 1.55;
}
.author-credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.author-cred-pill {
  padding: 6px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--espresso);
}
.author-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.author-hero-media {
  position: relative;
}
.author-hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.author-hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  font-size: .9rem;
  line-height: 1.3;
}
.author-hero-badge strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--espresso);
}
.author-hero-badge span { color: var(--muted); font-size: .82rem; }

/* The story body */
.author-story {
  padding-block: clamp(56px, 7vw, 96px);
}
.author-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 980px) {
  .author-story-grid { grid-template-columns: 1fr; }
}
.author-story-body h2 {
  font-size: clamp(1.85rem, 2.4vw + 1rem, 2.6rem);
  margin-bottom: 24px;
}
.author-story-body h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--espresso);
}
.author-story-body p,
.author-story-body ol li {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--espresso);
  margin: 0 0 18px;
}
.author-story-body ol {
  list-style: decimal;
  padding-left: 22px;
}
.author-story-body a:not(.btn) {
  color: var(--terracotta-hov);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.author-story-body em {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta-hov);
}

/* Sidebar */
.author-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 980px) {
  .author-sidebar { position: static; }
}
.author-sidebar-card {
  padding: 22px 22px 18px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.author-sidebar-card > strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--espresso);
}
.author-sidebar dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
}
.author-sidebar dt {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.author-sidebar dd {
  margin: 0;
  font-size: .92rem;
  color: var(--espresso);
}
.author-sidebar-quote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta-hov);
  margin: 0;
  line-height: 1.45;
}

/* Credentials */
.author-credentials { background: var(--cream-soft); padding-block: clamp(56px, 7vw, 96px); }
.author-cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.author-cred-card {
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.author-cred-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--espresso);
}
.author-cred-card p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.author-cred-card a {
  color: var(--terracotta-hov);
  text-decoration: underline;
}
.author-cred-meta {
  font-size: .8rem !important;
  color: var(--brass) !important;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: .03em;
}

/* Writing index */
.author-writing { padding-block: clamp(56px, 7vw, 96px); }
.author-writing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.author-writing-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.author-writing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--terracotta);
}
.author-writing-card strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--espresso);
}
.author-writing-card span {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.5;
}
.author-writing-card em {
  font-style: normal;
  font-size: .8rem;
  font-weight: 600;
  color: var(--terracotta-hov);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* =============================================================
   /about/ hub (index.html)
   ============================================================= */
.about-hub-hero {
  padding-block: clamp(48px, 6vw, 80px);
  background: var(--cream-soft);
  text-align: center;
}
.about-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.about-hub-card {
  display: block;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.about-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--terracotta);
}
.about-hub-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.about-hub-card p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.55;
  margin: 0;
}
.about-hub-card .about-hub-meta {
  display: inline-block;
  margin-top: 14px;
  color: var(--terracotta-hov);
  font-weight: 600;
  font-size: .9rem;
}
