/* === Подпись автора под заголовком (author byline) — по образцу omnicalculator === */
.author-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 18px;
  padding: 10px 14px;
  background: #f6f8fa;
  border: 1px solid #eaeef2;
  border-radius: 12px;
}
.author-byline__ava { flex: 0 0 auto; display: block; line-height: 0; }
.author-byline__ava img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e2e6ea;
}
.author-byline__meta { display: flex; flex-direction: column; gap: 4px; }
.author-byline__group { display: flex; flex-direction: column; line-height: 1.3; }
.author-byline__label { color: #6b7280; font-weight: 600; font-size: 12px; }
.author-byline__name { color: #111; font-weight: 600; font-size: 14px; text-decoration: none; }
a.author-byline__name:hover { text-decoration: underline; }
.author-byline__updated { color: #616161; font-size: 12px; margin-top: 2px; }
@media (max-width: 560px) {
  .author-byline { margin: 8px 0 14px; padding: 8px 12px; gap: 10px; }
  .author-byline__ava img { width: 42px; height: 42px; }
}

/* === Страница автора (/avtor) === */
.author-page {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 8px 0 24px;
}
.author-page__photo {
  width: 160px; height: 160px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #eaeef2;
  flex: 0 0 auto;
}
.author-page__intro { display: flex; flex-direction: column; gap: 6px; min-width: 220px; }
.author-page__name { font-size: 22px; font-weight: 700; margin: 0; }
.author-page__role { color: #555; margin: 0; }
.author-page__contacts { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 6px; }
.author-page__contacts a { color: #2196F3; text-decoration: none; }
.author-page__contacts a:hover { text-decoration: underline; }
@media (max-width: 480px) {
  .author-page__photo { width: 120px; height: 120px; }
}
.author-page__since { color: #6b7280; font-size: 14px; margin: 0; }
.author-page__updated { color: #616161; font-size: 13px; margin: 4px 0 0; }
.author-page__updated time { color: inherit; }

/* === YMYL-дисклеймер на /avtor === */
.ymyl-disclaimer {
  margin: 28px 0 8px;
  padding: 14px 18px;
  background: #fbfaf4;
  border: 1px solid #ece6d3;
  border-left: 4px solid #c9a23a;
  border-radius: 12px;
}
.ymyl-disclaimer p { margin: 0; color: #5a5340; font-size: 14px; line-height: 1.6; }

/* === Слот ревьюера (если появится реальный эксперт) === */
.author-reviewer {
  margin: 24px 0;
  padding: 14px 18px;
  background: #f6f8fa;
  border: 1px solid #eaeef2;
  border-radius: 12px;
}

/* === Листинг всех калькуляторов автора на /avtor === */
.author-calc-listing { margin: 8px 0 4px; }
.author-calc-listing h3 { font-size: 16px; margin: 18px 0 8px; }
.author-calc-listing h3 a { color: #111; text-decoration: none; }
.author-calc-listing h3 a:hover { text-decoration: underline; }
.author-calc-list {
  margin: 0 0 6px; padding: 0; list-style: none;
  columns: 2; column-gap: 28px;
}
.author-calc-list li {
  break-inside: avoid; margin: 0 0 6px; padding-left: 14px;
  position: relative; font-size: 14px; line-height: 1.4;
}
.author-calc-list li::before { content: "·"; position: absolute; left: 3px; color: #9aa0a6; }
.author-calc-list a { color: #2196F3; text-decoration: none; }
.author-calc-list a:hover { text-decoration: underline; }
@media (max-width: 560px) { .author-calc-list { columns: 1; } }
