.hankki-related-recipe-card {
  align-items: stretch;
  background: #fff;
  border: 1px solid #d8ded7;
  border-radius: 14px;
  color: #172019;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  margin: 18px auto 38px;
  max-width: 680px;
  min-height: 118px;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hankki-related-recipe-card:hover {
  border-color: #2d7957;
  box-shadow: 0 12px 30px rgb(30 72 51 / 13%);
  color: #172019;
  transform: translateY(-2px);
}

.hankki-related-recipe-card:focus-visible {
  outline: 3px solid rgb(45 121 87 / 30%);
  outline-offset: 3px;
}

.hankki-related-recipe-card__image {
  background: #edf2ed;
  display: block;
  min-height: 118px;
  overflow: hidden;
}

.hankki-related-recipe-card__image img {
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}

.hankki-related-recipe-card__body {
  align-content: center;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
}

.hankki-related-recipe-card__eyebrow {
  color: #2d7957;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.hankki-related-recipe-card__title {
  color: #172019;
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hankki-related-recipe-card__action {
  color: #2d7957;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 560px) {
  .hankki-related-recipe-card {
    border-radius: 12px;
    grid-template-columns: 96px minmax(0, 1fr);
    margin: 14px 0 30px;
    min-height: 96px;
    width: 100%;
  }

  .hankki-related-recipe-card__image {
    min-height: 96px;
  }

  .hankki-related-recipe-card__body {
    gap: 4px;
    padding: 13px 14px;
  }

  .hankki-related-recipe-card__title {
    font-size: 14px;
  }
}
