/* related-reading.css — блок «Что почитать ещё по теме» (Волна 2)
 *
 * Универсальный финальный блок на содержательных страницах портала.
 * Рендерится автоматически через related-reading.js по slug страницы.
 * Не «Куда дальше», не CTA-надрыв — спокойный набор связанных материалов.
 */

.related-reading {
  margin: 56px auto 24px;
  max-width: 1200px;
  padding: 0 24px;
}
.related-reading-head {
  margin: 0 0 18px;
}
.related-reading-head h2 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 520;
  letter-spacing: 0.005em;
  margin: 0 0 6px;
  color: #1a1a1a;
}
.related-reading-head p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #6a6660;
  max-width: 640px;
}
.related-reading-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.related-reading-card {
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.related-reading-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  border-color: rgba(189, 139, 46, 0.35);
}
.related-reading-card .kicker {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a39a8c;
  margin: 0 0 6px;
}
.related-reading-card h3 {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 520;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #1a1a1a;
}
.related-reading-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #4a4640;
}

/* W3.1 · Нативная подсказка-ориентир в hero страницы */
.page-orient {
  margin: 18px auto 28px;
  max-width: 760px;
  padding: 0 24px;
}
.page-orient p {
  margin: 0;
  padding: 14px 18px;
  background: rgba(189, 139, 46, 0.06);
  border-left: 3px solid rgba(189, 139, 46, 0.4);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;
}
.page-orient p a {
  color: #7a5418;
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 84, 24, 0.35);
  font-weight: 540;
  transition: border-color 0.15s ease;
}
.page-orient p a:hover {
  border-bottom-color: rgba(122, 84, 24, 1);
}
.page-orient p b {
  font-weight: 620;
}
@media (max-width: 760px) {
  .page-orient {
    padding: 0 16px;
    margin: 14px auto 22px;
  }
}

/* W2.0a · Нативная подсказка для новичка в середине хабов */
.newcomer-hint {
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 24px;
}
.newcomer-hint p {
  margin: 0;
  padding: 16px 22px;
  background: rgba(189, 139, 46, 0.06);
  border-left: 3px solid rgba(189, 139, 46, 0.4);
  border-radius: 0 12px 12px 0;
  font-size: 15.5px;
  line-height: 1.62;
  color: #1a1a1a;
  max-width: 760px;
}
.newcomer-hint p a {
  color: #7a5418;
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 84, 24, 0.35);
  font-weight: 540;
  transition: border-color 0.15s ease;
}
.newcomer-hint p a:hover {
  border-bottom-color: rgba(122, 84, 24, 1);
}

@media (max-width: 760px) {
  .related-reading {
    padding: 0 16px;
    margin: 40px auto 16px;
  }
  .related-reading-grid {
    grid-template-columns: 1fr;
  }
  .newcomer-hint {
    padding: 0 16px;
    margin: 28px auto;
  }
}
