/* Deals cards (used on deals page + home) */

.deal-card{
  min-height: 220px; /* same size */
  display:flex;
  flex-direction: column;
  transition: transform .14s ease, border-color .14s ease;
}
.deal-card:hover{ transform: translateY(-2px); }

.deal-card a{
  display:flex;
  flex-direction: column;
  height: 100%;
}

.deal-card img{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  border-bottom: 1px solid var(--border);
}

.deal-card__body{
  padding: 12px 14px 14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.deal-card__body h3{
  margin:0;
  font-size: 14px;
  line-height: 1.35;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

.deal-card__body .badge{
  width: fit-content;
}
