/* Media query breakpoints */
.c-overview__item {
  display: flex;
  flex: 0 1 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 12px;
}
@media (max-width: 1024px) {
  .c-overview__item {
    display: flex;
    align-items: center;
    gap: 25px;
  }
}
@media (min-width: 1025px) {
  .c-overview__item {
    width: 192px;
    flex: 0 1 auto;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.c-overview__item p {
  margin: 0;
}
.c-overview__item__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 192px;
  height: 192px;
  min-width: 84px;
  max-width: 80px;
  max-height: 100px;
  margin: 0;
  border-radius: 8px;
  background-color: var(--darkGrayishBlue50);
}
@media (min-width: 768px) {
  .c-overview__item__image {
    max-height: 80px;
  }
}
@media (min-width: 1025px) {
  .c-overview__item__image {
    max-width: 192px;
    max-height: 192px;
    margin-bottom: 24px;
  }
}
.c-overview__item__image div {
  line-height: 0;
}
.c-overview__item__image img {
  width: 27px;
  height: 37px;
}
@media (min-width: 1025px) {
  .c-overview__item__image img {
    width: 48px;
    height: 48px;
  }
}
.c-overview__item__info {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  text-align: left;
}
@media (min-width: 1025px) {
  .c-overview__item__info {
    text-align: center;
  }
}
.c-overview__item__info > * {
  flex: 0 1 100%;
}
.c-overview__item__title {
  font-family: "Prelo semibold", sans-serif;
  color: var(--darkGrey500);
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.c-overview__item__description {
  font-family: "Prelo book", sans-serif;
  color: var(--darkGrey400);
  font-size: 1rem;
  line-height: 1.5rem;
}
/*# sourceMappingURL=overview-item.css.map */
