.Text {
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-align: inherit;
  color: currentColor;
  color: var(--text-color, currentColor);
}

.Text a {
    text-decoration: underline;
    color: currentColor;
    color: var(--text-color, currentColor);
    transition: color 0.2s ease-in-out, text-underline-offset 0.2s ease-in-out;
    text-underline-offset: 1px;
  }

.Text a:hover {
      color: var(--clr-primary);
      text-underline-offset: 2px;
    }

.Text p {
    margin: 0;
  }

.Text * ~ p,
  .Text * ~ h1,
  .Text * ~ h2,
  .Text * ~ h3,
  .Text * ~ h4 {
    margin: 1em 0 0;
  }

.Text ul {
    margin: 0;
    padding: 0 0 0 0.8em;
    list-style: disc;
  }

.Text ul li {
      padding: 0.44em 0 0 0.44em;
    }

.Text ul li::marker {
        color: currentColor;
        color: var(--text-color, currentColor);
      }

.Text ol {
    padding: 0;
    counter-reset: item;
    list-style: none;
  }

.Text ol li {
      position: relative;
      padding: 0 0 0 1.77em;
      counter-increment: item;
    }

.Text ol li + li {
        padding-top: 0.44em;
      }

.Text ol li li {
      padding-top: 0.44em;
      padding-left: 3.22em;
    }

.Text ol li li li {
      padding-top: 0.44em;
      padding-left: 4.55em;
    }

.Text ol li::before {
      content: counters(item, '.') '.';
      position: absolute;
      left: 0;
      font-family: var(--font-primary);
      font-weight: 700;
      color: currentColor;
      color: var(--text-color, currentColor);
    }

.Text--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

[dir="ltr"] .Text--left {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .Text--left {
  margin-right: 0;
  margin-left: auto;
}

.Text--left {
  text-align: left;
}

[dir="ltr"] .Text--right {
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] .Text--right {
  margin-right: auto;
  margin-left: 0;
}

.Text--right {
  text-align: right;
}

.Text--w-75 {
  width: 100%;
}

@media screen and (min-width: 601px) {

.Text--w-75 {
    width: 75%;
}
  }

.Text--w-100 {
  width: 100%;
}

.Text--s-small {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
