/**
$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_companycard {
  flex: 0 1 50%;
  height: 150px;
  border-width: 1px;
  border-style: solid;
  padding: 20px;
  position: relative;
  margin-top: -1px !important;
}
.mono_col .mono_companycard {
  margin-top: -1px !important;
}
.mono_companycard__wrapper {
  display: flex;
  gap: 5px;
}
.mono_companycard__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  height: 100%;
}
.mono_companycard__image {
  width: fit-content;
  height: fit-content;
}
.mono_companycard__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 200px;
}
.mono_companycard__button {
  padding: 0;
  display: block;
  font-size: 16px;
  font-size: clamp(0.8rem, calc( 0vw  + 1rem), 1rem);
  line-height: 120%;
  font-family: Archivo, sans-serif;
  color: var(--blue);
  letter-spacing: 0.2px;
}
@media (min-width: 768px) {
  .mono_companycard {
    border-width: 1px;
    margin: 0;
    margin-left: -1px;
  }
}
@media (min-width: 1024px) {
  .mono_companycard {
    flex: 1 1 25%;
  }
}