File: /var/www/zaklada/html/lib/scss/core/_typography.scss
h1,
.h1 {
  font-weight: 700;
  color: $color-black;
  font-size: rem(42);
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-align: center;
  margin-top: 0;
  @include media-breakpoint-down(md) {
    font-size: rem(24);
  }
}
h2,
.h2 {
  font-weight: 700;
  color: $color-black;
  font-size: rem(28);
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-align: center;
  margin-top: 0;
  @include media-breakpoint-down(md) {
    font-size: rem(18);
  }
}
h3,
.h3 {
  font-weight: 400;
  color: $color-black;
  font-size: rem(20);
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
  margin-top: 0;
  @include media-breakpoint-down(md) {
    font-size: rem(14);
  }
}
h4,
.h4 {
  font-weight: 700;
  color: $color-black;
  font-size: rem(20);
  line-height: 1.5;
  // text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 0;
}
h5,
.h5 {
  font-weight: 400;
  color: $color-text-dark;
  font-size: rem(19);
  line-height: 1.5;
  // text-transform: uppercase;
  margin-bottom: 10px;
}
article {
  p,
  .p {
    margin-top: 0;
    font-weight: 400;
    font-size: rem(16);
    line-height: 1.5;
    color: $color-text-dark;
    margin-bottom: 22px;
    margin-top: 0;
    @media screen and (min-width: 992px) {
      font-size: rem(19);
    }
    a {
      color: $color-gold-light;
      // font-weight: bold;
    }
    strong {
      font-weight: 600;
    }
  }
}
.donation-main__col p.smaller, p.smaller{
  font-size: 1rem;
  color:#555;
  a{
    color: #aa874f;
    font-weight:500;
    text-decoration:underline;
  }
}
p,
.p {
  margin-top: 0;
  font-weight: 400;
  font-size: rem(16);
  line-height: 1.5;
  color: $color-black;
  margin-bottom: 22px;
  @media screen and (min-width: 992px) {
    font-size: rem(19);
  }
  a {
    color: $color-gold-light;
    font-weight: bold;
    text-decoration: none;
  }
}
main a {
  word-break: normal;
  p,
  h1,
  h2,
  h3,
  span {
    word-break: normal;
  }
}
a:active {
  color: inherit;
}
body {
  color: $color-white;
}
::selection {
  color: $color-white;
  background: $color-gold-light;
}
main ul {
  padding: 0;
  margin: 0;
}
main ul li,
footer ul li {
  padding-left: 15px;
  position: relative;
  font-size: rem(16);
  line-height: 1.5;
  &:before {
    content: "";
    background: $color-gold-dark;
    position: absolute;
    width: 9px;
    height: 9px;
    top: 6px;
    left: 0px;
  }
  @media screen and (min-width: 768px) {
    padding-left: 26px;
    font-size: rem(19);
    &:before {
      width: 13px;
      height: 13px;
      top: 9px;
    }
  }
}