@import "../blocks/header.vars.css";
@import "../blocks/header.css";

/* — ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ — правовой текст -------------------------- */
.legal {
  max-width: var(--legal-max-width);
  font-size: var(--legal-text-size);
  line-height: var(--lh-faq);
}

.legal__meta {
  color: var(--color-text-dark);
  margin-bottom: var(--legal-section-gap);
}

.legal__section { margin-bottom: var(--legal-section-gap); }
.legal__section:last-child { margin-bottom: 0; }

.legal__section h2 {
  font-size: var(--font-h4);
  line-height: var(--lh-card);
  margin-bottom: var(--legal-para-gap);
}

.legal__section p { margin-bottom: var(--legal-para-gap); }
.legal__section p:last-child { margin-bottom: 0; }

.legal__list {
  margin-bottom: var(--legal-para-gap);
}
.legal__list li {
  position: relative;
  padding-left: var(--legal-list-indent);
  margin-bottom: var(--legal-list-gap);
}
.legal__list li:last-child { margin-bottom: 0; }
.legal__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.legal a {
  color: var(--color-accent);
  word-break: break-word;
}
.legal a:hover { color: var(--color-hover); }
