.llms-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px var(--gutter);
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.llms-note > div { max-width: 780px; }
.llms-note h2,
body[data-lang="zh"] .llms-note h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -.015em;
}
.llms-note p { font-size: 15px; line-height: 1.75; color: var(--muted); }
.llms-note .text-link { margin: 0; flex-shrink: 0; white-space: nowrap; }
@media (min-width: 1650px) {
  .llms-note {
    padding-inline: max(var(--gutter), calc((100vw - 1440px) / 2));
  }
}
@media (max-width: 900px) {
  .llms-note { align-items: flex-start; flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .llms-note { padding-block: 30px; }
  .llms-note h2,
  body[data-lang="zh"] .llms-note h2 { font-size: 20px; }
}
