/**
$max: fontsize for desktop in px
$lineHeight: lineheight for desktop in px
$min: fontsize for mobile in px
$marginTop: factor of the topmargin to the base of 40px on desktop
*/
.mono_card {
  padding: 5px;
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 568px) {
  .mono_card {
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
  }
}
@media (min-width: 1024px) {
  .mono_card {
    border-bottom: none !important;
    width: 100%;
  }
}
@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;
  padding-top: 24px;
  padding-bottom: 20px;
}
.mono_card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.mono_card__name {
  hyphens: auto;
  display: flex;
  font-size: 24px;
  font-size: clamp(1.2rem, calc( 0.4166666667vw   + 1rem), 1.5rem);
  line-height: 120%;
  font-family: Lato, Arial, sans-serif;
  color: var(--skin-primary);
  padding-top: 10px;
  letter-spacing: 0.2px;
  justify-content: center;
}
.mono_card__name span {
  width: fit-content;
}