.item-attributes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
  width: 100%;
}

.item-attributes .r-attr {
  /* Attempts to allow side by side when space is available in snippet container */
  max-width: calc((100% - 1.5rem) / 2);
  /* min-width: calc((var(--main-column-width) - 1.5rem) / 2); */
  min-width: max(50%, 300px);;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--color-gray-3) !important;
}

.video-thumb {
  position: relative;
  margin-right: 15px;
  max-height: 75px;
}

.video-thumb img {
  display: block;
  height: 75px;
  width: 100px;
  max-width: 200px;
  border-radius: var(--border-radius);
  object-fit: cover;
  background-color: var(--bg-1);
}

.product .thumb-wrapper {
  width: 138px;
  height: 110px;
  position: relative;
  margin-right: 15px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--border-radius);
}

.product .thumb-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  filter: blur(5px);
  opacity: 0.7;
}

.product .thumb {
  border: solid 1px var(--bg-1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  height: 100%;
}

.recipe img {
  width: 100px;
  height: 75px;
  object-fit: cover;
}

.recipe-body span {
  color: var(--color-gray-2) !important;
}

.video-thumb .play-icon {
  position: absolute;
  color: #dededecc;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  top: 0px;
  left: 0px;
}

.video-thumb .play-icon:hover {
  color: var(--color-inverse);
}

.video-thumb .play-icon i {
  font-size: 35px;
}

.video-thumb .duration {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 55px;
  left: 10px;
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--color-inverse);
  padding: 0px 5px;
  border-radius: var(--border-radius-xs);
}

.product .description {
  height: 60px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-gray-3);
  word-break: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product .r-attr {
  color: var(--color-gray-3);
}

.img-bg {
  height: 160px;
  width: 100%;
  object-fit: contain;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
