.author-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.author-header {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 38px;
}

.author-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.author-intro h1 {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1.15;
}

.author-role {
  margin: 0 0 28px;
  line-height: 1.45;
}

.author-role-main {
  display: block;
  font-size: 1.12rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.author-role-secondary {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #777;
}

.author-facts {
  margin: 24px 0 28px;
  font-size: 14px;
  line-height: 1.45;
  color: #8c8c8c;
}

.author-fact {
  margin-bottom: 6px;
}

.author-fact:last-child {
  margin-bottom: 0;
}

.author-bio {
  max-width: 760px;
  margin: 0 auto 40px;
}

.author-bio p {
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.author-topics,
.author-articles {
  max-width: 760px;
  margin: 0 auto 34px;
}

.author-topics h2,
.author-articles h2 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.author-topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.author-topic {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #e6e1dc;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  line-height: 1.35;
  color: #555;
}

.author-articles-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.author-articles-list li {
  margin-bottom: 10px;
}

.author-articles-list a {
  text-decoration: none;
  color: inherit;
}

.author-articles-list a:hover {
  text-decoration: underline;
}

.author-brand-note {
  margin-top: 42px;
}

@media (max-width: 767px) {
  .author-page {
    padding: 16px 20px 36px;
  }

  .author-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .author-photo img {
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
  }

  .author-intro h1 {
    font-size: 2.2rem;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .author-role {
    margin-bottom: 12px;
  }

  .author-role-main {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }

  .author-role-secondary {
    font-size: 0.98rem;
  }

  .author-facts {
    margin: 24px 0 28px;
    font-size: 14px;
  }

  .author-bio {
    max-width: none;
    margin-bottom: 38px;
  }

  .author-bio p {
    font-size: 17px;
    line-height: 1.72;
    margin-bottom: 17px;
  }

  .author-topics,
  .author-articles {
    max-width: none;
    margin-bottom: 34px;
  }

  .author-topics h2,
  .author-articles h2 {
    margin-bottom: 16px;
  }
}

body .hub-quote {
  border-left: 1px solid #B18F5C !important;
  padding-left: 20px !important;
  padding-bottom: 8px !important;
  margin: 84px 0 40px 25px !important;
  font-size: 18px !important;
  line-height: 1.48 !important;
  font-style: italic !important;
  letter-spacing: 0.03em !important;
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
}

body .hub-quote .hub-quote-author {
  display: block !important;
  margin-top: 16px !important;
  font-size: 13px !important;
  color: #B18F5C !important;
  font-style: normal !important;
  font-weight: 400 !important;
}


/* --- ПОСИЛАННЯ --- */
.author-page a {
  color: #734832;
  /* Насичений горіховий колір */
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(115, 72, 50, 0.3);
  /* Тонка напівпрозора лінія */
  transition: all 0.3s ease;
  padding-bottom: 3px;
}

.author-page a:hover,
.author-page a:active {
  color: #2D2D2D;
  /* Майже чорний для чіткого акценту */
  border-bottom: 1px solid #2D2D2D;
  /* Лінія стає чіткою */
  opacity: 0.8;
}