:root {
  // the minimum width of a card item
  --miso-cards-item-min-width: 12rem;
  // the gap between card items
  --miso-cards-item-gap: 1rem;
  // the aspect ratio of cover image
  --miso-cards-image-aspect-ratio: 1;
  // how many lines to show for title text
  --miso-cards-title-lines: 2;
  // how many lines to show for description text
  --miso-cards-description-lines: 4;
}

.miso-cards {
  ol.miso-cards__list,
  ul.miso-cards__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--miso-cards-item-min-width), 1fr));
    gap: var(--miso-cards-item-gap);
    padding: 0;
    margin: 0;
  }
  ul li .miso-cards__item-index {
    display: none;
  }

  li.miso-cards__item {
    place-self: stretch;
    border: 1px solid #e3e5e8;
    border-radius: .5rem;
    background-color: #fff;

    &:hover {
      border-color: #8f96a3;
      box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    }
  }

  .miso-cards__item-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
    padding: 1rem;
    user-select: none;
  }
  a.miso-cards__item-body {
    cursor: pointer;
    text-decoration: none;
  }

  .miso-cards__item-cover-image-container {
    position: relative;
    aspect-ratio: var(--miso-cards-image-aspect-ratio);
    border-radius: .4rem .4rem 0 0;
    overflow: hidden;

    &::before {
      content: " ";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: radial-gradient(50% 50% at 50% 50%, transparent 0, rgba(0, 0, 0, .004) 82.81%, rgba(0, 0, 0, .016) 100%);
      background-blend-mode: normal, luminosity;
    }
  }
  img.miso-cards__item-cover-image {
    object-fit: contain;
    height: 100%;
    width: 100%;
    max-width: 100%;
    border-style: none;
  }

  .miso-cards__item-info-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 1rem;
    width: 100%;
    color: #5c6370;

    > hr {
      margin-bottom: 0.5rem;
      margin-top: auto;
    }
  }

  .miso-cards__item-title,
  .miso-cards__item-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .miso-cards__item-title {
    -webkit-line-clamp: var(--miso-cards-title-lines);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: .25rem;
    color: #23262b;
  }

  .miso-cards__item-desc {
    -webkit-line-clamp: var(--miso-cards-description-lines);
    font-weight: 400;
    font-size: .75rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .miso-cards__item-price {
    color: var(--miso-text-color);
  }
  .miso-cards__item-original-price {
    font-size: 0.9rem;
    color: var(--miso-text-color-gray);
    text-decoration: line-through;
  }
}
