/**
$max: fontsize for desktop in px
$lineHeight: lineheight for desktop in px
$min: fontsize for mobile in px
$marginBottom: factor of the bottommargin to the base of 40px on desktop --> ist umgestellt, war vorher marginTop
*/
.mono_card {
  flex: 1 1 50%;
  border-bottom: 1px solid;
  padding: 20px;
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 568px) {
  .mono_card {
    width: 25%;
    margin-bottom: 0;
    border-left: 1px solid;
    border-bottom: none;
  }
  .mono_card:nth-child(-n+2) {
    border-bottom: 1px solid;
  }
  .mono_card:nth-last-child(-n+2) {
    border-bottom: none !important;
  }
}
@media (min-width: 1024px) {
  .mono_card {
    border-bottom: none !important;
    flex: 0 1 25%;
  }
}
@media (min-width: 568px) {
  .mono_card.no-image:last-child {
    border-bottom: none;
  }
}
.mono_card__link a {
  color: var(--grey-light);
}
.mono_card__image {
  width: 100%;
  height: fit-content;
}
.mono_card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mono_card__long {
  box-sizing: border-box;
  height: fit-content;
  color: var(--grey_dark);
  font-family: Archivo, sans-serif;
}
.mono_card__long .mono_card__name {
  padding-top: 18px;
}
.mono_card__name {
  display: block;
  font-size: 24px;
  font-size: clamp(1.2rem, calc( 0.4166666667vw  + 1rem), 1.5rem);
  line-height: 120%;
  font-family: Archivo, sans-serif;
  color: var(--gold);
  padding-top: 10px;
  letter-spacing: 0.2px;
}
.mono_card__position {
  display: block;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-size: clamp(0.8rem, calc( 0vw  + 1rem), 1rem);
  line-height: 120%;
  color: var(--black);
  margin-top: 5px;
  letter-spacing: 0.2px;
}
@media (min-width: 568px) {
  .mono_card__position {
    max-width: 90%;
  }
}
.mono_card:last-child {
  border-bottom: none;
}
@media (min-width: 568px) {
  .mono_card:last-child {
    border-right: 1px solid;
  }
}
@media (max-width: 568px) {
  .mono_card:nth-child(2n) {
    border-right: none !important;
  }
}
@media (max-width: 1024px) {
  .mono_card:nth-child(2n) {
    border-right: 1px solid;
  }
}
@media (min-width: 568px) {
  .mono_card:nth-child(4n) {
    border-right: 1px solid !important;
  }
}