/* Internal Linker — стиль авто-ссылок в the_content() */

.auto-link {
  color: #ba8923;
  text-decoration: none;
  border-bottom: 1px dotted #cca656;
  text-underline-offset: 3px;
  transition: color .18s ease, border-color .18s ease, border-bottom-style .18s ease;
  word-break: keep-all;
}

.auto-link:hover,
.auto-link:focus-visible {
  color: #8a6517;
  border-bottom-color: #8a6517;
  border-bottom-style: solid;
  outline: none;
}

.auto-link:visited {
  color: #a5803a;
}

/* На тёмных «сказочных» страницах — палитра под бренд */
body[class*="page-template-page-taro"] .auto-link,
body[class*="page-template-page-luna"] .auto-link,
body.bg-shell .auto-link,
.bg-shell .auto-link {
  color: var(--gold, #cc9e4a);
  border-bottom-color: rgba(204, 158, 74, 0.5);
}

body[class*="page-template-page-taro"] .auto-link:hover,
body[class*="page-template-page-luna"] .auto-link:hover,
body.bg-shell .auto-link:hover,
.bg-shell .auto-link:hover {
  color: var(--cream, #f3ead4);
  border-bottom-color: var(--cream, #f3ead4);
  border-bottom-style: solid;
}

/* Внутри FAQ ответов — те же правила, но чуть мягче */
.section-faq__a-text .auto-link {
  border-bottom-style: solid;
  border-bottom-color: rgba(204, 166, 86, 0.35);
}
