* {
  font-family: "Roboto";
}

.card {
  box-sizing: border-box;
  width: 100%;
  min-width: 250px;

  display: grid;
  grid-template-rows: auto 1fr;
  

  border-radius: 20px;
  box-shadow: 7px 7px 13px 0px #00000012;

  padding: 20px;

  background-color: #fff;

  text-decoration: none;
}

.card__header {
  display: flex;
  flex-direction: column;
  gap: 20px;

  width: 100%;
}

.card__header img {
  width: 100%;
  height: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.card__header__title {
  font-family: Roboto;
  font-size: 20px;
  font-weight: bold;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: #111111;

  /* temp fix, i hope so */
  margin-bottom: 32px;
}

.card__content {
  width: auto;
}

.card__content__text {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: #455a64;
}

.card__content__user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card__content__user__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card__content__user__title {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #111111;
}

.card__content__user__text {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: #455a64;
}

.card__content__location {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card__content__location__title {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #111111;
}

.card__content__location__item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.card__content__location__icon {
  width: 13px;
  height: 14px;
}

.card__content__location__text {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: #455a64;
}

.cards-wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 1366px;

  margin: 0 auto;
  padding: 20px;

  display: flex;
  gap: 24px;

  overflow-x: auto;
}

@media (max-width: 768px) {
  .card__header img {
    height: unset;
  }
}
