/**
 * @file
 * Product teaser card ("box-teaser") styles.
 */


.box-teaser {
  background-color: #fff;
  text-align: center;
  padding: 10px 15px 15px;
  border-radius: var(--td-radius-md);
  border: 1px solid #bbb;
  box-shadow: var(--td-shadow-sm);
}
.box-teaser:hover {
  background-color: #f6f6f6;
}

.box-teaser h3 {
  margin: 0;
  text-align: left;
  height: 3.8em;
  overflow: hidden;
  line-height: 1.3em;
  font-size: 1em;
}

.box-teaser img {
  display: block;
  height: 150px;
  margin: 1em auto 1em auto;
  background-color: #fff;
  border-bottom: 1px solid #bbb;
}

.box-teaser .price {
  text-align: center;
  font-weight: bold;
  color: #56a4da;
  text-shadow: 0 1px #555;
  font-size: 1.7em;
  margin-bottom: 0.2em;
}

.box-teaser a:hover {
  text-decoration: none;
  color: var(--td-color-link);
}

.box-teasers .field__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.box-teasers .field__item {
  flex: 0 0 200px;
}
