.button {
  width: 100%;
  box-sizing: border-box;
  border-top: var(--generalBorderWidth) solid #000;
  border-bottom: var(--generalBorderWidth) solid #000;
  font-size: clamp(1.25rem, 0vw + 1.25rem, 1.25rem);
  line-height: clamp(1.75rem, 0vw + 1.75rem, 1.75rem);
  font-family: inherit;
  cursor: pointer;
  color: #000;
  padding: calc(var(--spacePart) * 2) 90px calc(var(--spacePart) * 2) 0;
  appearance: none;
  border-radius: 0;
  text-align: left;
  text-decoration: none;
  position: relative;
}
.button:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  height: 100%;
  background-color: #000;
  mask-size: auto 34px;
  mask-position: 100% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
  transition: all 0.24s;
}
.button:hover:after {
  transform: translateX(6px);
}
.button.null,
.button[title*='Kein Link'] {
  cursor: default;
}
.button.null:after,
.button[title*='Kein Link']:after {
  display: none;
}
@media (min-width: 768px) {
  .area .unit--fold .button {
    font-size: clamp(1.8125rem, 1.21546961vw + 1.52762431rem, 2.5rem);
    line-height: clamp(2.125rem, 1.32596685vw + 1.81422652rem, 2.875rem);
    hyphens: auto;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.area--one .unitOne--1-4 {
  width: calc(25% - 20px);
}
/*# sourceMappingURL=./screen-large.css.map */