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

.Text p {
    margin: 0;
    text-wrap: pretty;
  }

.Text {

  a {
    position: relative;
    display: inline-block;
    text-decoration: underline;
    color: currentColor;
    color: var(--text-color, currentColor);
  }

    a:hover {
      color: var(--clr-primary);
    }
}

.Text a[\:has\(.link-more\)] {
    line-height: 1.0625rem;
    text-decoration: none;
  }

.Text a[\:has\(.link-more\)] {
    line-height: 1.0625rem;
    text-decoration: none;
  }

.Text a:has(.link-more) {
    line-height: 1.0625rem;
    text-decoration: none;
  }

.Text .link-more {
    display: flex;
    align-items: center;
    word-break: break-all;
  }

.Text .link-more::after {
      content: '';
      display: inline-block;
      width: 17px;
      min-width: 17px;
      height: 15px;
      margin-left: 10px;
      background-image: url('../Images/default/arrow-right.svg');
      background-repeat: no-repeat;
      background-size: contain;
      transition: background-image 0.3s ease-in-out;
    }

.Text .link-more:hover::after {
      background-image: url('../Images/default/arrow-right_cyan.svg');
    }

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

.Text h4 ~ p {
    margin: 0.5em 0 0;
  }

.Text ul {
    margin: 10px 0 0;
    padding: 0 0 0 40px;
    list-style: disc;
  }

.Text ul li {
      position: relative;
      margin-bottom: 14px;
      padding: 0 0 0 0.7em;
    }

.Text ol {
    padding: 0 0 0 20px;
    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;
      color: var(--clr-primary);
    }

.Text strong {
    font-weight: 800;
  }

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

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

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

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