.post-item {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  position: relative;
  height: 100%;
}

.post-item .img-wrapper {
  height: 250px;
  object-fit: cover;
}

.post-item p {
  color: var(--desc-text-color);
}

.products {
  background-color: transparent;
}

.products .product-status {
  top: 10px;
  position: absolute;
}

.products .product-status .arrow {
  width: 40px;
  height: 20px;
  background-color: var(--main-text-color);
  text-align: center;
  position: relative;
}

.products .product-status .arrow .label {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.products .product-status .arrow .top-triangle {
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-left: 20px solid var(--main-text-color);
  border-bottom: 10px solid transparent;
  top: 0;
  margin-left: 40px;
  position: absolute;
}

.products .product-status .arrow .bottom-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 20px solid var(--main-text-color);
  border-bottom: 0px solid transparent;
  margin-left: 40px;
  position: absolute;
  bottom: 0;
}

.product-relative-title {
  color: var(--main-text-color);
  border-left: 3px solid var(--main-text-color);
  padding-left: 10px;
}
