/**
 * https://davidhellmann.com/blog/development/sass-breakpoint-mixin
 */
html, body {
  font-family: var(--font-family-light), Candara, Segoe, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
  font-size: var(--font-size-default);
  line-height: 1em;
  font-weight: 400;
  color-scheme: light;
  color: var(--color-text-darkgray);
  background-color: var(--color-background);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

p,
a,
span,
figcaption,
button, input, optgroup, select, textarea {
  line-height: var(--text-line-height-default);
}

p {
  margin-bottom: 1.85rem;
}
p + .btn-row {
  margin-top: 1.85rem;
}
p a {
  text-decoration: underline;
}
p a:hover {
  color: var(--color-secondary);
}
.has-legal-links p a {
  font-family: var(--font-family-bold);
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  color: var(--color-on-background);
  text-decoration: inherit;
  cursor: pointer;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: var(--font-family-light);
  margin-bottom: 1.25rem;
}
h1 b,
h1 strong, .h1 b,
.h1 strong,
h2 b,
h2 strong, .h2 b,
.h2 strong,
h3 b,
h3 strong, .h3 b,
.h3 strong,
h4 b,
h4 strong, .h4 b,
.h4 strong {
  font-family: var(--font-family-bold);
}

h1, .h1 {
  font-size: var(--font-size-h1);
  line-height: 115%;
  margin-bottom: 2rem;
}
h1.headline-small, .h1.headline-small {
  font-size: calc(var(--font-size-h1) * 0.8);
}

.h1 {
  font-size: var(--font-size-h1) !important;
}

h2, .h2 {
  color: var(--color-text-darkgray);
  font-size: var(--font-size-h2);
  line-height: 110%;
  position: relative;
}
h2.has-line-before, .h2.has-line-before {
  position: relative;
}
h2.has-line-before::before, .h2.has-line-before::before {
  content: "";
  position: absolute;
  top: calc(0.5em - var(--headline-line-before-h) * 0.5);
  transform: translateX(calc(-100% - var(--bs-gutter-x) * 0.5));
  display: flex;
  width: calc((100vw - var(--container-width)) * 0.5 - var(--bs-gutter-x) * 0.5);
  height: var(--headline-line-before-h);
  background: var(--color-secondary);
}
@media (min-width: 576px) {
  h2.has-line-before::before, .h2.has-line-before::before {
    transform: translateX(calc(-100% - var(--bs-gutter-x) * 1));
  }
}

.h2 {
  font-size: var(--font-size-h2) !important;
}

h3, .h3 {
  font-size: var(--font-size-h3);
  line-height: 110%;
}

.h3 {
  font-size: var(--font-size-h3) !important;
}

h4, .h4 {
  font-size: var(--font-size-h4);
  line-height: var(--text-line-height-default);
  margin-top: 1rem;
}

.h4 {
  font-size: var(--font-size-h4) !important;
}

b,
strong,
.text-bold {
  font-family: var(--font-family-bold);
  font-size: inherit;
  line-height: inherit;
}

.text-muted {
  color: var(--color-on-background-flexible);
}

.text-white {
  color: var(--color-on-background-alt);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}
@media (min-width: 768px) {
  .text-left--md {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left;
  }
}

.text-primary {
  color: var(--color-primary);
}

.tagline {
  display: inline-block;
  padding-bottom: 0.15rem;
  font-size: var(--font-size-small);
  font-family: var(--font-family-bold);
  text-transform: uppercase;
  letter-spacing: 7.2px;
}
.tagline.has-border-bottom {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-on-background-alt);
}

.no-break {
  hyphens: none;
  white-space: nowrap;
}

.no-margin {
  margin: 0;
}

.btn-like {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  background: var(--gradient-background-green-right);
  font-family: var(--font-family-bold);
  font-size: var(--button-font-size);
  letter-spacing: 0.35px;
  color: var(--color-on-primary);
}

#artikel-name h2 {
  font-size: var(--font-size-h3);
  line-height: 130%;
}
#artikel-name h3 {
  font-size: 1.125rem;
  line-height: var(--text-line-height-default);
  margin-top: 1rem;
}
