.product-card {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  margin: 1.25rem 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(127, 127, 127, .22);
  border-radius: 8px;
  background: var(--halo-product-card-bg, #fff);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
  border-color: rgba(30, 110, 255, .55);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .08);
  transform: translateY(-1px);
}

.product-card__media {
  flex: 0 0 180px;
  width: 180px;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-card__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.product-card__body {
  min-width: 0;
  flex: 1;
  padding: 16px 18px;
}

.product-card__platform {
  margin-bottom: 7px;
  color: #718096;
  font-size: .78rem;
}

.product-card__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.55;
  font-weight: 600;
}

.product-card__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}

.product-card__price {
  color: #e65545;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-card__hint {
  color: #8b95a5;
  font-size: .82rem;
}

@media (max-width: 640px) {
  .product-card__media {
    flex-basis: 112px;
    width: 112px;
    padding: 8px;
  }

  .product-card__body {
    padding: 12px 13px;
  }

  .product-card__meta {
    margin-top: 12px;
  }
}
