/**
$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_numbercard {
  display: flex;
  flex: 1 1 50%;
  width: 100%;
  border-bottom: 1px dotted;
  padding: 24px 0;
  position: relative;
  margin-bottom: 10px;
}
.mono_numbercard__number {
  width: 60px;
  height: 60px;
  line-height: 56px;
  background: #ffa300;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  font-weight: 700;
  font-size: 2rem;
  aspect-ratio: 1/1;
}
.mono_numbercard a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .mono_numbercard {
    width: 100%;
    margin-bottom: 0;
    border-right: 1px dotted;
    border-bottom: none;
  }
}
@media (min-width: 1024px) {
  .mono_numbercard {
    border-bottom: none !important;
    flex: 1 1 25%;
  }
}
@media (min-width: 568px) {
  .mono_numbercard.no-image:last-child {
    border-bottom: none;
  }
}
.mono_numbercard__long {
  padding-left: 1rem;
  padding-right: 2rem;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--grey_dark);
  font-family: Lato, Arial, sans-serif;
}
.mono_numbercard__long .mono_numbercard__title {
  margin-bottom: 0.5rem;
}
.mono_numbercard__long p {
  font-size: 16px;
  font-size: clamp(0.8rem, calc( 0vw   + 1rem), 1rem);
  line-height: 120%;
  color: var(--black) !important;
  line-height: 1.44;
}
.mono_numbercard__long p:after {
  content: "";
  rotate: 90deg;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-left: 5px;
  top: 5px;
  position: relative;
  mask-image: url(../../../Images/Icons/arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: black;
  transition: background-color 0.3s ease;
}
.mono_numbercard__long p:hover:after {
  background: var(--secondary);
}
.mono_numbercard__title {
  display: block;
  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(--primary);
  letter-spacing: 0.2px;
}